/* Options: Date: 2025-10-27 23:02:13 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: IntervalsById.* //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="/intervals/{Id}", Verbs="GET") @DataContract public static class IntervalsById implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Integer Id = null; public Integer getId() { return Id; } public IntervalsById setId(Integer value) { this.Id = value; return this; } private static Object responseType = IntervalsByIdResponse.class; public Object getResponseType() { return responseType; } } public static class IntervalsByIdResponse { @DataMember(Order=1) public Integer Id = null; @DataMember(Order=4) public ResponseStatus ResponseStatus = null; public Integer getId() { return Id; } public IntervalsByIdResponse setId(Integer value) { this.Id = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public IntervalsByIdResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }