SupplierData

data class SupplierData(val tin: String, val name: String?, val phones: List<String>?) : Parcelable

Data class representing the supplier data.

Constructors

Link copied to clipboard
constructor(tin: String, name: String?, phones: List<String>?)

Properties

Link copied to clipboard
val name: String?

The name of the supplier.

Link copied to clipboard
val phones: List<String>?

The phones of the supplier.

Link copied to clipboard
val tin: String

The tin of the supplier.