CustomerCredentials

data class CustomerCredentials(val password: String? = null, val pin: String? = null)

Data class representing the credentials of a customer.

Constructors

Link copied to clipboard
constructor(password: String)
constructor(password: String? = null, pin: String? = null)

Properties

Link copied to clipboard
val password: String? = null

The password of the customer.

Link copied to clipboard
val pin: String? = null

The pin of the customer.