/* Options: Date: 2025-08-05 02:43:36 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TemplateKeyRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class TemplateKeyResponse implements IConvertible { List? Keys; TemplateKeyResponse({this.Keys}); TemplateKeyResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Keys = JsonConverters.fromJson(json['Keys'],'List',context!); return this; } Map toJson() => { 'Keys': JsonConverters.toJson(Keys,'List',context!) }; getTypeName() => "TemplateKeyResponse"; TypeContext? context = _ctx; } // @Route("/markup/template-keys/{StrategyKey}", "GET") class TemplateKeyRequest implements IReturn, IConvertible, IGet { String? StrategyKey; TemplateKeyRequest({this.StrategyKey}); TemplateKeyRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { StrategyKey = json['StrategyKey']; return this; } Map toJson() => { 'StrategyKey': StrategyKey }; createResponse() => TemplateKeyResponse(); getResponseTypeName() => "TemplateKeyResponse"; getTypeName() => "TemplateKeyRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'TemplateKeyResponse': TypeInfo(TypeOf.Class, create:() => TemplateKeyResponse()), 'TemplateKeyRequest': TypeInfo(TypeOf.Class, create:() => TemplateKeyRequest()), });