/* Options: Date: 2026-09-01 07:48:06 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: QueueSweepRequest.* //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/queue/sweep", Verbs="POST") public static class QueueSweepRequest implements IReturn { private static Object responseType = QueueSweepResponse.class; public Object getResponseType() { return responseType; } } public static class QueueSweepResponse { public ResponseStatus ResponseStatus = null; public ArrayList Locations = new ArrayList(); public Integer TotalNoShow = null; public Integer TotalUnfulfilled = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public QueueSweepResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getLocations() { return Locations; } public QueueSweepResponse setLocations(ArrayList value) { this.Locations = value; return this; } public Integer getTotalNoShow() { return TotalNoShow; } public QueueSweepResponse setTotalNoShow(Integer value) { this.TotalNoShow = value; return this; } public Integer getTotalUnfulfilled() { return TotalUnfulfilled; } public QueueSweepResponse setTotalUnfulfilled(Integer value) { this.TotalUnfulfilled = value; return this; } } public static class LocationSweepResult { public UUID LocationId = null; public String LocationName = null; public Integer NoShow = null; public Integer Unfulfilled = null; public UUID getLocationId() { return LocationId; } public LocationSweepResult setLocationId(UUID value) { this.LocationId = value; return this; } public String getLocationName() { return LocationName; } public LocationSweepResult setLocationName(String value) { this.LocationName = value; return this; } public Integer getNoShow() { return NoShow; } public LocationSweepResult setNoShow(Integer value) { this.NoShow = value; return this; } public Integer getUnfulfilled() { return Unfulfilled; } public LocationSweepResult setUnfulfilled(Integer value) { this.Unfulfilled = value; return this; } } }