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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // FeatureRolloutPolicy undocumented
     8  type FeatureRolloutPolicy struct {
     9  	// Entity is the base model of FeatureRolloutPolicy
    10  	Entity
    11  	// DisplayName undocumented
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  	// Description undocumented
    14  	Description *string `json:"description,omitempty"`
    15  	// Feature undocumented
    16  	Feature *StagedFeatureName `json:"feature,omitempty"`
    17  	// IsEnabled undocumented
    18  	IsEnabled *bool `json:"isEnabled,omitempty"`
    19  	// IsAppliedToOrganization undocumented
    20  	IsAppliedToOrganization *bool `json:"isAppliedToOrganization,omitempty"`
    21  	// AppliesTo undocumented
    22  	AppliesTo []DirectoryObject `json:"appliesTo,omitempty"`
    23  }
    24  
    25  // FeatureUsageDetail undocumented
    26  type FeatureUsageDetail struct {
    27  	// Object is the base model of FeatureUsageDetail
    28  	Object
    29  	// FeatureName undocumented
    30  	FeatureName *string `json:"featureName,omitempty"`
    31  	// LicenseRequired undocumented
    32  	LicenseRequired *AzureADLicenseType `json:"licenseRequired,omitempty"`
    33  	// LicenseAssigned undocumented
    34  	LicenseAssigned *AzureADLicenseType `json:"licenseAssigned,omitempty"`
    35  	// LastUsedDateTime undocumented
    36  	LastUsedDateTime *time.Time `json:"lastUsedDateTime,omitempty"`
    37  	// LastConfiguredDateTime undocumented
    38  	LastConfiguredDateTime *time.Time `json:"lastConfiguredDateTime,omitempty"`
    39  }