Class Subtask
Subtask
Inherited Members
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class Subtask : BitmovinResponse
Properties
CreatedAt
Timestamp when the subtask was created, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
Declaration
public DateTime? CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
ErrorAt
Timestamp when the subtask status changed to 'ERROR', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ Note that this timestamp is deprecated and is equivalent to finishedAt in case of an 'ERROR'.
Declaration
public DateTime? ErrorAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
FinishedAt
Timestamp when the subtask status changed to a final state like 'FINISHED', 'ERROR', 'CANCELED', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ Note that this timestamp might be inaccurate for subtasks which ran prior to the 1.50.0 REST API release.
Declaration
public DateTime? FinishedAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Messages
Task specific messages
Declaration
public List<Message> Messages { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Message> |
Name
Name of the subtask (required)
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Progress
Progress in percent
Declaration
public int? Progress { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
QueuedAt
Timestamp when the subtask status changed to 'QUEUED', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
Declaration
public DateTime? QueuedAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
RunningAt
Timestamp when the subtask status changed to 'RUNNING', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
Declaration
public DateTime? RunningAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
StartedAt
Timestamp when the subtask was started, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
Declaration
public DateTime? StartedAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Status
Current status (required)
Declaration
public Status? Status { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Status> |
UpdatedAt
Timestamp when the subtask was last updated, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
Declaration
public DateTime? UpdatedAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |