/* Options: Date: 2024-07-03 14:25:22 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DurationTypeQuery.* //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/durationtypes", Verbs="GET") public static class DurationTypeQuery implements IReturn { private static Object responseType = DurationTypeResponse.class; public Object getResponseType() { return responseType; } } public static class DurationTypeResponse { public Integer Id = null; public String Name = null; public String Description = null; public Integer getId() { return Id; } public DurationTypeResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public DurationTypeResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public DurationTypeResponse setDescription(String value) { this.Description = value; return this; } } }