| GET, POST | /fibuscan/WaehrungsAbfragen |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class WaehrungskurseAbfragenRequest
{
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; }
}
public static class WaehrungskurseAbfragenResponse
{
public HashMap<Date,waehrungskurse> ResultDictionary = null;
public HashMap<Date,waehrungskurse> getResultDictionary() { return ResultDictionary; }
public WaehrungskurseAbfragenResponse setResultDictionary(HashMap<Date,waehrungskurse> 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; }
}
}
Java WaehrungskurseAbfragenRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /fibuscan/WaehrungsAbfragen HTTP/1.1
Host: ws4.fibudata.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<WaehrungskurseAbfragenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<Bis>0001-01-01T00:00:00</Bis>
<Von>0001-01-01T00:00:00</Von>
<Waehrung>String</Waehrung>
</WaehrungskurseAbfragenRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<WaehrungskurseAbfragenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<ResultDictionary xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfdateTimewaehrungskursepVWdAnjX>
<d2p1:Key>0001-01-01T00:00:00</d2p1:Key>
<d2p1:Value xmlns:d4p1="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Models">
<d4p1:PrimaryKey>0</d4p1:PrimaryKey>
<d4p1:_aenderung>0001-01-01T00:00:00</d4p1:_aenderung>
<d4p1:_erstellt>0001-01-01T00:00:00</d4p1:_erstellt>
<d4p1:betrag>0</d4p1:betrag>
<d4p1:datum>0001-01-01T00:00:00</d4p1:datum>
<d4p1:del>0</d4p1:del>
<d4p1:id>0</d4p1:id>
<d4p1:iso4217>String</d4p1:iso4217>
</d2p1:Value>
</d2p1:KeyValueOfdateTimewaehrungskursepVWdAnjX>
</ResultDictionary>
</WaehrungskurseAbfragenResponse>