/* Options: Date: 2025-07-03 22:18:08 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: GetCorporateIdentityRegistrationprofiles.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; 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 GetCorporateIdentityRegistrationprofiles implements IReturn>, IConvertible, IGet { String? TemplateProgCode; GetCorporateIdentityRegistrationprofiles({this.TemplateProgCode}); GetCorporateIdentityRegistrationprofiles.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TemplateProgCode = json['TemplateProgCode']; return this; } Map toJson() => { 'TemplateProgCode': TemplateProgCode }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetCorporateIdentityRegistrationprofiles"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'Registrationprofile': TypeInfo(TypeOf.Class, create:() => Registrationprofile()), 'GetCorporateIdentityRegistrationprofiles': TypeInfo(TypeOf.Class, create:() => GetCorporateIdentityRegistrationprofiles()), });