mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-02-18 16:09:14 +00:00
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"`
|
|
}
|