Mayson Monorepo Documentation
    Preparing search index...
    interface TokenCreateParams {
        account?: Stripe.TokenCreateParams.Account;
        bank_account?: string | Stripe.TokenCreateParams.BankAccount;
        card?: string | Stripe.TokenCreateParams.Card;
        customer?: string;
        cvc_update?: CvcUpdate;
        expand?: string[];
        person?: Stripe.TokenCreateParams.Person;
        pii?: Pii;
    }
    Index

    Properties

    Information for the account this token represents.

    bank_account?: string | Stripe.TokenCreateParams.BankAccount

    The bank account this token will represent.

    card?: string | Stripe.TokenCreateParams.Card

    The card this token will represent. If you also pass in a customer, the card must be the ID of a card belonging to the customer. Otherwise, if you do not pass in a customer, this is a dictionary containing a user's credit card details, with the options described below.

    customer?: string

    Create a token for the customer, which is owned by the application's account. You can only use this with an OAuth access token or Stripe-Account header. Learn more about cloning saved payment methods.

    cvc_update?: CvcUpdate

    The updated CVC value this token represents.

    expand?: string[]

    Specifies which fields in the response should be expanded.

    Information for the person this token represents.

    pii?: Pii

    The PII this token represents.