| title | accessPackageMultipleChoiceQuestion resource type |
|---|---|
| description | Subclass of accessPackageQuestion that has multiple choice as the question's answer format |
| author | markwahl-msft |
| ms.localizationpriority | medium |
| ms.subservice | entra-id-governance |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
A child of accessPackageQuestion that presents multiple options that the requestor must choose an answer from. This is used in the questions property of an accessPackageAssignmentPolicy and inside an accessPackageResourceAttribute of an access package resource.
Inherits from accessPackageQuestion.
| Property | Type | Description |
|---|---|---|
| allowsMultipleSelection | Boolean | Indicates whether requestor can select multiple choices as their answer. |
| choices | accessPackageAnswerChoice collection | List of answer choices. |
| id | String | ID of the question. Inherited from accessPackageQuestion. |
| isRequired | Boolean | Indicates whether the requestor is required to supply an answer or not. Inherited from accessPackageQuestion. |
| sequence | Int32 | Relative position of this question when displaying a list of questions to the requestor. Inherited from accessPackageQuestion. |
| text | accessPackageLocalizedContent | The text of the question to show the requestor. Inherited from accessPackageQuestion. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.accessPackageMultipleChoiceQuestion",
"id": "String (identifier)",
"isRequired": "Boolean",
"text": {
"@odata.type": "microsoft.graph.accessPackageLocalizedContent"
},
"sequence": "Integer",
"choices": [
{
"@odata.type": "microsoft.graph.accessPackageAnswerChoice"
}
],
"allowsMultipleSelection": "Boolean"
}