/* Options: Date: 2025-07-04 13:16:12 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetNonCorporateIdentityRegistrationprofiles.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class Registrationprofile implements IConvertible { String? ID; String? Name; String? Hint; int? Order; bool? RegisterAutomatically; bool? RegisterInBackground; String? ThumbnailUrl; String? ProgCode; int? VersionControlType; int? WOPlaceLogo; String? WOPrinterBins; bool? SelectAllFiles; Registrationprofile({this.ID,this.Name,this.Hint,this.Order,this.RegisterAutomatically,this.RegisterInBackground,this.ThumbnailUrl,this.ProgCode,this.VersionControlType,this.WOPlaceLogo,this.WOPrinterBins,this.SelectAllFiles}); Registrationprofile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ID = json['ID']; Name = json['Name']; Hint = json['Hint']; Order = json['Order']; RegisterAutomatically = json['RegisterAutomatically']; RegisterInBackground = json['RegisterInBackground']; ThumbnailUrl = json['ThumbnailUrl']; ProgCode = json['ProgCode']; VersionControlType = json['VersionControlType']; WOPlaceLogo = json['WOPlaceLogo']; WOPrinterBins = json['WOPrinterBins']; SelectAllFiles = json['SelectAllFiles']; return this; } Map toJson() => { 'ID': ID, 'Name': Name, 'Hint': Hint, 'Order': Order, 'RegisterAutomatically': RegisterAutomatically, 'RegisterInBackground': RegisterInBackground, 'ThumbnailUrl': ThumbnailUrl, 'ProgCode': ProgCode, 'VersionControlType': VersionControlType, 'WOPlaceLogo': WOPlaceLogo, 'WOPrinterBins': WOPrinterBins, 'SelectAllFiles': SelectAllFiles }; getTypeName() => "Registrationprofile"; TypeContext? context = _ctx; } class GetNonCorporateIdentityRegistrationprofiles implements IReturn>, IConvertible, IGet { List? FileExtensions; bool? OnlyExternalLinkCompatible; String? DocType; GetNonCorporateIdentityRegistrationprofiles({this.FileExtensions,this.OnlyExternalLinkCompatible,this.DocType}); GetNonCorporateIdentityRegistrationprofiles.fromJson(Map json) { fromMap(json); } fromMap(Map json) { FileExtensions = JsonConverters.fromJson(json['FileExtensions'],'List',context!); OnlyExternalLinkCompatible = json['OnlyExternalLinkCompatible']; DocType = json['DocType']; return this; } Map toJson() => { 'FileExtensions': JsonConverters.toJson(FileExtensions,'List',context!), 'OnlyExternalLinkCompatible': OnlyExternalLinkCompatible, 'DocType': DocType }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetNonCorporateIdentityRegistrationprofiles"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'Registrationprofile': TypeInfo(TypeOf.Class, create:() => Registrationprofile()), 'GetNonCorporateIdentityRegistrationprofiles': TypeInfo(TypeOf.Class, create:() => GetNonCorporateIdentityRegistrationprofiles()), });