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

The phones of the supplier.

Link copied to clipboard
val tin: String?

The tin of the supplier.

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)