DeliveryDto

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

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

Parameters

addressLines
  • @param courier * @param deliveryType * @param expectedShipmentDate * @param name * @param telephoneNumber * @param trackingNumber

Constructors

DeliveryDto
Link copied to clipboard
fun DeliveryDto(addressLines: List<String>? = null, courier: CourierDto? = null, deliveryType: DeliveryTypesEnum? = null, expectedShipmentDate: LocalDate? = null, name: String? = null, telephoneNumber: String? = null, trackingNumber: String? = null)
  • @param courier * @param deliveryType * @param expectedShipmentDate * @param name * @param telephoneNumber * @param trackingNumber

Properties

addressLines
Link copied to clipboard
@SerializedName(value = addressLines)
val addressLines: List<String>? = null
  • @param courier * @param deliveryType * @param expectedShipmentDate * @param name * @param telephoneNumber * @param trackingNumber

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