OBJECT

OrderType

Order Type definition

link GraphQL Schema definition

  • type OrderType {
  • # Specifies the time that the Order Type was created
  • createdAt: DateTime!
  • # Returns `true` if the order type is enable for the given Organization
  • #
  • # Arguments
  • # organizationUnitId: [Not documented]
  • enable(organizationUnitId: UUID!): Boolean
  • # List of fees associated with the Order Type
  • fees: [Fee]
  • # Order Type ID
  • id: UUID!
  • # Order Type Name
  • name: String!
  • # Print a guest check when the order is fully tentered
  • printClosedCheck: Boolean!
  • # Print a guest check each time the transaction is totaled
  • printGuestCheck: Boolean!
  • # List of print where the order will be printed
  • printers: [PrintFilter]
  • # Prompt for guest descriptor before checkout
  • promptCustomerInfo: Boolean!
  • # List of taxes associated with the Order Type
  • taxes: [Tax]
  • }