ListSuccessResult

data class ListSuccessResult<T>(val items: List<T>, val nextToken: String?)

Represents a successful list result.

Constructors

Link copied to clipboard
constructor(items: List<T>, nextToken: String?)

Properties

Link copied to clipboard
val items: List<T>

List Items returned from a successful list query output.

Link copied to clipboard

String Generated next token to call for the next page of paginated results.