-
Notifications
You must be signed in to change notification settings - Fork 13
/
developmentactivityaggregateparam.go
33 lines (23 loc) · 1.26 KB
/
developmentactivityaggregateparam.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
package platformclientv2
import (
"encoding/json"
"strconv"
"strings"
)
// Developmentactivityaggregateparam
type Developmentactivityaggregateparam struct {
// Interval - Specifies the range of due dates to be used for filtering. Milliseconds will be truncated. A maximum of 1 year can be specified in the range. End date is not inclusive. Intervals are represented as an ISO-8601 string. For example: YYYY-MM-DDThh:mm:ss/YYYY-MM-DDThh:mm:ss
Interval *string `json:"interval,omitempty"`
// Metrics - The list of metrics to be returned. If omitted, all metrics are returned.
Metrics *[]string `json:"metrics,omitempty"`
// GroupBy - Specifies if the aggregated data is combined into a single set of metrics (groupBy is empty or not specified), or contains an element per attendeeId (groupBy is \"attendeeId\")
GroupBy *[]string `json:"groupBy,omitempty"`
// Filter - The filter applied to the data. This is ANDed with the interval parameter.
Filter *Developmentactivityaggregatequeryrequestfilter `json:"filter,omitempty"`
}
// String returns a JSON representation of the model
func (o *Developmentactivityaggregateparam) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}