GraphQL OBJECT

PurchaseDocument

PDF document sent to the customer as an email attachment.

link Definition

  • type PurchaseDocument {
  • # ID of the PDF document sent to the customer as an email attachment.
  • id: Long!
  • # Invoice or reference number, depending on the document type.
  • invoiceNumber: String!
  • # Type of PDF document sent to the customer as an email attachment.
  • purchaseDocumentType: PurchaseDocumentType
  • # Date on which the PDF document was sent to the customer.
  • documentDate: DateTime!
  • # Link to the PDF document sent to the customer as an email attachment.
  • downloadLink: String
  • }