state property

String? state
getter/setter pair

Indicates the command state. Possible string values are:

  • "STATE_UNSPECIFIED" : The command status was unspecified.
  • "PENDING" : An unexpired command not yet sent to the client.
  • "EXPIRED" : The command didn't get executed by the client within the expected time.
  • "CANCELLED" : The command is cancelled by admin while in PENDING.
  • "SENT_TO_CLIENT" : The command has been sent to the client.
  • "ACKED_BY_CLIENT" : The client has responded that it received the command.
  • "EXECUTED_BY_CLIENT" : The client has (un)successfully executed the command.

Implementation

core.String? state;