CheckMerchantPayment
No description
type CheckMerchantPayment implements MerchantPayment {
id: ID!
transactions(
first: Int! = 50
after: String
orderBy: TransactionsOrderByInput
filters: TransactionsFiltersInput
): TransactionConnection
statusInfo: MerchantPaymentStatusInfo!
amount: Amount!
paymentMandate: PaymentMandate! @deprecated
paymentLink: MerchantPaymentLink @deprecated
merchantProfile: MerchantProfile!
paymentMethod: MerchantPaymentMethod!
balance: MerchantBalance!
label: String
reference: String
externalReference: String
billingAddress: Address
updatedAt: DateTime!
createdAt: DateTime @deprecated
authorizedAt: DateTime @deprecated
canceledAt: DateTime @deprecated
capturedAt: DateTime @deprecated
rejectedAt: DateTime @deprecated
refundedAt: DateTime @deprecated
disputedAt: DateTime @deprecated
}
Fields
CheckMerchantPayment.id
● ID!
non-null scalar
unique identifier of a merchant payment
CheckMerchantPayment.transactions
● TransactionConnection
object
List of transactions associated with the Merchant Payment.
Implements the Relay Connection interface, used to paginate list of element (Learn More)
CheckMerchantPayment.transactions.first
● Int!
non-null scalar
the number of elements to load (default value 50, maximum: 100)
CheckMerchantPayment.transactions.after
● String
scalar
the index (a unique reference in string form) from which you will load the following elements
CheckMerchantPayment.transactions.orderBy
● TransactionsOrderByInput
input
an order you can apply to your list of connections (default value UpdatedAt desc)