/* Options: Date: 2026-05-09 21:03:04 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: WaehrungskurseAbfragenRequest.* //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="/fibuscan/WaehrungsAbfragen", Verbs="GET, POST") public static class WaehrungskurseAbfragenRequest implements IReturn { public Date Von = null; public Date Bis = null; public String Waehrung = null; public Date getVon() { return Von; } public WaehrungskurseAbfragenRequest setVon(Date value) { this.Von = value; return this; } public Date getBis() { return Bis; } public WaehrungskurseAbfragenRequest setBis(Date value) { this.Bis = value; return this; } public String getWaehrung() { return Waehrung; } public WaehrungskurseAbfragenRequest setWaehrung(String value) { this.Waehrung = value; return this; } private static Object responseType = WaehrungskurseAbfragenResponse.class; public Object getResponseType() { return responseType; } } public static class WaehrungskurseAbfragenResponse { public HashMap ResultDictionary = null; public HashMap getResultDictionary() { return ResultDictionary; } public WaehrungskurseAbfragenResponse setResultDictionary(HashMap value) { this.ResultDictionary = value; return this; } } public static class waehrungskurse implements IPrimaryKey, IDel, ITableBase { public Long id = null; public String iso4217 = null; public Date datum = null; public BigDecimal betrag = null; public Long del = null; public Date _erstellt = null; public Date _aenderung = null; @Ignore() public Long PrimaryKey = null; public Long getId() { return id; } public waehrungskurse setId(Long value) { this.id = value; return this; } public String getIso4217() { return iso4217; } public waehrungskurse setIso4217(String value) { this.iso4217 = value; return this; } public Date getDatum() { return datum; } public waehrungskurse setDatum(Date value) { this.datum = value; return this; } public BigDecimal getBetrag() { return betrag; } public waehrungskurse setBetrag(BigDecimal value) { this.betrag = value; return this; } public Long getDel() { return del; } public waehrungskurse setDel(Long value) { this.del = value; return this; } public Date getErstellt() { return _erstellt; } public waehrungskurse setErstellt(Date value) { this._erstellt = value; return this; } public Date getAenderung() { return _aenderung; } public waehrungskurse setAenderung(Date value) { this._aenderung = value; return this; } public Long getPrimaryKey() { return PrimaryKey; } public waehrungskurse setPrimaryKey(Long value) { this.PrimaryKey = value; return this; } } public static interface IPrimaryKey { public Long PrimaryKey = null; } public static interface IDel { public Long del = null; } public static interface ITableBase { public Long id = null; public Date _erstellt = null; public Date _aenderung = null; } }