TaskResult

@Serializable
data class TaskResult(val startTimeUtc: DateTime, val endTimeUtc: DateTime, val status: TaskCompletionStatus, val name: String? = null, val key: String? = null, val id: String? = null, val errorMessage: String? = null, val longErrorMessage: String? = null)

Class TaskExecutionInfo.

Constructors

Link copied to clipboard
constructor(startTimeUtc: DateTime, endTimeUtc: DateTime, status: TaskCompletionStatus, name: String? = null, key: String? = null, id: String? = null, errorMessage: String? = null, longErrorMessage: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "EndTimeUtc")
val endTimeUtc: DateTime

The end time UTC.

Link copied to clipboard
@SerialName(value = "ErrorMessage")
val errorMessage: String?

The error message.

Link copied to clipboard
@SerialName(value = "Id")
val id: String?

The id.

Link copied to clipboard
@SerialName(value = "Key")
val key: String?

The key.

Link copied to clipboard
@SerialName(value = "LongErrorMessage")
val longErrorMessage: String?

The long error message.

Link copied to clipboard
@SerialName(value = "Name")
val name: String?

The name.

Link copied to clipboard
@SerialName(value = "StartTimeUtc")
val startTimeUtc: DateTime

The start time UTC.

Link copied to clipboard
@SerialName(value = "Status")
val status: TaskCompletionStatus

The status.