/* Options: Date: 2026-09-05 07:47:57 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: DispatchPickupPageRequest.* //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}", Verbs="GET,OPTIONS") public static class DispatchPickupPageRequest implements IReturn { public String SchedulerUrl = null; public String getSchedulerUrl() { return SchedulerUrl; } public DispatchPickupPageRequest setSchedulerUrl(String value) { this.SchedulerUrl = value; return this; } private static Object responseType = DispatchPickupPageResponse.class; public Object getResponseType() { return responseType; } } public static class DispatchPickupPageResponse { public String CompanyName = null; public ArrayList Zones = new ArrayList(); public ArrayList Needs = new ArrayList(); public Boolean CardEnabled = null; public String PublishableKey = null; public ResponseStatus ResponseStatus = null; public String getCompanyName() { return CompanyName; } public DispatchPickupPageResponse setCompanyName(String value) { this.CompanyName = value; return this; } public ArrayList getZones() { return Zones; } public DispatchPickupPageResponse setZones(ArrayList value) { this.Zones = value; return this; } public ArrayList getNeeds() { return Needs; } public DispatchPickupPageResponse setNeeds(ArrayList value) { this.Needs = value; return this; } public Boolean isCardEnabled() { return CardEnabled; } public DispatchPickupPageResponse setCardEnabled(Boolean value) { this.CardEnabled = value; return this; } public String getPublishableKey() { return PublishableKey; } public DispatchPickupPageResponse setPublishableKey(String value) { this.PublishableKey = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public DispatchPickupPageResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class DispatchZoneView { public String Zone = null; public BigDecimal Base = null; public BigDecimal PerBag = null; public BigDecimal PremiumUpliftPct = null; public Integer Drivers = null; public Integer IdleDrivers = null; public String getZone() { return Zone; } public DispatchZoneView setZone(String value) { this.Zone = value; return this; } public BigDecimal getBase() { return Base; } public DispatchZoneView setBase(BigDecimal value) { this.Base = value; return this; } public BigDecimal getPerBag() { return PerBag; } public DispatchZoneView setPerBag(BigDecimal value) { this.PerBag = value; return this; } public BigDecimal getPremiumUpliftPct() { return PremiumUpliftPct; } public DispatchZoneView setPremiumUpliftPct(BigDecimal value) { this.PremiumUpliftPct = value; return this; } public Integer getDrivers() { return Drivers; } public DispatchZoneView setDrivers(Integer value) { this.Drivers = value; return this; } public Integer getIdleDrivers() { return IdleDrivers; } public DispatchZoneView setIdleDrivers(Integer value) { this.IdleDrivers = value; return this; } } public static class DispatchNeedView { public String Id = null; public String Label = null; public String Sub = null; public String getId() { return Id; } public DispatchNeedView setId(String value) { this.Id = value; return this; } public String getLabel() { return Label; } public DispatchNeedView setLabel(String value) { this.Label = value; return this; } public String getSub() { return Sub; } public DispatchNeedView setSub(String value) { this.Sub = value; return this; } } }