/* Options: Date: 2025-05-05 17:24:45 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetBackOrderMinMaxDaysRequest.* //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/backorder/minmaxdays", Verbs="GET") public static class GetBackOrderMinMaxDaysRequest implements IReturn, IGet { private static Object responseType = GetBackOrderMinMaxDaysResponse.class; public Object getResponseType() { return responseType; } } public static class GetBackOrderMinMaxDaysResponse { public DayRange Created = null; public DayRange Updated = null; public DayRange getCreated() { return Created; } public GetBackOrderMinMaxDaysResponse setCreated(DayRange value) { this.Created = value; return this; } public DayRange getUpdated() { return Updated; } public GetBackOrderMinMaxDaysResponse setUpdated(DayRange value) { this.Updated = value; return this; } } public static class DayRange { public Integer Min = null; public Integer Max = null; public Integer getMin() { return Min; } public DayRange setMin(Integer value) { this.Min = value; return this; } public Integer getMax() { return Max; } public DayRange setMax(Integer value) { this.Max = value; return this; } } }