ListBatchesResponse

@Serializable
data class ListBatchesResponse(val operations: List<BatchJob>? = null, val nextPageToken: String? = null)

Represents the response from listing batch jobs.

Constructors

Link copied to clipboard
constructor(operations: List<BatchJob>? = null, nextPageToken: String? = null)

Properties

Link copied to clipboard
val nextPageToken: String?

A token to retrieve the next page of results.

Link copied to clipboard
val operations: List<BatchJob>?