/* Options: Date: 2026-05-09 17:13:30 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: OnlinehandelShopifyCheckShopTokenRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class OnlinehandelShopifyCheckShopTokenResponse implements IConvertible { String? error; bool? result; String? mandnr; List? werte; OnlinehandelShopifyCheckShopTokenResponse({this.error,this.result,this.mandnr,this.werte}); OnlinehandelShopifyCheckShopTokenResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { error = json['error']; result = json['result']; mandnr = json['mandnr']; werte = JsonConverters.fromJson(json['werte'],'List',context!); return this; } Map toJson() => { 'error': error, 'result': result, 'mandnr': mandnr, 'werte': JsonConverters.toJson(werte,'List',context!) }; getTypeName() => "OnlinehandelShopifyCheckShopTokenResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/Onlinehandel/shopify/checkShopToken", "GET, POST") class OnlinehandelShopifyCheckShopTokenRequest implements IReturn, IConvertible, IPost { String? token; OnlinehandelShopifyCheckShopTokenRequest({this.token}); OnlinehandelShopifyCheckShopTokenRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { token = json['token']; return this; } Map toJson() => { 'token': token }; createResponse() => OnlinehandelShopifyCheckShopTokenResponse(); getResponseTypeName() => "OnlinehandelShopifyCheckShopTokenResponse"; getTypeName() => "OnlinehandelShopifyCheckShopTokenRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'OnlinehandelShopifyCheckShopTokenResponse': TypeInfo(TypeOf.Class, create:() => OnlinehandelShopifyCheckShopTokenResponse()), 'OnlinehandelShopifyCheckShopTokenRequest': TypeInfo(TypeOf.Class, create:() => OnlinehandelShopifyCheckShopTokenRequest()), });