/* Options: Date: 2025-12-06 06:05:53 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InventoryRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/Inventory", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/Inventory/{InventoryID}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class InventoryRequest : IReturn { open var InventoryID:Int? = null open var Inventory:ArrayList = ArrayList() companion object { private val responseType = InventoryResponse::class.java } override fun getResponseType(): Any? = InventoryRequest.responseType } open class InventoryResponse { open var ResponseStatus:ResponseStatus? = null open var Inventory:ArrayList = ArrayList() } open class Inventory { open var InventoryID:Int? = null open var EquipmentID:Int? = null open var RecordCreatedDate:Date? = null open var DeletedDate:Date? = null open var Quantity:Int? = null open var InventoryLocation:String? = null open var Notess:String? = null open var CreatedByUID:UUID? = null }