1// Code generated by msgraph.go/gen DO NOT EDIT.
2
3package msgraph
4
5import "time"
6
7// Dimension undocumented
8type Dimension struct {
9	// Entity is the base model of Dimension
10	Entity
11	// Code undocumented
12	Code *string `json:"code,omitempty"`
13	// DisplayName undocumented
14	DisplayName *string `json:"displayName,omitempty"`
15	// LastModifiedDateTime undocumented
16	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
17	// DimensionValues undocumented
18	DimensionValues []DimensionValue `json:"dimensionValues,omitempty"`
19}
20
21// DimensionValue undocumented
22type DimensionValue struct {
23	// Entity is the base model of DimensionValue
24	Entity
25	// Code undocumented
26	Code *string `json:"code,omitempty"`
27	// DisplayName undocumented
28	DisplayName *string `json:"displayName,omitempty"`
29	// LastModifiedDateTime undocumented
30	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
31}
32