ENUM

TicketStatusCode

Ticket status code enumeration representing the state machine

Enumeración de códigos de estado del ticket

link GraphQL Schema definition

  • enum TicketStatusCode {
  • # The user was just added to the resource. This is the initial state
  • #
  • # El usuario fue añadido al recurso. Es el estado inicial
  • INITIALIZED
  • # The user wants to use the resource
  • #
  • # El usuario quiere usar el recurso
  • REQUESTING
  • # The user entered the queue because there were no available slots
  • #
  • # El usuario entró a la cola porque no había puestos libres
  • QUEUED
  • # The user queued can finally use the resource and has to confirm that still wants
  • # to use it
  • #
  • # El usuario encolado ya puede usar el recurso y tiene que confirmar si sigue
  • # queriendo usarlo
  • AWAITING_CONFIRMATION
  • # The user is using the resource
  • #
  • # El usuario está usando el recurso
  • ACTIVE
  • # The user has stopped using the resource
  • #
  • # El usuario ha dejado de usar el recurso
  • INACTIVE
  • # The user was banned or invalidated for some reason (FUTURE PROOFING, NOT IN USE)
  • #
  • # El usuario ha sido prohibido o invalidado por alguna razón (PREVISIÓN DE FUTUROS
  • # REQUISITOS, NO SE USA)
  • REVOKED
  • }