Issuer

data class Issuer(val id: String? = null, val thumbnail: String? = null, val default: Boolean? = null)

Represents information about the card issuer or financial institution. This class contains details about the entity that issues the payment method, including its identification and visual representation.

Parameters

id

Unique identifier for the issuer

thumbnail

URL to the issuer's logo or icon

default

Indicates if this is the default issuer for the payment method

Constructors

Link copied to clipboard
constructor(id: String? = null, thumbnail: String? = null, default: Boolean? = null)

Properties

Link copied to clipboard
val default: Boolean? = null
Link copied to clipboard
val id: String? = null
Link copied to clipboard
val thumbnail: String? = null