CustomerData

data class CustomerData(val email: String, val phone: String?) : Parcelable

Data class representing the customer data.

Constructors

Link copied to clipboard
constructor(email: String, phone: String?)

Properties

Link copied to clipboard
val email: String

The email of the customer.

Link copied to clipboard
val phone: String?

The phone of the customer.