/* Options: Date: 2024-06-26 08:36: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: PriceCalculationTypeQuery.* //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/prices/calculationtypes", Verbs="GET") public static class PriceCalculationTypeQuery implements IReturn { private static Object responseType = PriceCalculationTypeResponse.class; public Object getResponseType() { return responseType; } } public static class PriceCalculationTypeResponse { public Integer Id = null; public String Name = null; public String Description = null; public Integer getId() { return Id; } public PriceCalculationTypeResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public PriceCalculationTypeResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public PriceCalculationTypeResponse setDescription(String value) { this.Description = value; return this; } } }