CardControlStatusDto

data class CardControlStatusDto(var cardId: String, var cardNumber: String, var cardType: String, var cardClass: CardClassEnumDto, var status: CardControlStatusEnumDto, var cardName: String? = null, var reason: CardControlStatusReasonEnumDto? = null)

Represents a card with its control status

Parameters

cardId

ID of the card. This field is required for further actions with an card (e.g. retrieving transactions).

cardNumber

The card number. *To cover all possible values, this field is a string. In most cases the result will be a number.

cardType

Describes the card type. Examples:

  • VISA
  • Mastercard
  • American Express

cardClass
status
cardName

Name of the card. This can be a user-assigned name of the card, but also the default bank name.

reason

Constructors

Link copied to clipboard
constructor(cardId: String, cardNumber: String, cardType: String, cardClass: CardClassEnumDto, status: CardControlStatusEnumDto, cardName: String? = null, reason: CardControlStatusReasonEnumDto? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard