Home > @vsf-enterprise/commercetools-types > MyPayment
# MyPayment type
My Payments endpoint provides access to payments scoped to a specific user. [documentation](https://docs.commercetools.com/http-api-projects-me-payments#mypayment)
Signature:
export declare 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>;
};
References: Scalars, Maybe, Reference, Customer, PaymentMethodInfo, Money, Transaction, CustomFieldsType