github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelRegistry.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // RegistryKeyState undocumented
     6  type RegistryKeyState struct {
     7  	// Object is the base model of RegistryKeyState
     8  	Object
     9  	// Hive undocumented
    10  	Hive *RegistryHive `json:"hive,omitempty"`
    11  	// Key undocumented
    12  	Key *string `json:"key,omitempty"`
    13  	// OldKey undocumented
    14  	OldKey *string `json:"oldKey,omitempty"`
    15  	// OldValueData undocumented
    16  	OldValueData *string `json:"oldValueData,omitempty"`
    17  	// OldValueName undocumented
    18  	OldValueName *string `json:"oldValueName,omitempty"`
    19  	// Operation undocumented
    20  	Operation *RegistryOperation `json:"operation,omitempty"`
    21  	// ProcessID undocumented
    22  	ProcessID *int `json:"processId,omitempty"`
    23  	// ValueData undocumented
    24  	ValueData *string `json:"valueData,omitempty"`
    25  	// ValueName undocumented
    26  	ValueName *string `json:"valueName,omitempty"`
    27  	// ValueType undocumented
    28  	ValueType *RegistryValueType `json:"valueType,omitempty"`
    29  }