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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // OsVersionCount undocumented
     8  type OsVersionCount struct {
     9  	// Object is the base model of OsVersionCount
    10  	Object
    11  	// OsVersion OS version
    12  	OsVersion *string `json:"osVersion,omitempty"`
    13  	// DeviceCount Count of devices with malware for the OS version
    14  	DeviceCount *int `json:"deviceCount,omitempty"`
    15  	// LastUpdateDateTime The Timestamp of the last update for the device count in UTC
    16  	LastUpdateDateTime *time.Time `json:"lastUpdateDateTime,omitempty"`
    17  }