Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/AttributeRequest.md
2025-02-20 12:59:19 -05:00

880 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 str Value of attribute. [optional]
}

Example

from sailpoint.v3.models.attribute_request import AttributeRequest

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

[Back to top]