CreatePaymentOrderOutput
Contains payment order details that are used while processing the payment order
type CreatePaymentOrderOutput = {
__typename?: 'CreatePaymentOrderOutput'; /** The amount of the payment order */
amount?: Maybe<Scalars['Float']['output']>; /** The currency of the payment order */
currency_code?: Maybe<Scalars['String']['output']>; /** PayPal order ID */
id?: Maybe<Scalars['String']['output']>; /** The order ID generated by Payment Services */
mp_order_id?: Maybe<Scalars['String']['output']>; /** The status of the payment order */
status?: Maybe<Scalars['String']['output']>;
};