CourierDto

data class CourierDto(name: String?, serviceLevel: String?)

Information about the courier being used.

Parameters

name

A user-presentable name for the courier.

serviceLevel

A user-presentable shipping service level used.

Constructors

CourierDto
Link copied to clipboard
fun CourierDto(name: String? = null, serviceLevel: String? = null)
A user-presentable name for the courier.

Properties

name
Link copied to clipboard
@SerializedName(value = name)
val name: String? = null
A user-presentable name for the courier.
serviceLevel
Link copied to clipboard
@SerializedName(value = serviceLevel)
val serviceLevel: String? = null
A user-presentable shipping service level used.