| GET, POST | /fibuscan/DokumentDownloadBeiBNR |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class dokumente implements IPrimaryKey, IMandnr, IDel, ITableBaseErstelltAenderung, IConvertible
{
int? ID;
DateTime? _erstellt;
DateTime? _aenderung;
int? mandant;
int? Datenindex;
String? Dateiname;
String? zip_dateiname;
String? SubPfad;
int? Upload;
int? DownloadExt;
DateTime? Datum;
String? Link;
String? anlagen;
String? metadaten;
int? dateityp;
int? del;
String? hash;
String? guid;
// @Ignore()
String? server_hash;
// @Ignore()
int? PrimaryKey;
dokumente({this.ID,this._erstellt,this._aenderung,this.mandant,this.Datenindex,this.Dateiname,this.zip_dateiname,this.SubPfad,this.Upload,this.DownloadExt,this.Datum,this.Link,this.anlagen,this.metadaten,this.dateityp,this.del,this.hash,this.guid,this.server_hash,this.PrimaryKey});
dokumente.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ID = json['ID'];
_erstellt = JsonConverters.fromJson(json['_erstellt'],'DateTime',context!);
_aenderung = JsonConverters.fromJson(json['_aenderung'],'DateTime',context!);
mandant = json['mandant'];
Datenindex = json['Datenindex'];
Dateiname = json['Dateiname'];
zip_dateiname = json['zip_dateiname'];
SubPfad = json['SubPfad'];
Upload = json['Upload'];
DownloadExt = json['DownloadExt'];
Datum = JsonConverters.fromJson(json['Datum'],'DateTime',context!);
Link = json['Link'];
anlagen = json['anlagen'];
metadaten = json['metadaten'];
dateityp = json['dateityp'];
del = json['del'];
hash = json['hash'];
guid = json['guid'];
server_hash = json['server_hash'];
PrimaryKey = json['PrimaryKey'];
return this;
}
Map<String, dynamic> toJson() => {
'ID': ID,
'_erstellt': JsonConverters.toJson(_erstellt,'DateTime',context!),
'_aenderung': JsonConverters.toJson(_aenderung,'DateTime',context!),
'mandant': mandant,
'Datenindex': Datenindex,
'Dateiname': Dateiname,
'zip_dateiname': zip_dateiname,
'SubPfad': SubPfad,
'Upload': Upload,
'DownloadExt': DownloadExt,
'Datum': JsonConverters.toJson(Datum,'DateTime',context!),
'Link': Link,
'anlagen': anlagen,
'metadaten': metadaten,
'dateityp': dateityp,
'del': del,
'hash': hash,
'guid': guid,
'server_hash': server_hash,
'PrimaryKey': PrimaryKey
};
getTypeName() => "dokumente";
TypeContext? context = _ctx;
}
class BeraterDokumentDownloadListeResponse implements IConvertible
{
List<dokumente>? dokument;
BeraterDokumentDownloadListeResponse({this.dokument});
BeraterDokumentDownloadListeResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
dokument = JsonConverters.fromJson(json['dokument'],'List<dokumente>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'dokument': JsonConverters.toJson(dokument,'List<dokumente>',context!)
};
getTypeName() => "BeraterDokumentDownloadListeResponse";
TypeContext? context = _ctx;
}
class BeraterDokumentDownloadListeRequest implements IConvertible
{
int? Mandnr;
int? Bnr;
BeraterDokumentDownloadListeRequest({this.Mandnr,this.Bnr});
BeraterDokumentDownloadListeRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Mandnr = json['Mandnr'];
Bnr = json['Bnr'];
return this;
}
Map<String, dynamic> toJson() => {
'Mandnr': Mandnr,
'Bnr': Bnr
};
getTypeName() => "BeraterDokumentDownloadListeRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: <String, TypeInfo> {
'dokumente': TypeInfo(TypeOf.Class, create:() => dokumente()),
'BeraterDokumentDownloadListeResponse': TypeInfo(TypeOf.Class, create:() => BeraterDokumentDownloadListeResponse()),
'List<dokumente>': TypeInfo(TypeOf.Class, create:() => <dokumente>[]),
'BeraterDokumentDownloadListeRequest': TypeInfo(TypeOf.Class, create:() => BeraterDokumentDownloadListeRequest()),
});
Dart BeraterDokumentDownloadListeRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /fibuscan/DokumentDownloadBeiBNR HTTP/1.1
Host: ws4.fibudata.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Mandnr: 0,
Bnr: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
dokument:
[
{
ID: 0,
_erstellt: 0001-01-01,
_aenderung: 0001-01-01,
mandant: 0,
Datenindex: 0,
Dateiname: String,
zip_dateiname: String,
SubPfad: String,
Upload: 0,
DownloadExt: 0,
Datum: 0001-01-01,
Link: String,
anlagen: String,
metadaten: String,
dateityp: 0,
del: 0,
hash: String,
guid: String,
server_hash: String,
PrimaryKey: 0
}
]
}