-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cell.go
21 lines (20 loc) · 1.13 KB
/
Cell.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package tm1go
type Cell struct {
Ordinal int `json:"Ordinal,omitempty"`
Status string `json:"Status,omitempty"`
Value interface{} `json:"Value,omitempty"`
FormatString string `json:"FormatString,omitempty"`
FormattedValue string `json:"FormattedValue,omitempty"`
Updateable int `json:"Updateable,omitempty"`
RuleDerived bool `json:"RuleDerived,omitempty"`
Annotated bool `json:"Annotated,omitempty"`
Consolidated bool `json:"Consolidated,omitempty"`
NullIntersected bool `json:"NullIntersected,omitempty"`
Language int `json:"Language,omitempty"`
HasPicklist bool `json:"HasPicklist,omitempty"`
PicklistValues []interface{} `json:"PicklistValues,omitempty"`
HasDrillthrough bool `json:"HasDrillthrough,omitempty"`
Members []Member `json:"Members,omitempty"`
DrillthroughScripts []interface{} `json:"DrillthroughScripts,omitempty"`
Annotations []interface{} `json:"Annotations,omitempty"`
}