TaskResult

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

The end time UTC.

Link copied to clipboard
val errorMessage: String? = null

The error message.

Link copied to clipboard
val id: String? = null

The id.

Link copied to clipboard
val key: String? = null

The key.

Link copied to clipboard

The long error message.

Link copied to clipboard
val name: String? = null

The name.

Link copied to clipboard

The start time UTC.

Link copied to clipboard