/* Options: Date: 2026-05-09 17:13:34 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: WaehrungenSpeichernRequest.* //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/Onlinehandel/WaehrungenSpeichern", Verbs="GET, POST") public static class WaehrungenSpeichernRequest implements IReturn { public ArrayList Waehrungen = null; public Long bankid = null; public ArrayList getWaehrungen() { return Waehrungen; } public WaehrungenSpeichernRequest setWaehrungen(ArrayList value) { this.Waehrungen = value; return this; } public Long getBankid() { return bankid; } public WaehrungenSpeichernRequest setBankid(Long value) { this.bankid = value; return this; } private static Object responseType = WaehrungenSpeichernResponse.class; public Object getResponseType() { return responseType; } } public static class WaehrungenSpeichernResponse { public String error = null; public Boolean result = null; public String getError() { return error; } public WaehrungenSpeichernResponse setError(String value) { this.error = value; return this; } public Boolean isResult() { return result; } public WaehrungenSpeichernResponse setResult(Boolean value) { this.result = value; return this; } } public static class NameValue { public String name = null; public String value = null; public Date _erstellt = null; public Date _aenderung = null; public String getName() { return name; } public NameValue setName(String value) { this.name = value; return this; } public String getValue() { return value; } public NameValue setValue(String value) { this.value = value; return this; } public Date getErstellt() { return _erstellt; } public NameValue setErstellt(Date value) { this._erstellt = value; return this; } public Date getAenderung() { return _aenderung; } public NameValue setAenderung(Date value) { this._aenderung = value; return this; } } }