/* Options: Date: 2026-03-31 23:01:55 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ImportCustomEntityData.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ImportCustomEntityData implements IConvertible, IPost { String? Entitytype; Uint8List? FileData; String? FileType; String? FixedValues; ImportCustomEntityData({this.Entitytype,this.FileData,this.FileType,this.FixedValues}); ImportCustomEntityData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Entitytype = json['Entitytype']; FileData = JsonConverters.fromJson(json['FileData'],'Uint8List',context!); FileType = json['FileType']; FixedValues = json['FixedValues']; return this; } Map toJson() => { 'Entitytype': Entitytype, 'FileData': JsonConverters.toJson(FileData,'Uint8List',context!), 'FileType': FileType, 'FixedValues': FixedValues }; getTypeName() => "ImportCustomEntityData"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'ImportCustomEntityData': TypeInfo(TypeOf.Class, create:() => ImportCustomEntityData()), 'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)), });