GetAllLoyaltyPointsParameters

data class GetAllLoyaltyPointsParameters(val limit: Int? = null, val offset: Int? = null, val attributes: Map<String, String>? = null)

Data class representing parameters for retrieving loyalty points.

Parameters

limit

Maximum number of loyalty points to return.

offset

Get loyalty points from a specific starting point.

attributes

Optional key-value pairs filtering results to loyalty points that have matching attribute key-value pairs.

Constructors

Link copied to clipboard
constructor(limit: Int? = null, offset: Int? = null, attributes: Map<String, String>? = null)

Properties

Link copied to clipboard
val attributes: Map<String, String>? = null
Link copied to clipboard
val limit: Int? = null
Link copied to clipboard
val offset: Int? = null