MyPayment
My Payments endpoint provides access to payments scoped to a specific user. documentation
type MyPayment = {
__typename?: 'MyPayment';
id: Scalars['String'];
version: Scalars['Long'];
customerRef?: Maybe<Reference>;
customer?: Maybe<Customer>;
anonymousId?: Maybe<Scalars['String']>;
paymentMethodInfo: PaymentMethodInfo;
amountPlanned: Money;
transactions: Array<Transaction>;
custom?: Maybe<CustomFieldsType>;
};