/* Options: Date: 2025-12-06 05:28:34 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: LocationNumbersRequest.* //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/LocationNumbers", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/LocationNumbers/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class LocationNumbersRequest implements IReturn { public UUID Id = null; public ArrayList LocationNumbers = new ArrayList(); public UUID getId() { return Id; } public LocationNumbersRequest setId(UUID value) { this.Id = value; return this; } public ArrayList getLocationNumbers() { return LocationNumbers; } public LocationNumbersRequest setLocationNumbers(ArrayList value) { this.LocationNumbers = value; return this; } private static Object responseType = LocationNumbersResponse.class; public Object getResponseType() { return responseType; } } public static class LocationNumbersResponse { public ResponseStatus ResponseStatus = null; public ArrayList LocationNumbers = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public LocationNumbersResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getLocationNumbers() { return LocationNumbers; } public LocationNumbersResponse setLocationNumbers(ArrayList value) { this.LocationNumbers = value; return this; } } public static class LocationNumber { public UUID Id = null; public UUID LocationId = null; public String Number = null; public UUID getId() { return Id; } public LocationNumber setId(UUID value) { this.Id = value; return this; } public UUID getLocationId() { return LocationId; } public LocationNumber setLocationId(UUID value) { this.LocationId = value; return this; } public String getNumber() { return Number; } public LocationNumber setNumber(String value) { this.Number = value; return this; } } }