GitHub

TokenizedPaymentInputV3

import { TokenizedPaymentInputV3 } from '@daffodil/driver/shopify'

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

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;
}