/* Options: Date: 2026-01-27 18:56: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: JsonVpdLicensedRequest.* //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 JsonVpdLicensedResponse extends JsonDto implements IConvertible { bool? IsLicensed; JsonVpdLicensedResponse({this.IsLicensed}); JsonVpdLicensedResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); IsLicensed = json['IsLicensed']; return this; } Map toJson() => super.toJson()..addAll({ 'IsLicensed': IsLicensed }); getTypeName() => "JsonVpdLicensedResponse"; TypeContext? context = _ctx; } class JsonVpdLicensedRequest extends JsonRequestDto implements IReturn, IConvertible, IGet { String? ClientHostName; JsonVpdLicensedRequest({this.ClientHostName}); JsonVpdLicensedRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ClientHostName = json['ClientHostName']; return this; } Map toJson() => super.toJson()..addAll({ 'ClientHostName': ClientHostName }); createResponse() => JsonVpdLicensedResponse(); getResponseTypeName() => "JsonVpdLicensedResponse"; getTypeName() => "JsonVpdLicensedRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'buildmax.org', types: { 'JsonDto': TypeInfo(TypeOf.Class, create:() => JsonDto()), 'JsonRequestDto': TypeInfo(TypeOf.Class, create:() => JsonRequestDto()), 'JsonVpdLicensedResponse': TypeInfo(TypeOf.Class, create:() => JsonVpdLicensedResponse()), 'JsonVpdLicensedRequest': TypeInfo(TypeOf.Class, create:() => JsonVpdLicensedRequest()), });