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

    Type Alias AddedGetPaymentMethods200

    type AddedGetPaymentMethods200 = {
        data?: {
            created?: string;
            data?:
                | { card_type?: string; expiry?: string; last_four?: string }
                | { card_type?: string; expiry?: string; last_four?: string }
                | { email?: string; paypal_id?: string };
            id?: number;
            is_default?: boolean;
            type?: "credit_card" | "google_pay" | "paypal";
        }[];
        page?: number;
        pages?: number;
        results?: number;
    }
    Index

    Properties

    data?: {
        created?: string;
        data?:
            | { card_type?: string; expiry?: string; last_four?: string }
            | { card_type?: string; expiry?: string; last_four?: string }
            | { email?: string; paypal_id?: string };
        id?: number;
        is_default?: boolean;
        type?: "credit_card" | "google_pay" | "paypal";
    }[]

    Type Declaration

    • Optional Readonlycreated?: string

      Read-only When the Payment Method was added to the Account.

    • Optionaldata?:
          | { card_type?: string; expiry?: string; last_four?: string }
          | { card_type?: string; expiry?: string; last_four?: string }
          | { email?: string; paypal_id?: string }
    • Optionalid?: number

      The unique ID of this Payment Method.

    • Optionalis_default?: boolean

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

    • Optionaltype?: "credit_card" | "google_pay" | "paypal"

      The type of Payment Method.

    page?: number

    Read-only The current page.

    pages?: number

    Read-only The total number of pages.

    results?: number

    Read-only The total number of results.