DeliveryDto

data class DeliveryDto(val addressLines: List<String>? = null, val courier: CourierDto? = null, val deliveryType: DeliveryTypesEnum? = null, val expectedShipmentDate: LocalDate? = null, val name: String? = null, val telephoneNumber: String? = null, val trackingNumber: String? = null)

Details about an expected delivery. Note: these details are as they appear on the receipt, they are NOT updated automatically

Parameters

addressLines
courier
deliveryType
expectedShipmentDate
name
telephoneNumber
trackingNumber

Constructors

Link copied to clipboard
constructor(addressLines: List<String>? = null, courier: CourierDto? = null, deliveryType: DeliveryTypesEnum? = null, expectedShipmentDate: LocalDate? = null, name: String? = null, telephoneNumber: String? = null, trackingNumber: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "addressLines")
val addressLines: List<String>? = null
Link copied to clipboard
@SerializedName(value = "courier")
val courier: CourierDto? = null
Link copied to clipboard
@SerializedName(value = "deliveryType")
val deliveryType: DeliveryTypesEnum? = null
Link copied to clipboard
@SerializedName(value = "expectedShipmentDate")
val expectedShipmentDate: LocalDate? = null
Link copied to clipboard
@SerializedName(value = "name")
val name: String? = null
Link copied to clipboard
@SerializedName(value = "telephoneNumber")
val telephoneNumber: String? = null
Link copied to clipboard
@SerializedName(value = "trackingNumber")
val trackingNumber: String? = null