BatchJobMetadata

@Serializable
data class BatchJobMetadata(val model: String? = null, val displayName: String? = null, val output: BatchOutput? = null, val createTime: String? = null, val endTime: String? = null, val updateTime: String? = null, val batchStats: BatchStats? = null, val state: String? = null, val name: String? = null)

Metadata for a batch job.

Constructors

Link copied to clipboard
constructor(model: String? = null, displayName: String? = null, output: BatchOutput? = null, createTime: String? = null, endTime: String? = null, updateTime: String? = null, batchStats: BatchStats? = null, state: String? = null, name: String? = null)

Properties

Link copied to clipboard

Stats about the batch.

Link copied to clipboard
val createTime: String?

The timestamp when the batch job was created.

Link copied to clipboard
val displayName: String?

A display name for the batch job.

Link copied to clipboard
val endTime: String?

The timestamp when the batch job ended.

Link copied to clipboard
val model: String?

The model used for the batch job.

Link copied to clipboard
val name: String?

The resource name of the batch job.

Link copied to clipboard

The output of the batch job.

Link copied to clipboard
val state: String?

The current state of the batch job.

Link copied to clipboard
val updateTime: String?

The timestamp when the batch job was last updated.