/* Options: Date: 2026-06-13 12:59:48 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: GetMetaRiskRequest.* //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/metarisk", Verbs="GET") public static class GetMetaRiskRequest implements IReturn, IGet { private static Object responseType = GetMetaRiskResponse.class; public Object getResponseType() { return responseType; } } public static class GetMetaRiskResponse { public ArrayList metaRisks = null; public ArrayList metaRiskGroups = null; public ArrayList getMetaRisks() { return metaRisks; } public GetMetaRiskResponse setMetaRisks(ArrayList value) { this.metaRisks = value; return this; } public ArrayList getMetaRiskGroups() { return metaRiskGroups; } public GetMetaRiskResponse setMetaRiskGroups(ArrayList value) { this.metaRiskGroups = value; return this; } } public static class MetaRiskIdentifier { public Integer id = null; public String name = null; public Integer getId() { return id; } public MetaRiskIdentifier setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public MetaRiskIdentifier setName(String value) { this.name = value; return this; } } public static class MetaRiskGroupMapping { public Integer id = null; public String name = null; public ArrayList metaRisks = null; public Integer getId() { return id; } public MetaRiskGroupMapping setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public MetaRiskGroupMapping setName(String value) { this.name = value; return this; } public ArrayList getMetaRisks() { return metaRisks; } public MetaRiskGroupMapping setMetaRisks(ArrayList value) { this.metaRisks = value; return this; } } }