/* Options: Date: 2026-06-13 13:35:13 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SetShouldCachePerspective.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/riskstore/maintenance/set-should-cache-perspective", "POST") public class SetShouldCachePerspective : IPost, Codable { /** * 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 var perspectiveIds:[Int] = [] /** * 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 var refreshCache:Bool? required public init(){} }