OBJECT

Journal

Represents a journal.

link GraphQL Schema definition

  • type Journal {
  • # The unique identifier of the journal.
  • id: String
  • # The name of the journal.
  • name: String
  • # Whether the journal is a credit note journal.
  • creditNote: Boolean
  • # The type of the journal.
  • type: InvoiceType
  • # Whether the journal is the default journal for its type.
  • default: Boolean
  • # The last known document number used for an invoice within this journal.
  • lastUsedNumber: Int
  • }