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? = null, pin: String? = null)
constructor(password: String)

Properties

Link copied to clipboard

The password of the customer.

Link copied to clipboard
val pin: String?

The pin of the customer.