PaymentOrderOutput
Contains the payment order details
type PaymentOrderOutput = {
__typename?: 'PaymentOrderOutput'; /** PayPal order ID */
id?: Maybe<Scalars['String']['output']>; /** The order ID generated by Payment Services */
mp_order_id?: Maybe<Scalars['String']['output']>; /** Details about the card used on the order */
payment_source_details?: Maybe<PaymentSourceDetails>; /** The status of the payment order */
status?: Maybe<Scalars['String']['output']>;
};