status property

String? status
getter/setter pair

Allows author to indicate if the task is ready to use or not.

If not set, then it will default to INACTIVE. Possible string values are:

  • "UNSPECIFIED_STATUS" : Default value. Actual Task Status should always be set to either INACTIVE or ACTIVE. If none is specified at runtime, it will be set to INACTIVE.
  • "DEFAULT_INACTIVE" : Still in-progress or incomplete, and not intended for use.
  • "ACTIVE" : Available for use.

Implementation

core.String? status;