Show / Hide Table of Contents

Class MediaWorkflowTaskState

Status of a task in a workflow job being run.

Inheritance
object
MediaWorkflowTaskState
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MediaservicesService.Models
Assembly: OCI.DotNetSDK.Mediaservices.dll
Syntax
public class MediaWorkflowTaskState

Properties

Key

Declaration
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Unique key within a MediaWorkflowJob for the task.

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
Type Description
string

The lifecycle details of MediaWorkflowJob task.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public MediaWorkflowJob.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
MediaWorkflowJob.LifecycleStateEnum?

The current state of the MediaWorkflowJob task.

In this article
Back to top