/* Options: Date: 2026-06-13 13:26:16 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: GetCacheStatusRequest.* //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/cache/status", Verbs="GET") public static class GetCacheStatusRequest implements IReturn, IGet { private static Object responseType = GetCacheStatusRespone.class; public Object getResponseType() { return responseType; } } public static class GetCacheStatusRespone { public Boolean linking = null; public Boolean eventSource = null; public Boolean eventSourcePerspective = null; public Boolean metaRisk = null; public Boolean eventLosses = null; public ResponseStatus responseStatus = null; public Boolean isLinking() { return linking; } public GetCacheStatusRespone setLinking(Boolean value) { this.linking = value; return this; } public Boolean isEventSource() { return eventSource; } public GetCacheStatusRespone setEventSource(Boolean value) { this.eventSource = value; return this; } public Boolean isEventSourcePerspective() { return eventSourcePerspective; } public GetCacheStatusRespone setEventSourcePerspective(Boolean value) { this.eventSourcePerspective = value; return this; } public Boolean isMetaRisk() { return metaRisk; } public GetCacheStatusRespone setMetaRisk(Boolean value) { this.metaRisk = value; return this; } public Boolean isEventLosses() { return eventLosses; } public GetCacheStatusRespone setEventLosses(Boolean value) { this.eventLosses = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetCacheStatusRespone setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }