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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // EditionUpgradeConfiguration Windows 10 Edition Upgrade configuration.
     6  type EditionUpgradeConfiguration struct {
     7  	// DeviceConfiguration is the base model of EditionUpgradeConfiguration
     8  	DeviceConfiguration
     9  	// LicenseType Edition Upgrade License Type.
    10  	LicenseType *EditionUpgradeLicenseType `json:"licenseType,omitempty"`
    11  	// TargetEdition Edition Upgrade Target Edition.
    12  	TargetEdition *Windows10EditionType `json:"targetEdition,omitempty"`
    13  	// License Edition Upgrade License File Content.
    14  	License *string `json:"license,omitempty"`
    15  	// ProductKey Edition Upgrade Product Key.
    16  	ProductKey *string `json:"productKey,omitempty"`
    17  	// WindowsSMode S mode configuration.
    18  	WindowsSMode *WindowsSModeConfiguration `json:"windowsSMode,omitempty"`
    19  }