PaypalExpressTokenOutput
Contains the token returned by PayPal and a set of URLs that allow the buyer to authorize payment and adjust checkout details. Applies to Express Checkout and Payments Standard payment methods.
type PaypalExpressTokenOutput = {
__typename?: 'PaypalExpressTokenOutput'; /** A set of URLs that allow the buyer to authorize payment and adjust checkout details. */
paypal_urls?: Maybe<PaypalExpressUrlList>; /** The token returned by PayPal. */
token?: Maybe<Scalars['String']['output']>;
};