/* Options: Date: 2025-08-05 02:29:21 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: PageKeyRequest.* //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/keys/{StrategyKey}", "GET") class PageKeyRequest implements IReturn, IConvertible, IGet { String? StrategyKey; PageKeyRequest({this.StrategyKey}); PageKeyRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { StrategyKey = json['StrategyKey']; return this; } Map toJson() => { 'StrategyKey': StrategyKey }; createResponse() => TemplateKeyResponse(); getResponseTypeName() => "TemplateKeyResponse"; getTypeName() => "PageKeyRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'TemplateKeyResponse': TypeInfo(TypeOf.Class, create:() => TemplateKeyResponse()), 'PageKeyRequest': TypeInfo(TypeOf.Class, create:() => PageKeyRequest()), });