/* Options: Date: 2025-12-06 08:03:40 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: InventoryRequest.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/v1/Inventory", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/Inventory/{InventoryID}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class InventoryRequest implements IReturn { public Integer InventoryID = null; public ArrayList Inventory = new ArrayList(); public Integer getInventoryID() { return InventoryID; } public InventoryRequest setInventoryID(Integer value) { this.InventoryID = value; return this; } public ArrayList getInventory() { return Inventory; } public InventoryRequest setInventory(ArrayList value) { this.Inventory = value; return this; } private static Object responseType = InventoryResponse.class; public Object getResponseType() { return responseType; } } public static class InventoryResponse { public ResponseStatus ResponseStatus = null; public ArrayList Inventory = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public InventoryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getInventory() { return Inventory; } public InventoryResponse setInventory(ArrayList value) { this.Inventory = value; return this; } } public static class Inventory { public Integer InventoryID = null; public Integer EquipmentID = null; public Date RecordCreatedDate = null; public Date DeletedDate = null; public Integer Quantity = null; public String InventoryLocation = null; public String Notess = null; public UUID CreatedByUID = null; public Integer getInventoryID() { return InventoryID; } public Inventory setInventoryID(Integer value) { this.InventoryID = value; return this; } public Integer getEquipmentID() { return EquipmentID; } public Inventory setEquipmentID(Integer value) { this.EquipmentID = value; return this; } public Date getRecordCreatedDate() { return RecordCreatedDate; } public Inventory setRecordCreatedDate(Date value) { this.RecordCreatedDate = value; return this; } public Date getDeletedDate() { return DeletedDate; } public Inventory setDeletedDate(Date value) { this.DeletedDate = value; return this; } public Integer getQuantity() { return Quantity; } public Inventory setQuantity(Integer value) { this.Quantity = value; return this; } public String getInventoryLocation() { return InventoryLocation; } public Inventory setInventoryLocation(String value) { this.InventoryLocation = value; return this; } public String getNotess() { return Notess; } public Inventory setNotess(String value) { this.Notess = value; return this; } public UUID getCreatedByUID() { return CreatedByUID; } public Inventory setCreatedByUID(UUID value) { this.CreatedByUID = value; return this; } } }