/* Options: Date: 2025-08-05 01:52:43 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ClearCacheRequest.* //ExcludeTypes: //DefaultImports: */ export class ClearCacheResponse { public Result: boolean; public Message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/cache//clear", "POST") export class ClearCacheRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ClearCacheRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new ClearCacheResponse(); } }