/* Options: Date: 2026-06-13 13:10:37 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SetShouldCachePerspective.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/riskstore/maintenance/set-should-cache-perspective", Verbs="POST") public static class SetShouldCachePerspective implements IPost { /** * 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 ArrayList perspectiveIds = new ArrayList(); /** * 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 Boolean refreshCache = null; public ArrayList getPerspectiveIds() { return perspectiveIds; } public SetShouldCachePerspective setPerspectiveIds(ArrayList value) { this.perspectiveIds = value; return this; } public Boolean isRefreshCache() { return refreshCache; } public SetShouldCachePerspective setRefreshCache(Boolean value) { this.refreshCache = value; return this; } } }