/* Options: Date: 2026-03-12 08:31:13 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://sharpscript.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EvaluateScript.* //ExcludeTypes: //DefaultImports: */ // @Route("/template/eval") export class EvaluateScript { public template: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EvaluateScript'; } public getMethod() { return 'POST'; } public createResponse() {} }