/* Options: Date: 2026-05-09 17:34:39 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SchnittstelleAuthUrlErstellenRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class SchnittstelleAuthUrlErstellenResponse implements IConvertible { String? error; bool? result; String? AuthUrl; SchnittstelleAuthUrlErstellenResponse({this.error,this.result,this.AuthUrl}); SchnittstelleAuthUrlErstellenResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { error = json['error']; result = json['result']; AuthUrl = json['AuthUrl']; return this; } Map toJson() => { 'error': error, 'result': result, 'AuthUrl': AuthUrl }; getTypeName() => "SchnittstelleAuthUrlErstellenResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/Onlinehandel/SchnittstelleAuthUrlErstellen", "GET, POST") class SchnittstelleAuthUrlErstellenRequest implements IReturn, IConvertible, IPost { int? Schnittstelle; int? BankID; String? ShopUrl; String? request_type; String? AusgangsrechnungKontonummer; SchnittstelleAuthUrlErstellenRequest({this.Schnittstelle,this.BankID,this.ShopUrl,this.request_type,this.AusgangsrechnungKontonummer}); SchnittstelleAuthUrlErstellenRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Schnittstelle = json['Schnittstelle']; BankID = json['BankID']; ShopUrl = json['ShopUrl']; request_type = json['request_type']; AusgangsrechnungKontonummer = json['AusgangsrechnungKontonummer']; return this; } Map toJson() => { 'Schnittstelle': Schnittstelle, 'BankID': BankID, 'ShopUrl': ShopUrl, 'request_type': request_type, 'AusgangsrechnungKontonummer': AusgangsrechnungKontonummer }; createResponse() => SchnittstelleAuthUrlErstellenResponse(); getResponseTypeName() => "SchnittstelleAuthUrlErstellenResponse"; getTypeName() => "SchnittstelleAuthUrlErstellenRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'SchnittstelleAuthUrlErstellenResponse': TypeInfo(TypeOf.Class, create:() => SchnittstelleAuthUrlErstellenResponse()), 'SchnittstelleAuthUrlErstellenRequest': TypeInfo(TypeOf.Class, create:() => SchnittstelleAuthUrlErstellenRequest()), });