InPersonCardTransaction
No description
type InPersonCardTransaction implements Transaction {
id: ID!
reference: String!
paymentMethodIdentifier: String!
side: TransactionSide!
type: TransactionTypeEnum!
amount: Amount!
label: String!
statusInfo: TransactionStatusInfo!
paymentId: String
payment: Payment
createdAt: DateTime!
updatedAt: DateTime!
counterparty: String!
bookedBalanceAfter: Amount
paymentProduct: PaymentProduct!
terminalId: String
originalAmount: Amount!
currencyExchange: [ReportExchangeRate!]!
merchant: CardMerchant
cardDetails: CardDetails
authorizationType: AuthorizationType
account: Account
externalReference: String
executionDate: DateTime!
requestedExecutionAt: DateTime
originTransactionId: String
originTransaction: Transaction
enrichedTransactionInfo: EnrichedTransactionInfo
transactionTransportType: TransactionTransportType
statementCanBeGenerated: Boolean
projectId: ID!
reservedAmount: Amount
reservedAmountReleasedAt: DateTime
isCancelable: Boolean!
supportingDocumentCollections(
first: Int! = 50
before: String
after: String
filters: SupportingDocumentCollectionFilterInput
): SupportingDocumentCollectionConnection!
}
Fields
InPersonCardTransaction.id ● ID! non-null scalar
unique identifier of the transaction
InPersonCardTransaction.reference ● String! non-null scalar
external identifier of the transaction
InPersonCardTransaction.paymentMethodIdentifier ● String! non-null scalar
payment method identifier used for this transaction. e.g masked PAN or IBAN or accountNumber
InPersonCardTransaction.side ● TransactionSide! non-null enum
side (Credit or Debit)
InPersonCardTransaction.type ● TransactionTypeEnum! non-null enum
type
InPersonCardTransaction.amount ● Amount! non-null object
amount
InPersonCardTransaction.label ● String! non-null scalar
label
InPersonCardTransaction.statusInfo ● TransactionStatusInfo! non-null interface
status information
InPersonCardTransaction.paymentId ● String scalar
ID of the payment associated to this transaction
InPersonCardTransaction.payment ● Payment object
payment associated to this transaction
InPersonCardTransaction.createdAt ● DateTime! non-null scalar
created date
InPersonCardTransaction.updatedAt ● DateTime! non-null scalar
updated date
InPersonCardTransaction.counterparty ● String! non-null scalar
name of the counterparty. e.g Merchant name, Creditor name, Beneficiary Name ...
InPersonCardTransaction.bookedBalanceAfter ● Amount object
[DEPRECATED] booked balance after this transaction. Deprecated in favor of statusInfo.balance.amount on BookedTransactionStatusInfo
InPersonCardTransaction.paymentProduct ● PaymentProduct! non-null enum
payment product used for this transaction
InPersonCardTransaction.terminalId ● String scalar
unique identifier of the terminal
InPersonCardTransaction.originalAmount ● Amount! non-null object
original amount and currency of the transaction
InPersonCardTransaction.currencyExchange ● [ReportExchangeRate!]! non-null object
currency exchange if any
InPersonCardTransaction.merchant ● CardMerchant union
merchant associated
InPersonCardTransaction.cardDetails ● CardDetails union
cardDetails associated
InPersonCardTransaction.authorizationType ● AuthorizationType enum
type of the authorization. Only available for:
- authorization transaction
- debit transaction linked to a previous authorization transaction
InPersonCardTransaction.account ● Account object
matching account for the transaction
InPersonCardTransaction.externalReference ● String scalar
an arbitrary identifier that was defined by you when you created this transaction.
For example, you can define it in the CreditTransferInput mutation.
InPersonCardTransaction.executionDate ● DateTime! non-null scalar
a date that reflects the execution date of a transaction from a user viewpoint. Can be used for sorting transactions.
InPersonCardTransaction.requestedExecutionAt ● DateTime scalar
a date that reflects the time at which the user asked the transaction to be executed
InPersonCardTransaction.originTransactionId ● String scalar
ID of the origin transaction associated to this transaction
InPersonCardTransaction.originTransaction ● Transaction interface
origin transaction associated to this transaction
InPersonCardTransaction.enrichedTransactionInfo ● EnrichedTransactionInfo object
enriched data of the merchant
InPersonCardTransaction.transactionTransportType ● TransactionTransportType enum
indicator of the transit type used (optional)
InPersonCardTransaction.statementCanBeGenerated ● Boolean scalar
true if a transaction statement can be generated for this transaction
InPersonCardTransaction.projectId ● ID! non-null scalar
project id of the transaction
InPersonCardTransaction.reservedAmount ● Amount object
reserved amount of the transaction computed with the rolling reserve.
InPersonCardTransaction.reservedAmountReleasedAt ● DateTime scalar
date on which reserved funds become available.
InPersonCardTransaction.isCancelable ● Boolean! non-null scalar
true if this transaction can still be cancelled
InPersonCardTransaction.supportingDocumentCollections ● SupportingDocumentCollectionConnection! non-null object
InPersonCardTransaction.supportingDocumentCollections.first ● Int! non-null scalar
the number of elements to load (maximum: 100)
InPersonCardTransaction.supportingDocumentCollections.before ● String scalar
the index (a unique reference in string form) from which you will load the preceding elements
InPersonCardTransaction.supportingDocumentCollections.after ● String scalar
the index (a unique reference in string form) from which you will load the following elements
InPersonCardTransaction.supportingDocumentCollections.filters ● SupportingDocumentCollectionFilterInput input
a filtering table you can apply to your list of connections
Interfaces
Transaction interface
Transaction