CardPaymentMandate
No description
type CardPaymentMandate implements PaymentMandate {
id: ID!
transactions(
first: Int! = 50
after: String
orderBy: TransactionsOrderByInput
filters: TransactionsFiltersInput
): TransactionConnection
name: String
accountHolder: AccountHolder!
card: ExternalCard!
createdAt: DateTime!
updatedAt: DateTime!
executedAt: DateTime
expiredAt: Date
statusInfo: PaymentMandateStatusInfo!
}
Fields
CardPaymentMandate.id ● ID! non-null scalar
Unique identifier of the Payment Mandate
CardPaymentMandate.transactions ● TransactionConnection object
List of transactions associated with the Card Mandate.
Implements the Relay Connection interface, used to paginate lists of elements. (Learn More)
CardPaymentMandate.transactions.first ● Int! non-null scalar
the number of elements to load (default value 50, maximum: 100)
CardPaymentMandate.transactions.after ● String scalar
the index (a unique reference in string form) from which you will load the following elements
CardPaymentMandate.transactions.orderBy ● TransactionsOrderByInput input
an order you can apply to your list of connections (default value UpdatedAt desc)
CardPaymentMandate.transactions.filters ● TransactionsFiltersInput input
a filtering table you can apply to your list of connections
CardPaymentMandate.name ● String scalar
Custom name of the mandate
CardPaymentMandate.accountHolder ● AccountHolder! non-null object
Account Holder information
CardPaymentMandate.card ● ExternalCard! non-null object
The card associated to this mandate
CardPaymentMandate.createdAt ● DateTime! non-null scalar
Creation date of the Payment Mandate
CardPaymentMandate.updatedAt ● DateTime! non-null scalar
Last Update date of the Payment Mandate
CardPaymentMandate.executedAt ● DateTime scalar
Date of the the last transaction executed for the concerned Payment Mandate
CardPaymentMandate.expiredAt ● Date scalar
Expiry date of the Payment Mandate
CardPaymentMandate.statusInfo ● PaymentMandateStatusInfo! non-null interface
Payment Mandate status information
Interfaces
PaymentMandate interface
Member Of
CardInDetails object