Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
data class ParsedDocument(val bolNumber: String?, val proNumber: String?, val carrierName: String?, val destination: ParsedDocument.Destination)
Link copied to clipboard
data class Shipment(val id: String = "", val title: String = "", val created_by_id: String = "", val created_at: String = "", val updated_at: String? = null, val archived: String? = null, val barcodes: Map<String, List<Barcode>>? = null, val organization_id: String? = null, val status: String? = null, val description: String? = null, val metadata: JsonObject? = null)
Link copied to clipboard
data class ShipmentEntry(val id: String = "", val shipment_id: String = "", val shipment_scan_id: String = "", val organization_id: String = "", val storage_path: String = "", val type: ShipmentEntryType, val file_name: String = "", val file_size: Long? = null, val created_at: String = "", val created_by_id: String = "")
Link copied to clipboard
Link copied to clipboard
data class ShipmentScan(val id: String = "", val shipment_id: String = "", val organization_id: String = "", val title: String = "", val width: Float? = null, val height: Float? = null, val depth: Float? = null, val user_width: Float? = null, val user_height: Float? = null, val user_depth: Float? = null, val user_center: Vector3? = null, val manual_width: Float? = null, val manual_height: Float? = null, val manual_depth: Float? = null, val weight: Float? = null, val freight_class: String? = null, val latitude: Float? = null, val longitude: Float? = null, val notes: String? = null, val status: String? = null, val created_at: String = "", val created_by_id: String = "", val updated_at: String? = null, val updated_by_id: String? = null, val metadata: JsonObject? = null, val scan_type: ShipmentScanType? = null, val recent_entry_presigned_url: String? = null)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class ShipmentTree(val shipment: Shipment, val scans: List<ShipmentScan> = emptyList(), val recentEntries: List<ShipmentEntry> = emptyList(), val isShared: Boolean = false, val sharedRecords: List<ShipmentSharing> = emptyList(), val sharedWithMeRecords: List<ShipmentSharing> = emptyList())
Link copied to clipboard
data class ShipmentWithSharing(val shipments: List<Shipment>? = null, val shared_with_user_shipments: List<Shipment>? = null)
Link copied to clipboard