/* Options: Date: 2025-09-07 11:42:13 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetLicenseCertificate.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/freelicense/{Ref}/certificate") // @Route("/GetLicenseCertificate", "GET") class GetLicenseCertificate implements IReturn, IConvertible, IGet { String? ref; GetLicenseCertificate({this.ref}); GetLicenseCertificate.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ref = json['ref']; return this; } Map toJson() => { 'ref': ref }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "GetLicenseCertificate"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'account.servicestack.net', types: { 'GetLicenseCertificate': TypeInfo(TypeOf.Class, create:() => GetLicenseCertificate()), });