FeeTransaction
Fee Transaction
type FeeTransaction implements Transaction {
id: ID!
reference: String!
paymentMethodIdentifier: String!
side: TransactionSide!
type: TransactionTypeEnum!
amount: Amount!
label: String!
feesType: FeesTypeEnum!
statusInfo: TransactionStatusInfo!
paymentId: String
payment: Payment
createdAt: DateTime!
updatedAt: DateTime!
counterparty: String!
bookedBalanceAfter: Amount
paymentProduct: PaymentProduct!
creditor: FeeCreditor!
debtor: FeeDebtor!
account: Account
externalReference: String
executionDate: DateTime!
requestedExecutionAt: DateTime
originTransactionId: String
originTransaction: Transaction
statementCanBeGenerated: Boolean
projectId: ID!
supportingDocumentCollections(
first: Int! = 50
before: String
after: String
filters: SupportingDocumentCollectionFilterInput
): SupportingDocumentCollectionConnection!
}
Fields
FeeTransaction.id
● ID!
non-null scalar
unique identifier of the transaction
FeeTransaction.reference
● String!
non-null scalar
reference assigned by the initiating party, to unambiguously identify the transaction. This reference is passed on, unchanged, throughout the entire reference chain.
FeeTransaction.paymentMethodIdentifier
● String!
non-null scalar
payment method identifier used for this transaction. e.g masked PAN or IBAN or accountNumber
FeeTransaction.side
● TransactionSide!
non-null enum
side (Credit or Debit)
FeeTransaction.type
● TransactionTypeEnum!
non-null enum
type
FeeTransaction.amount
● Amount!
non-null object
amount
FeeTransaction.label
● String!
non-null scalar
label
FeeTransaction.feesType
● FeesTypeEnum!
non-null enum
feesType
FeeTransaction.statusInfo
● TransactionStatusInfo!
non-null interface
status information
FeeTransaction.paymentId
● String
scalar
ID of the payment associated to this transaction
FeeTransaction.payment
● Payment
object
payment associated to this transaction
FeeTransaction.createdAt
● DateTime!
non-null scalar
created date
FeeTransaction.updatedAt
● DateTime!
non-null scalar
updated date
FeeTransaction.counterparty
● String!
non-null scalar
name of the counterparty. e.g Merchant name, Creditor name, Beneficiary Name ...