ListPlansResponse

@Serializable
data class ListPlansResponse(val plans: List<Plan>, val total: Long, val offset: Long)

Data class representing the response for listing plans.

Constructors

Link copied to clipboard
constructor(plans: List<Plan>, total: Long, offset: Long)

Properties

Link copied to clipboard

The offset for pagination.

Link copied to clipboard

The list of plans.

Link copied to clipboard
val total: Long

The total number of plans.