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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // AzureADFeatureUsage undocumented
     8  type AzureADFeatureUsage struct {
     9  	// Entity is the base model of AzureADFeatureUsage
    10  	Entity
    11  	// SnapshotDateTime undocumented
    12  	SnapshotDateTime *time.Time `json:"snapshotDateTime,omitempty"`
    13  	// FeatureName undocumented
    14  	FeatureName *string `json:"featureName,omitempty"`
    15  	// Usage undocumented
    16  	Usage *int `json:"usage,omitempty"`
    17  }
    18  
    19  // AzureADLicenseUsage undocumented
    20  type AzureADLicenseUsage struct {
    21  	// Entity is the base model of AzureADLicenseUsage
    22  	Entity
    23  	// SnapshotDateTime undocumented
    24  	SnapshotDateTime *time.Time `json:"snapshotDateTime,omitempty"`
    25  	// LicenseInfoDetails undocumented
    26  	LicenseInfoDetails []LicenseInfoDetail `json:"licenseInfoDetails,omitempty"`
    27  }
    28  
    29  // AzureADUserFeatureUsage undocumented
    30  type AzureADUserFeatureUsage struct {
    31  	// Entity is the base model of AzureADUserFeatureUsage
    32  	Entity
    33  	// LastUpdatedDateTime undocumented
    34  	LastUpdatedDateTime *time.Time `json:"lastUpdatedDateTime,omitempty"`
    35  	// UserID undocumented
    36  	UserID *string `json:"userId,omitempty"`
    37  	// UserDisplayName undocumented
    38  	UserDisplayName *string `json:"userDisplayName,omitempty"`
    39  	// UserPrincipalName undocumented
    40  	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
    41  	// LicenseRecommended undocumented
    42  	LicenseRecommended *AzureADLicenseType `json:"licenseRecommended,omitempty"`
    43  	// LicenseAssigned undocumented
    44  	LicenseAssigned *AzureADLicenseType `json:"licenseAssigned,omitempty"`
    45  	// FeatureUsageDetails undocumented
    46  	FeatureUsageDetails []FeatureUsageDetail `json:"featureUsageDetails,omitempty"`
    47  }
    48  
    49  // AzureADWindowsAutopilotDeploymentProfile Windows Autopilot Deployment Profile
    50  type AzureADWindowsAutopilotDeploymentProfile struct {
    51  	// WindowsAutopilotDeploymentProfile is the base model of AzureADWindowsAutopilotDeploymentProfile
    52  	WindowsAutopilotDeploymentProfile
    53  }