OrderPaymentMethod
Contains details about the payment method used to pay for the order.
type OrderPaymentMethod = {
__typename?: 'OrderPaymentMethod'; /** Additional data per payment method type. */
additional_data?: Maybe<Array<Maybe<KeyValue>>>; /** The label that describes the payment method. */
name: Scalars['String']['output']; /** The payment method code that indicates how the order was paid for. */
type: Scalars['String']['output'];
};