CardParameters

data class CardParameters(val cardType: CardType? = null, val include: List<CardIncludesParam>? = null, val limit: Int? = null, val offset: Int? = null, val status: List<CardStatus>? = null)

Data class containing the filter parameters for a CustomerCards request.

Constructors

Link copied to clipboard
constructor(cardType: CardType? = null, include: List<CardIncludesParam>? = null, limit: Int? = null, offset: Int? = null, status: List<CardStatus>? = null)

Properties

Link copied to clipboard
val cardType: CardType? = null

CardType Get a list of cards by card type.

Link copied to clipboard

List of CardIncludesParam Include listed properties in the response.

Link copied to clipboard
val limit: Int? = null

This is the total number of records to return.

Link copied to clipboard
val offset: Int? = null

This is the starting position, where 1 is the first record.

Link copied to clipboard
val status: List<CardStatus>? = null

Comma separated list of card statuses which will be returned. By default, all statuses will be returned.