/* Options: Date: 2026-06-06 00:56:34 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://link.dc8.unico3.cloud //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Comune.* //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="/tabelle/comuni/", Verbs="PUT") // @Route(Path="/tabelle/comuni/{Id}", Verbs="PUT,GET") // @Route(Path="/tabelle/comuni/codiceexport/{CodiceExport}", Verbs="PUT,GET") public static class Comune implements IReturn { public String CodiceExport = null; public Integer Id = null; public String Denominazione = null; public String CAP = null; public String Provincia = null; public FK_Zona Zona = null; public Boolean IsEsclusoDaListe = null; public String CodiceISTAT = null; public OptionalNullableDouble DurezzaTotaleAcqua = null; public OptionalNullableInteger TipoRCEE = null; public String getCodiceExport() { return CodiceExport; } public Comune setCodiceExport(String value) { this.CodiceExport = value; return this; } public Integer getId() { return Id; } public Comune setId(Integer value) { this.Id = value; return this; } public String getDenominazione() { return Denominazione; } public Comune setDenominazione(String value) { this.Denominazione = value; return this; } public String getCap() { return CAP; } public Comune setCap(String value) { this.CAP = value; return this; } public String getProvincia() { return Provincia; } public Comune setProvincia(String value) { this.Provincia = value; return this; } public FK_Zona getZona() { return Zona; } public Comune setZona(FK_Zona value) { this.Zona = value; return this; } public Boolean getIsEsclusoDaListe() { return IsEsclusoDaListe; } public Comune setIsEsclusoDaListe(Boolean value) { this.IsEsclusoDaListe = value; return this; } public String getCodiceISTAT() { return CodiceISTAT; } public Comune setCodiceISTAT(String value) { this.CodiceISTAT = value; return this; } public OptionalNullableDouble getDurezzaTotaleAcqua() { return DurezzaTotaleAcqua; } public Comune setDurezzaTotaleAcqua(OptionalNullableDouble value) { this.DurezzaTotaleAcqua = value; return this; } public OptionalNullableInteger getTipoRCEE() { return TipoRCEE; } public Comune setTipoRCEE(OptionalNullableInteger value) { this.TipoRCEE = value; return this; } private static Object responseType = Comune.class; public Object getResponseType() { return responseType; } } public static class FK_Zona extends FK implements IUniqueSigla, IUniqueDescrizione { public String Sigla = null; public String Descrizione = null; public String getSigla() { return Sigla; } public FK_Zona setSigla(String value) { this.Sigla = value; return this; } public String getDescrizione() { return Descrizione; } public FK_Zona setDescrizione(String value) { this.Descrizione = value; return this; } } public static class OptionalNullableDouble extends Optional { } public static class OptionalNullableInteger extends Optional { } public static class FK { public Integer Id = null; public Integer getId() { return Id; } public FK setId(Integer value) { this.Id = value; return this; } } public static interface IUniqueSigla implements IForeignKey { public String Sigla = null; } public static interface IForeignKey { public Integer Id = null; } public static interface IUniqueDescrizione implements IForeignKey { public String Descrizione = null; } public static class Optional { public String Value = null; public String getValue() { return Value; } public Optional setValue(String value) { this.Value = value; return this; } } }