PaymentToken
The stored payment method available to the customer.
type PaymentToken = {
__typename?: 'PaymentToken'; /** A description of the stored account details. */
details?: Maybe<Scalars['String']['output']>; /** The payment method code associated with the token. */
payment_method_code: Scalars['String']['output']; /** The public hash of the token. */
public_hash: Scalars['String']['output']; /** Specifies the payment token type. */
type: PaymentTokenTypeEnum;
};