-
Notifications
You must be signed in to change notification settings - Fork 0
/
sci_comparisonreport.go
143 lines (130 loc) · 5.49 KB
/
sci_comparisonreport.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package bigdog
// API Version: 1.0.0
import (
"context"
"net/http"
"time"
)
type SCIComparisonReportService struct {
apiClient *SCIClient
}
func NewSCIComparisonReportService(c *SCIClient) *SCIComparisonReportService {
s := new(SCIComparisonReportService)
s.apiClient = c
return s
}
func (ss *SCIService) SCIComparisonReportService() *SCIComparisonReportService {
return NewSCIComparisonReportService(ss.apiClient)
}
// ReportComparisonReport140ComparisionOverview
//
// Comparison Report - Overview
//
// Operation ID: report_ComparisonReport_140_comparisionOverview
// Operation path: /reports/19/sections/140/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCIComparisonReportService) ReportComparisonReport140ComparisionOverview(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportComparisonReport140comparisionOverview200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportComparisonReport140comparisionOverview200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportComparisonReport140ComparisionOverview, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyContentType, headerValueApplicationJSON)
req.Header.Set(headerKeyAccept, "*/*")
req.SetBody(body)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SCIReportComparisonReport140comparisionOverview200ResponseTypeAPIResponse), err
}
// ReportComparisonReport145ComparisionMetric1
//
// Comparison Report - Metric 1 Over Time
//
// Operation ID: report_ComparisonReport_145_comparisionMetric1
// Operation path: /reports/19/sections/145/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCIComparisonReportService) ReportComparisonReport145ComparisionMetric1(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportComparisonReport145comparisionMetric1200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportComparisonReport145comparisionMetric1200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportComparisonReport145ComparisionMetric1, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyContentType, headerValueApplicationJSON)
req.Header.Set(headerKeyAccept, "*/*")
req.SetBody(body)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SCIReportComparisonReport145comparisionMetric1200ResponseTypeAPIResponse), err
}
// ReportComparisonReport146ComparisionMetric2
//
// Comparison Report - Metric 2 Over Time
//
// Operation ID: report_ComparisonReport_146_comparisionMetric2
// Operation path: /reports/19/sections/146/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCIComparisonReportService) ReportComparisonReport146ComparisionMetric2(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportComparisonReport146comparisionMetric2200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportComparisonReport146comparisionMetric2200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportComparisonReport146ComparisionMetric2, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyContentType, headerValueApplicationJSON)
req.Header.Set(headerKeyAccept, "*/*")
req.SetBody(body)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SCIReportComparisonReport146comparisionMetric2200ResponseTypeAPIResponse), err
}
// ReportComparisonReport147ComparisionTable
//
// Comparison Report - Table
//
// Operation ID: report_ComparisonReport_147_comparisionTable
// Operation path: /reports/19/sections/147/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCIComparisonReportService) ReportComparisonReport147ComparisionTable(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportComparisonReport147comparisionTable200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportComparisonReport147comparisionTable200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportComparisonReport147ComparisionTable, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyContentType, headerValueApplicationJSON)
req.Header.Set(headerKeyAccept, "*/*")
req.SetBody(body)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SCIReportComparisonReport147comparisionTable200ResponseTypeAPIResponse), err
}