Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.44 KB

File metadata and controls

42 lines (35 loc) · 1.44 KB
title accessPackageAnswer resource type
description Represents answers to an accessPackageQuestion that are stored on an accessPackageAssignmentRequest.
author markwahl-msft
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType
ms.date 07/22/2024

accessPackageAnswer resource type

Namespace: microsoft.graph

Represents the answer a requestor provides 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 object.

Properties

Property Type Description
answeredQuestion accessPackageQuestion The question the answer is for.
displayValue String The localized display value shown to the requestor and approvers.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

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