/* Options: Date: 2026-01-27 18:53:41 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: JsonIsUserBasedLicenseRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class JsonDto implements IConvertible { JsonDto(); JsonDto.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "JsonDto"; TypeContext? context = _ctx; } class JsonRequestDto extends JsonDto implements IConvertible { String? ClientCode; String? ClientRegistrationCode; String? Token; JsonRequestDto({this.ClientCode,this.ClientRegistrationCode,this.Token}); JsonRequestDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ClientCode = json['ClientCode']; ClientRegistrationCode = json['ClientRegistrationCode']; Token = json['Token']; return this; } Map toJson() => super.toJson()..addAll({ 'ClientCode': ClientCode, 'ClientRegistrationCode': ClientRegistrationCode, 'Token': Token }); getTypeName() => "JsonRequestDto"; TypeContext? context = _ctx; } class JsonIsUserBasedLicenseResponse implements IConvertible { bool? IsUserBased; bool? EnableAivikaCaptureSso; JsonIsUserBasedLicenseResponse({this.IsUserBased,this.EnableAivikaCaptureSso}); JsonIsUserBasedLicenseResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IsUserBased = json['IsUserBased']; EnableAivikaCaptureSso = json['EnableAivikaCaptureSso']; return this; } Map toJson() => { 'IsUserBased': IsUserBased, 'EnableAivikaCaptureSso': EnableAivikaCaptureSso }; getTypeName() => "JsonIsUserBasedLicenseResponse"; TypeContext? context = _ctx; } class JsonIsUserBasedLicenseRequest extends JsonRequestDto implements IReturn, IConvertible, IGet { JsonIsUserBasedLicenseRequest(); JsonIsUserBasedLicenseRequest.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => JsonIsUserBasedLicenseResponse(); getResponseTypeName() => "JsonIsUserBasedLicenseResponse"; getTypeName() => "JsonIsUserBasedLicenseRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'buildmax.org', types: { 'JsonDto': TypeInfo(TypeOf.Class, create:() => JsonDto()), 'JsonRequestDto': TypeInfo(TypeOf.Class, create:() => JsonRequestDto()), 'JsonIsUserBasedLicenseResponse': TypeInfo(TypeOf.Class, create:() => JsonIsUserBasedLicenseResponse()), 'JsonIsUserBasedLicenseRequest': TypeInfo(TypeOf.Class, create:() => JsonIsUserBasedLicenseRequest()), });