PayflowLinkToken
Contains information used to generate PayPal iframe for transaction. Applies to Payflow Link and Payments Advanced payment methods.
type PayflowLinkToken = {
__typename?: 'PayflowLinkToken'; /** The mode for the Payflow transaction. */
mode?: Maybe<PayflowLinkMode>; /** The PayPal URL used for requesting a Payflow form. */
paypal_url?: Maybe<Scalars['String']['output']>; /** The secure token generated by PayPal. */
secure_token?: Maybe<Scalars['String']['output']>; /** The secure token ID generated by PayPal. */
secure_token_id?: Maybe<Scalars['String']['output']>;
};