FIBUdataServiceStack

<back to all web services

WaehrungskurseAbfragenRequest

The following routes are available for this service:
GET, POST/fibuscan/WaehrungsAbfragen
namespace FIBUdataServiceStack.ServiceModel.Messages

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type waehrungskurse() = 
        member val id:Nullable<Int64> = new Nullable<Int64>() with get,set
        member val iso4217:String = null with get,set
        member val datum:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val betrag:Nullable<Decimal> = new Nullable<Decimal>() with get,set
        member val del:Nullable<Int64> = new Nullable<Int64>() with get,set
        member val _erstellt:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val _aenderung:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        [<Ignore>]
        member val PrimaryKey:Nullable<Int64> = new Nullable<Int64>() with get,set

    [<AllowNullLiteral>]
    type WaehrungskurseAbfragenResponse() = 
        member val ResultDictionary:Dictionary<DateTime, waehrungskurse> = new Dictionary<DateTime, waehrungskurse>() with get,set

    [<AllowNullLiteral>]
    type WaehrungskurseAbfragenRequest() = 
        member val Von:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val Bis:Nullable<DateTime> = new Nullable<DateTime>() with get,set
        member val Waehrung:String = null with get,set

F# WaehrungskurseAbfragenRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + 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>