CourierDto

data class CourierDto(val name: String? = null, val serviceLevel: String? = null)

Information about the courier being used.

Parameters

name

A user-presentable name for the courier.

serviceLevel

A user-presentable shipping service level used.

Constructors

Link copied to clipboard
constructor(name: String? = null, serviceLevel: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "name")
val name: String? = null
Link copied to clipboard
@SerializedName(value = "serviceLevel")
val serviceLevel: String? = null