/* Options: Date: 2026-09-05 07:50:55 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: DispatchPickupQuoteRequest.* //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/dispatch/public/pickup/{SchedulerUrl}/quote", Verbs="POST,OPTIONS") public static class DispatchPickupQuoteRequest implements IReturn { public String SchedulerUrl = null; public String Zone = null; public Integer Bags = null; public ArrayList Needs = new ArrayList(); public String getSchedulerUrl() { return SchedulerUrl; } public DispatchPickupQuoteRequest setSchedulerUrl(String value) { this.SchedulerUrl = value; return this; } public String getZone() { return Zone; } public DispatchPickupQuoteRequest setZone(String value) { this.Zone = value; return this; } public Integer getBags() { return Bags; } public DispatchPickupQuoteRequest setBags(Integer value) { this.Bags = value; return this; } public ArrayList getNeeds() { return Needs; } public DispatchPickupQuoteRequest setNeeds(ArrayList value) { this.Needs = value; return this; } private static Object responseType = DispatchPickupQuoteResponse.class; public Object getResponseType() { return responseType; } } public static class DispatchPickupQuoteResponse { public String Zone = null; public Integer Bags = null; public BigDecimal Fare = null; public ResponseStatus ResponseStatus = null; public String getZone() { return Zone; } public DispatchPickupQuoteResponse setZone(String value) { this.Zone = value; return this; } public Integer getBags() { return Bags; } public DispatchPickupQuoteResponse setBags(Integer value) { this.Bags = value; return this; } public BigDecimal getFare() { return Fare; } public DispatchPickupQuoteResponse setFare(BigDecimal value) { this.Fare = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public DispatchPickupQuoteResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }