GetProductsResult

data class GetProductsResult(val nextLink: String? = null, val value: List<ProductResponse>? = null)

Pageable list of products.

Constructors

Link copied to clipboard
constructor(nextLink: String? = null, value: List<ProductResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val nextLink: String? = null

URI to the next page.

Link copied to clipboard
val value: List<ProductResponse>? = null

List of products.