GraphQL OBJECT

JournalItem

One journal item related to the customer’s purchase.

link Definition

  • type JournalItem {
  • # The allocated amount.
  • allocatedAmount: CurrencyAmount
  • # The available amount.
  • availableAmount: CurrencyAmount
  • # The number of the associated bank acount.
  • bankAccountNumber: String
  • # The identifier code of the associated bank acount.
  • bankIdentifierCode: String
  • # The date of the booking.
  • bookingDate: Date
  • # User who created the journal item.
  • createdBy: UserAccount
  • # Date and time when the journal item was created.
  • creationDate: DateTime
  • # The currency.
  • currency: Currency
  • # End to end ID.
  • endToEndId: String
  • # The financial account.
  • financialAccount: FinancialAccount
  • # The ID of the journal item.
  • id: Int
  • # The imported amount.
  • importedAmount: CurrencyAmount
  • # Initiator of the journal item.
  • initiator: String
  • # User who last modified the journal item.
  • lastModifiedBy: UserAccount
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # The notes.
  • notes: String
  • # The assignment status.
  • paymentAssignmentStatus: PaymentAssignmentStatus
  • # List of purchases and corresponding amounts.
  • purchaseAssignments: [JournalItemPurchaseAssignment]
  • # Reason for the transfer.
  • reasonForTransfer: String
  • # Flag to indicate whether the journal item was created automatically or by a
  • # user.
  • isManual: Boolean!
  • }