OBJECT

EncoderCommandStatus

The status of a command sent to an encoder.

link GraphQL Schema definition

  • type EncoderCommandStatus {
  • # The encoder ID.
  • encoderId: ID!
  • # The command response.
  • commandResponse: JSON!
  • # The status code of the query response. These are similar to HTML response codes.
  • code: String!
  • # A human-readable description of the command status.
  • message: String
  • # The status of a command sent to an encoder. 'Pending' if a response hasn't been
  • # recieved; 'finished' otherwise.
  • status: String!
  • # The correlation ID used to match the command to the command response.
  • correlationId: String!
  • }

link Require by