ListProductsResponse

data class ListProductsResponse(val meta: FrameMetadata? = null, val data: List<Product>? = null)

Response returned when retrieving a paginated list of products.

Constructors

Link copied to clipboard
constructor(meta: FrameMetadata? = null, data: List<Product>? = null)

Properties

Link copied to clipboard
val data: List<Product>? = null

The list of Product objects returned by the API.

Link copied to clipboard
val meta: FrameMetadata? = null

Pagination metadata for the result set.