CreatePayflowProTokenOutput
Contains the secure information used to authorize transaction. Applies to Payflow Pro and Payments Pro payment methods.
type CreatePayflowProTokenOutput = {
__typename?: 'CreatePayflowProTokenOutput'; /** The RESPMSG returned by PayPal. If the `result` is `0`, then `response_message` is `Approved`. */
response_message: Scalars['String']['output']; /** A non-zero value if any errors occurred. */
result: Scalars['Int']['output']; /** The RESULT returned by PayPal. A value of `0` indicates the transaction was approved. */
result_code: Scalars['Int']['output']; /** A secure token generated by PayPal. */
secure_token: Scalars['String']['output']; /** A secure token ID generated by PayPal. */
secure_token_id: Scalars['String']['output'];
};