Class ServiceTaskStatus
ServiceTaskStatus
Inherited Members
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class ServiceTaskStatus : BitmovinResponse
Properties
CreatedAt
Timestamp when the task 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> |
Error
Additional optional error details
Declaration
public ErrorDetails Error { get; set; }
Property Value
Type | Description |
---|---|
ErrorDetails |
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> |
Eta
Estimated ETA in seconds
Declaration
public double? Eta { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
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 tasks 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> |
Progress
Progress in percent
Declaration
public int? Progress { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
QueuedAt
Timestamp when the task 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 task 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> |
Status
Current status (required)
Declaration
public Status? Status { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Status> |
Subtasks
List of subtasks
Declaration
public List<Subtask> Subtasks { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Subtask> |