For the complete documentation index, see llms.txt. This page is also available as Markdown.

Order

type Order {
  # Date pay
  datePay: Long

  # Order ID
  id: String!

  # Order status
  status: String!

  # Order total
  total: Float!

  # Get contact
  contact: Contact

  # Get pretty dateStart
  datePayPretty: String!

  # Rent order info
  rentOrder: RentOrder
}

Last updated