accessPackageAnswer resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

The complex type of a requestor's provided answer to an accessPackageQuestion. The actual answer will be a subtype of this complex type, either accessPackageAnswerString or accessPackageAnswerChoice. These answers will be stored on an accessPackageAssignmentRequest.

Properties

Property Type Description
answeredQuestion accessPackageQuestion The question the answer is for. Required and Read-only.
displayValue String The display value of the answer. Required.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.accessPackageAnswer",
  "displayValue": "String",
  "answeredQuestion": {
    "@odata.type": "microsoft.graph.accessPackageQuestion"
  }
}