Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/AttributeRequest.md
2025-03-10 11:34:32 -04:00

888 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
attribute-request AttributeRequest AttributeRequest AttributeRequest pythonsdk
python
Python
sdk
AttributeRequest
AttributeRequest
/tools/sdk/python/v3/models/attribute-request
SDK
Software Development Kit
AttributeRequest
AttributeRequest

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.v3.models.attribute_request import AttributeRequest

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

[Back to top]