Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

Payment

Payments hold information about the current state of receiving and/or refunding money. documentation

export type Payment = Versioned & {
    __typename?: 'Payment';
    key?: Maybe<Scalars['String']>;
    customerRef?: Maybe<Reference>;
    customer?: Maybe<Customer>;
    anonymousId?: Maybe<Scalars['String']>;
    interfaceId?: Maybe<Scalars['String']>;
    amountPlanned: Money;
    paymentMethodInfo: PaymentMethodInfo;
    paymentStatus: PaymentStatus;
    transactions: Array<Transaction>;
    interfaceInteractionsRaw: InterfaceInteractionsRawResult;
    custom?: Maybe<CustomFieldsType>;
    id: Scalars['String'];
    version: Scalars['Long'];
    createdAt: Scalars['DateTime'];
    lastModifiedAt: Scalars['DateTime'];
    createdBy?: Maybe<Initiator>;
    lastModifiedBy?: Maybe<Initiator>;
};

Referenced Types

On this page