Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AttributeRequest.md
2025-04-01 09:23:12 -04:00

910 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-attribute-request AttributeRequest AttributeRequest AttributeRequest pythonsdk
python
Python
sdk
AttributeRequest
V2025AttributeRequest
/tools/sdk/python/v2025/models/attribute-request
SDK
Software Development Kit
AttributeRequest
V2025AttributeRequest

AttributeRequest

Properties

Name Type Description Notes
name str Attribute name. [optional]
op str Operation to perform on attribute. [optional]
value AttributeRequestValue [optional]
}

Example

from sailpoint.v2025.models.attribute_request import AttributeRequest

attribute_request = AttributeRequest(
name='groups',
op='Add',
value=
)

[Back to top]