OBJECT
Journal
Represents a journal.
link GraphQL Schema definition
- type Journal {
- # The unique identifier of the journal.
- : String
- # The name of the journal.
- : String
- # Whether the journal is a credit note journal.
- : Boolean
- # The type of the journal.
- : InvoiceType
- # Whether the journal is the default journal for its type.
- : Boolean
- # The last known document number used for an invoice within this journal.
- : Int @deprecated( reason: "use lastDocumentNumber instead" )
- # The last known document number used for an invoice within this journal.
- : String
- }