/* Options: Date: 2025-09-15 09:29:56 Version: 8.80 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: PriceCalculationTypeQuery.* //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="/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; } } }