diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go new file mode 100644 index 00000000..a9f5c006 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go @@ -0,0 +1,21 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// Quota undocumented +type Quota struct { + // Object is the base model of Quota + Object + // Deleted undocumented + Deleted *int `json:"deleted,omitempty"` + // Remaining undocumented + Remaining *int `json:"remaining,omitempty"` + // State undocumented + State *string `json:"state,omitempty"` + // Total undocumented + Total *int `json:"total,omitempty"` + // Used undocumented + Used *int `json:"used,omitempty"` + // StoragePlanInformation undocumented + StoragePlanInformation *StoragePlanInformation `json:"storagePlanInformation,omitempty"` +} |