CreatePaymentOrderInput
Contains payment order details that are used while processing the payment order
type CreatePaymentOrderInput = {
cartId: Scalars['String']['input']; /** Defines the origin location for that payment request */
location: PaymentLocation; /** The code for the payment method used in the order */
methodCode: Scalars['String']['input']; /** The identifiable payment source for the payment method */
paymentSource: Scalars['String']['input']; /** Indicates whether the payment information should be vaulted */
vaultIntent?: InputMaybe<Scalars['Boolean']['input']>;
};