summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go
new file mode 100644
index 00000000..51718cd8
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go
@@ -0,0 +1,19 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "time"
+
+// Dimension undocumented
+type Dimension struct {
+ // Entity is the base model of Dimension
+ Entity
+ // Code undocumented
+ Code *string `json:"code,omitempty"`
+ // DisplayName undocumented
+ DisplayName *string `json:"displayName,omitempty"`
+ // LastModifiedDateTime undocumented
+ LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
+ // DimensionValues undocumented
+ DimensionValues []DimensionValue `json:"dimensionValues,omitempty"`
+}