AvailablePaymentMethod
Describes a payment method that the shopper can use to pay for the order.
type AvailablePaymentMethod = {
__typename?: 'AvailablePaymentMethod'; /** The payment method code. */
code: Scalars['String']['output']; /** If the payment method is an online integration */
is_deferred: Scalars['Boolean']['output']; /** The payment method title. */
title: Scalars['String']['output'];
};