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

    Type Alias AddedPostPaymentMethod

    Payment Method Request Object.

    type AddedPostPaymentMethod = {
        data: {
            card_number: string;
            cvv: string;
            expiry_month: number;
            expiry_year: number;
        };
        is_default: boolean;
        type: "credit_card";
    }
    Index

    Properties

    Properties

    data: {
        card_number: string;
        cvv: string;
        expiry_month: number;
        expiry_year: number;
    }

    An object representing the credit card information you have on file with Linode to make Payments against your Account.

    Type Declaration

    • card_number: string

      Your credit card number. No spaces or hyphens (-) allowed.

    • cvv: string

      CVV (Card Verification Value) of the credit card, typically found on the back of the card.

    • expiry_month: number

      A value from 1-12 representing the expiration month of your credit card.

      • 1 = January
      • 2 = February
      • 3 = March
      • Etc.
    • expiry_year: number

      A four-digit integer representing the expiration year of your credit card.

      The combination of expiry_month and expiry_year must result in a month/year combination of the current month or in the future. An expiration date set in the past is invalid.

    is_default: boolean

    Whether this Payment Method is the default method for automatically processing service charges.

    type: "credit_card"

    The type of Payment Method.

    Alternative Payment Methods including Google Pay and PayPal can be added using the Cloud Manager. See the Manage Payment Methods guide for details and instructions.