mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 05:32:01 -08:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
14 lines
539 B
Go
14 lines
539 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// UserExperienceAnalyticsMetric The user experience analytics metric contains the score and units of a metric of a user experience anlaytics category.
|
|
type UserExperienceAnalyticsMetric struct {
|
|
// Entity is the base model of UserExperienceAnalyticsMetric
|
|
Entity
|
|
// Value The value of the user experience analytics metric.
|
|
Value *float64 `json:"value,omitempty"`
|
|
// Unit The unit of the user experience analytics metric.
|
|
Unit *string `json:"unit,omitempty"`
|
|
}
|