PowerPoint.Interfaces.SensitivityLabelAbacAttributeData interface
An interface describing the data returned by calling sensitivityLabelAbacAttribute.toJSON().
Properties
| display |
Gets the display name of the ABAC attribute. Add-ins are responsible for presenting localized user-facing UI. |
| display |
Gets the recommended ordering of this ABAC attribute when displayed to a user. |
| is |
Gets whether this ABAC attribute is active. |
| is |
Gets whether more than one value can be selected for this ABAC attribute. |
| values | Gets the values that are selectable for this ABAC attribute. |
Property Details
displayName
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets the display name of the ABAC attribute. Add-ins are responsible for presenting localized user-facing UI.
displayName?: string;
Property Value
string
Remarks
displayOrder
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets the recommended ordering of this ABAC attribute when displayed to a user.
displayOrder?: number;
Property Value
number
Remarks
isActive
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets whether this ABAC attribute is active. true if the attribute is active; otherwise, false.
isActive?: boolean;
Property Value
boolean
Remarks
isMultiValued
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets whether more than one value can be selected for this ABAC attribute. true if multi-select; otherwise, false.
isMultiValued?: boolean;
Property Value
boolean
Remarks
values
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets the values that are selectable for this ABAC attribute.
values?: PowerPoint.SensitivityLabelAbacAttributeValue[];