UpdateShipmentScanRequest

@Serializable
data class UpdateShipmentScanRequest(val organizationId: String? = null, val shipmentId: String? = null, val title: String? = null, val weight: Float? = null, val freightClass: String? = null, val latitude: Float? = null, val longitude: Float? = null, val notes: String? = null, val status: String? = null, val updatedById: String, val metadata: JsonObject? = null) : UpdateShipmentScanBaseRequest

Constructors

Link copied to clipboard
constructor(organizationId: String? = null, shipmentId: String? = null, title: String? = null, weight: Float? = null, freightClass: String? = null, latitude: Float? = null, longitude: Float? = null, notes: String? = null, status: String? = null, updatedById: String, metadata: JsonObject? = null)

Properties

Link copied to clipboard
@SerialName(value = "freight_class")
val freightClass: String?
Link copied to clipboard
@SerialName(value = "latitude")
val latitude: Float?
Link copied to clipboard
@SerialName(value = "longitude")
val longitude: Float?
Link copied to clipboard
@SerialName(value = "metadata")
val metadata: JsonObject?
Link copied to clipboard
@SerialName(value = "notes")
val notes: String?
Link copied to clipboard
@SerialName(value = "organization_id")
val organizationId: String?
Link copied to clipboard
@SerialName(value = "shipment_id")
val shipmentId: String?
Link copied to clipboard
@SerialName(value = "status")
val status: String?
Link copied to clipboard
@SerialName(value = "title")
val title: String?
Link copied to clipboard
@SerialName(value = "updated_by_id")
open override val updatedById: String
Link copied to clipboard
@SerialName(value = "weight")
val weight: Float?