SelectedPaymentMethod
Describes the payment method the shopper selected.
type SelectedPaymentMethod = {
__typename?: 'SelectedPaymentMethod'; /** The payment method code. */
code: Scalars['String']['output']; /** The purchase order number. */
purchase_order_number?: Maybe<Scalars['String']['output']>; /** The payment method title. */
title: Scalars['String']['output'];
};