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