Mayson Monorepo Documentation
    Preparing search index...
    interface Card {
        address_city?: string;
        address_country?: string;
        address_line1?: string;
        address_line2?: string;
        address_state?: string;
        address_zip?: string;
        currency?: string;
        cvc?: string;
        exp_month: string;
        exp_year: string;
        name?: string;
        networks?: Stripe.TokenCreateParams.Card.Networks;
        number: string;
    }
    Index

    Properties

    address_city?: string

    City / District / Suburb / Town / Village.

    address_country?: string

    Billing address country, if provided.

    address_line1?: string

    Address line 1 (Street address / PO Box / Company name).

    address_line2?: string

    Address line 2 (Apartment / Suite / Unit / Building).

    address_state?: string

    State / County / Province / Region.

    address_zip?: string

    ZIP or postal code.

    currency?: string

    Required in order to add the card to an account; in all other cases, this parameter is not used. When added to an account, the card (which must be a debit card) can be used as a transfer destination for funds in this currency.

    cvc?: string

    Card security code. Highly recommended to always include this value.

    exp_month: string

    Two-digit number representing the card's expiration month.

    exp_year: string

    Two- or four-digit number representing the card's expiration year.

    name?: string

    Cardholder's full name.

    Contains information about card networks used to process the payment.

    number: string

    The card number, as a string without any separators.