/* Options: Date: 2026-01-27 18:41:27 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: IsUserBasedLicense.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class IsUserBasedLicenseResponse implements IConvertible { bool? IsUserBased; IsUserBasedLicenseResponse({this.IsUserBased}); IsUserBasedLicenseResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IsUserBased = json['IsUserBased']; return this; } Map toJson() => { 'IsUserBased': IsUserBased }; getTypeName() => "IsUserBasedLicenseResponse"; TypeContext? context = _ctx; } // @Route("/isuserbased") class IsUserBasedLicense implements IReturn, IConvertible, IGet { IsUserBasedLicense(); IsUserBasedLicense.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => IsUserBasedLicenseResponse(); getResponseTypeName() => "IsUserBasedLicenseResponse"; getTypeName() => "IsUserBasedLicense"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'buildmax.org', types: { 'IsUserBasedLicenseResponse': TypeInfo(TypeOf.Class, create:() => IsUserBasedLicenseResponse()), 'IsUserBasedLicense': TypeInfo(TypeOf.Class, create:() => IsUserBasedLicense()), });