| GET | /api/riskstore/eventset/metrics | Get event set metrics, used by the Excel Add-On |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class GetEventSetMetricsRequest implements IGet
{
/**
* The analysis id to get the event set metrics for
*/
@ApiMember(DataType="integer", Description="The analysis id to get the event set metrics for", Format="int64", IsRequired=true)
public Long analysisId = null;
public Long getAnalysisId() { return analysisId; }
public GetEventSetMetricsRequest setAnalysisId(Long value) { this.analysisId = value; return this; }
}
public static class GetEventSetMetricsResponse
{
public ArrayList<DealEventSetMetric> dealEventSetMetrics = null;
public ResponseStatus responseStatus = null;
public ArrayList<DealEventSetMetric> getDealEventSetMetrics() { return dealEventSetMetrics; }
public GetEventSetMetricsResponse setDealEventSetMetrics(ArrayList<DealEventSetMetric> value) { this.dealEventSetMetrics = value; return this; }
public ResponseStatus getResponseStatus() { return responseStatus; }
public GetEventSetMetricsResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
}
public static class DealEventSetMetric
{
public String sourceModelSystem = null;
public String modelId = null;
public String sourceEventSetId = null;
public Long eventSetId = null;
public Integer perspectiveId = null;
public Double elAgg = null;
public Double elOcc = null;
public Double pAtt = null;
public Double pExh = null;
public String sourceDealId = null;
public String sourceDealSystem = null;
public Date approvedDateTimeUtc = null;
public String getSourceModelSystem() { return sourceModelSystem; }
public DealEventSetMetric setSourceModelSystem(String value) { this.sourceModelSystem = value; return this; }
public String getModelId() { return modelId; }
public DealEventSetMetric setModelId(String value) { this.modelId = value; return this; }
public String getSourceEventSetId() { return sourceEventSetId; }
public DealEventSetMetric setSourceEventSetId(String value) { this.sourceEventSetId = value; return this; }
public Long getEventSetId() { return eventSetId; }
public DealEventSetMetric setEventSetId(Long value) { this.eventSetId = value; return this; }
public Integer getPerspectiveId() { return perspectiveId; }
public DealEventSetMetric setPerspectiveId(Integer value) { this.perspectiveId = value; return this; }
public Double getElAgg() { return elAgg; }
public DealEventSetMetric setElAgg(Double value) { this.elAgg = value; return this; }
public Double getElOcc() { return elOcc; }
public DealEventSetMetric setElOcc(Double value) { this.elOcc = value; return this; }
public Double getPAtt() { return pAtt; }
public DealEventSetMetric setPAtt(Double value) { this.pAtt = value; return this; }
public Double getPExh() { return pExh; }
public DealEventSetMetric setPExh(Double value) { this.pExh = value; return this; }
public String getSourceDealId() { return sourceDealId; }
public DealEventSetMetric setSourceDealId(String value) { this.sourceDealId = value; return this; }
public String getSourceDealSystem() { return sourceDealSystem; }
public DealEventSetMetric setSourceDealSystem(String value) { this.sourceDealSystem = value; return this; }
public Date getApprovedDateTimeUtc() { return approvedDateTimeUtc; }
public DealEventSetMetric setApprovedDateTimeUtc(Date value) { this.approvedDateTimeUtc = value; return this; }
}
}
Java GetEventSetMetricsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /api/riskstore/eventset/metrics HTTP/1.1 Host: riskstoreng-dev.nephila.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GetEventSetMetricsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nephila.RiskStore.ServiceModel.Requests">
<DealEventSetMetrics xmlns:d2p1="http://schemas.datacontract.org/2004/07/Nephila.RiskStore.ServiceModel.Types">
<d2p1:DealEventSetMetric>
<d2p1:ApprovedDateTimeUtc>0001-01-01T00:00:00</d2p1:ApprovedDateTimeUtc>
<d2p1:ELAgg>0</d2p1:ELAgg>
<d2p1:ELOcc>0</d2p1:ELOcc>
<d2p1:EventSetId>0</d2p1:EventSetId>
<d2p1:ModelId>String</d2p1:ModelId>
<d2p1:PAtt>0</d2p1:PAtt>
<d2p1:PExh>0</d2p1:PExh>
<d2p1:PerspectiveId>0</d2p1:PerspectiveId>
<d2p1:SourceDealId>String</d2p1:SourceDealId>
<d2p1:SourceDealSystem>String</d2p1:SourceDealSystem>
<d2p1:SourceEventSetId>String</d2p1:SourceEventSetId>
<d2p1:SourceModelSystem>String</d2p1:SourceModelSystem>
</d2p1:DealEventSetMetric>
</DealEventSetMetrics>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
</GetEventSetMetricsResponse>