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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // UnsupportedDeviceConfiguration UnsupportedDeviceConfiguration is used when an entity cannot be mapped to another model-compliant subtype of deviceConfiguration.
     6  type UnsupportedDeviceConfiguration struct {
     7  	// DeviceConfiguration is the base model of UnsupportedDeviceConfiguration
     8  	DeviceConfiguration
     9  	// OriginalEntityTypeName The type of entity that would be returned otherwise.
    10  	OriginalEntityTypeName *string `json:"originalEntityTypeName,omitempty"`
    11  	// Details Details describing why the entity is unsupported. This collection can contain a maximum of 1000 elements.
    12  	Details []UnsupportedDeviceConfigurationDetail `json:"details,omitempty"`
    13  }
    14  
    15  // UnsupportedDeviceConfigurationDetail undocumented
    16  type UnsupportedDeviceConfigurationDetail struct {
    17  	// Object is the base model of UnsupportedDeviceConfigurationDetail
    18  	Object
    19  	// Message A message explaining why an entity is unsupported.
    20  	Message *string `json:"message,omitempty"`
    21  	// PropertyName If message is related to a specific property in the original entity, then the name of that property.
    22  	PropertyName *string `json:"propertyName,omitempty"`
    23  }