PaypalExpressTokenInput
Defines the attributes required to receive a payment token for Express Checkout and Payments Standard payment methods.
type PaypalExpressTokenInput = {
cart_id: Scalars['String']['input']; /** The payment method code. */
code: Scalars['String']['input']; /** Indicates whether the buyer selected the quick checkout button. The default value is false. */
express_button?: InputMaybe<Scalars['Boolean']['input']>; /** A set of relative URLs that PayPal uses in response to various actions during the authorization process. */
urls: PaypalExpressUrlsInput; /** Indicates whether the buyer clicked the PayPal credit button. The default value is false. */
use_paypal_credit?: InputMaybe<Scalars['Boolean']['input']>;
};