/* Options: Date: 2026-03-31 20:19:03 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCorporateIdentityRegistrationprofiles.* //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; bool? ShowSaveDialog; 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,this.ShowSaveDialog}); 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']; ShowSaveDialog = json['ShowSaveDialog']; 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, 'ShowSaveDialog': ShowSaveDialog }; getTypeName() => "Registrationprofile"; TypeContext? context = _ctx; } class GetCorporateIdentityRegistrationprofiles implements IReturn>, IConvertible, IGet { String? TemplateProgCode; bool? RegisterAutomatically; GetCorporateIdentityRegistrationprofiles({this.TemplateProgCode,this.RegisterAutomatically}); GetCorporateIdentityRegistrationprofiles.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TemplateProgCode = json['TemplateProgCode']; RegisterAutomatically = json['RegisterAutomatically']; return this; } Map toJson() => { 'TemplateProgCode': TemplateProgCode, 'RegisterAutomatically': RegisterAutomatically }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetCorporateIdentityRegistrationprofiles"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dogw.klokgroep.nl', types: { 'Registrationprofile': TypeInfo(TypeOf.Class, create:() => Registrationprofile()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetCorporateIdentityRegistrationprofiles': TypeInfo(TypeOf.Class, create:() => GetCorporateIdentityRegistrationprofiles()), });