| GET, POST | /fibuscan/OnlinehandelLerndatenbank |
|---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class onlinehandel_lerndatenbank(IPrimaryKey, IMandnr, IDel, IBankindex, ITableBase):
id: Optional[int] = None
mandant: Optional[int] = None
del_: Optional[int] = field(metadata=config(field_name='del'), default=None)
guid: Optional[str] = None
bezeichnung: Optional[str] = None
_erstellt: Optional[datetime.datetime] = None
_aenderung: Optional[datetime.datetime] = None
bankindex: Optional[int] = None
dateityp: Optional[int] = None
dateinamensteil: Optional[str] = None
headerart_betrag_spalte: Optional[str] = None
headerart_liste: Optional[str] = None
headerwert_liste: Optional[str] = None
headerart_konto: Optional[str] = None
headerwert_konto: Optional[str] = None
headerart_bs: Optional[str] = None
headerwert_bs: Optional[str] = None
headerart_lkz: Optional[str] = None
headerwert_lkz: Optional[str] = None
headerart_ustid: Optional[str] = None
headerwert_ustid: Optional[str] = None
konto: Optional[str] = None
buchungsschluessel: Optional[str] = None
# @Ignore()
primary_key: Optional[int] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class OnlinehandelLerndatenbankResponse:
liste: Optional[List[onlinehandel_lerndatenbank]] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class OnlinehandelLerndatenbankRequest:
expression: Optional[str] = None
limit: int = 0
Python OnlinehandelLerndatenbankRequest 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/OnlinehandelLerndatenbank HTTP/1.1
Host: ws4.fibudata.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<OnlinehandelLerndatenbankRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<expression>String</expression>
<limit>0</limit>
</OnlinehandelLerndatenbankRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<OnlinehandelLerndatenbankResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<Liste xmlns:d2p1="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Models">
<d2p1:onlinehandel_lerndatenbank>
<d2p1:PrimaryKey>0</d2p1:PrimaryKey>
<d2p1:_aenderung>0001-01-01T00:00:00</d2p1:_aenderung>
<d2p1:_erstellt>0001-01-01T00:00:00</d2p1:_erstellt>
<d2p1:bankindex>0</d2p1:bankindex>
<d2p1:bezeichnung>String</d2p1:bezeichnung>
<d2p1:buchungsschluessel>String</d2p1:buchungsschluessel>
<d2p1:dateinamensteil>String</d2p1:dateinamensteil>
<d2p1:dateityp>0</d2p1:dateityp>
<d2p1:del>0</d2p1:del>
<d2p1:guid>String</d2p1:guid>
<d2p1:headerart_betrag_spalte>String</d2p1:headerart_betrag_spalte>
<d2p1:headerart_bs>String</d2p1:headerart_bs>
<d2p1:headerart_konto>String</d2p1:headerart_konto>
<d2p1:headerart_liste>String</d2p1:headerart_liste>
<d2p1:headerart_lkz>String</d2p1:headerart_lkz>
<d2p1:headerart_ustid>String</d2p1:headerart_ustid>
<d2p1:headerwert_bs>String</d2p1:headerwert_bs>
<d2p1:headerwert_konto>String</d2p1:headerwert_konto>
<d2p1:headerwert_liste>String</d2p1:headerwert_liste>
<d2p1:headerwert_lkz>String</d2p1:headerwert_lkz>
<d2p1:headerwert_ustid>String</d2p1:headerwert_ustid>
<d2p1:id>0</d2p1:id>
<d2p1:konto>String</d2p1:konto>
<d2p1:mandant>0</d2p1:mandant>
</d2p1:onlinehandel_lerndatenbank>
</Liste>
</OnlinehandelLerndatenbankResponse>