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