github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelInsight.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // InsightIdentity undocumented
     6  type InsightIdentity struct {
     7  	// Object is the base model of InsightIdentity
     8  	Object
     9  	// DisplayName undocumented
    10  	DisplayName *string `json:"displayName,omitempty"`
    11  	// ID undocumented
    12  	ID *string `json:"id,omitempty"`
    13  	// Address undocumented
    14  	Address *string `json:"address,omitempty"`
    15  }
    16  
    17  // InsightValueDouble undocumented
    18  type InsightValueDouble struct {
    19  	// UserExperienceAnalyticsInsightValue is the base model of InsightValueDouble
    20  	UserExperienceAnalyticsInsightValue
    21  	// Value undocumented
    22  	Value *float64 `json:"value,omitempty"`
    23  }
    24  
    25  // InsightValueInt undocumented
    26  type InsightValueInt struct {
    27  	// UserExperienceAnalyticsInsightValue is the base model of InsightValueInt
    28  	UserExperienceAnalyticsInsightValue
    29  	// Value undocumented
    30  	Value *int `json:"value,omitempty"`
    31  }