/* Options: Date: 2026-06-01 14:58:47 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PageKeyRequest.* //ExcludeTypes: //DefaultImports: */ export class TemplateKeyResponse { public Keys: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/markup/keys/{StrategyKey}", "GET") export class PageKeyRequest implements IReturn { public StrategyKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PageKeyRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new TemplateKeyResponse(); } }