diff options
author | Wim <wim@42.be> | 2019-12-26 23:12:28 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-01 22:19:33 +0100 |
commit | 795a8705c3fdc5bf55e83d382e7d3ff233896a0b (patch) | |
tree | 46ac43e487102de7ea21a823a7a7902ae9493f88 /vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go | |
parent | 3af0dc3b3a5bfaffe37770c437427f1e99402405 (diff) | |
download | matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.tar.gz matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.tar.bz2 matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.zip |
Add initial Microsoft Teams support
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go new file mode 100644 index 00000000..13e64b1b --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go @@ -0,0 +1,19 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// SideLoadingKey SideLoadingKey entity is required for Windows 8 and 8.1 devices to intall Line Of Business Apps for a tenant. +type SideLoadingKey struct { + // Entity is the base model of SideLoadingKey + Entity + // Value Side Loading Key Value, it is 5x5 value, seperated by hiphens. + Value *string `json:"value,omitempty"` + // DisplayName Side Loading Key Name displayed to the ITPro Admins. + DisplayName *string `json:"displayName,omitempty"` + // Description Side Loading Key description displayed to the ITPro Admins.. + Description *string `json:"description,omitempty"` + // TotalActivation Side Loading Key Total Activation displayed to the ITPro Admins. + TotalActivation *int `json:"totalActivation,omitempty"` + // LastUpdatedDateTime Side Loading Key Last Updated Date displayed to the ITPro Admins. + LastUpdatedDateTime *string `json:"lastUpdatedDateTime,omitempty"` +} |