GitHub

TokenizedPaymentInputV3

Specifies the fields required to complete a checkout with a tokenized payment.

import { TokenizedPaymentInputV3 } from '@daffodil/driver/shopify'
type TokenizedPaymentInputV3 = {
    billingAddress: MailingAddressInput;
    idempotencyKey: Scalars['String']['input'];
    identifier?: InputMaybe<Scalars['String']['input']>;
    paymentAmount: MoneyInput;
    paymentData: Scalars['String']['input'];
    test?: InputMaybe<Scalars['Boolean']['input']>;
    type: PaymentTokenType;
}
Type Options
TokenizedPaymentInputV3 { billingAddress: MailingAddressInput; idempotencyKey: Scalars['String']['input']; identifier?: InputMaybe<Scalars['String']['input']>; paymentAmount: MoneyInput; paymentData: Scalars['String']['input']; test?: InputMaybe<Scalars['Boolean']['input']>; type: PaymentTokenType; }