/* Options: Date: 2026-06-13 13:31:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SetShouldCachePerspective.* //ExcludeTypes: //DefaultImports: */ export interface IPost { } // @Route("/riskstore/maintenance/set-should-cache-perspective", "POST") export class SetShouldCachePerspective implements IPost { /** @description The perspective ids to set the should cache flag */ // @ApiMember(DataType="array", Description="The perspective ids to set the should cache flag", Format="int32", IsRequired=true) public perspectiveIds: number[] = []; /** @description Set to true to force cache reload (event sets etc...) */ // @ApiMember(DataType="boolean", Description="Set to true to force cache reload (event sets etc...)", IsRequired=true) public refreshCache: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SetShouldCachePerspective'; } public getMethod() { return 'POST'; } public createResponse() {} }