INPUT_OBJECT

CommercialInvoiceInput

link GraphQL Schema definition

  • input CommercialInvoiceInput {
  • # The number of the CommercialInvoice. Required for entry.
  • invoiceNumber: String!
  • # The commercial invoice's seller. Required for entry.
  • seller: KeyInput!
  • # The currency listed on the CommercialInvoice. Required for entry.
  • currency: CurrencyCode!
  • # The Foreign Currency Exchange Rate of the listed currency. Required for entry.
  • currencyRate: Float!
  • # The total value listed on the CommercialInvoice. Required for entry
  • value: Money!
  • # Adjustments to the CommercialInvoice.
  • adjustments: [AdjustmentInput!]
  • # CommercialInvoice's Products. Required for entry.
  • products: [EntryProductInput!]!
  • }