@akamai/openapi-ts
    Preparing search index...

    Type Alias PostPaymentData

    type PostPaymentData = {
        body: { payment_method_id?: number; usd?: string };
        path?: never;
        query?: never;
        url: "account/payments";
    }
    Index

    Properties

    Properties

    body: { payment_method_id?: number; usd?: string }

    Information about the payment you're making.

    Type Declaration

    • Optionalpayment_method_id?: number

      The ID of the Payment Method to apply to the Payment.

    • Optionalusd?: string

      The amount in US Dollars of the Payment.

      • Can begin with or without $.
      • Commas (,) are not accepted.
      • Must end with a decimal expression, such as .00 or .99.
      • Minimum: $5.00 or the Account balance, whichever is lower.
      • Maximum: $2000.00 or the Account balance up to $50000.00, whichever is greater.
    path?: never
    query?: never
    url: "account/payments"