/* Options: Date: 2024-06-18 23:21:27 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ScheduleTypeQuery.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/services/scheduletypes", Verbs="GET") public static class ScheduleTypeQuery implements IReturn { private static Object responseType = ScheduleTypeResponse.class; public Object getResponseType() { return responseType; } } public static class ScheduleTypeResponse { public Integer Id = null; public String Name = null; public String Description = null; public Integer getId() { return Id; } public ScheduleTypeResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public ScheduleTypeResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ScheduleTypeResponse setDescription(String value) { this.Description = value; return this; } } }