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

1.2 KiB

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-request-on-behalf-of-config RequestOnBehalfOfConfig RequestOnBehalfOfConfig RequestOnBehalfOfConfig pythonsdk
python
Python
sdk
RequestOnBehalfOfConfig
V2025RequestOnBehalfOfConfig
/tools/sdk/python/v2025/models/request-on-behalf-of-config
SDK
Software Development Kit
RequestOnBehalfOfConfig
V2025RequestOnBehalfOfConfig

RequestOnBehalfOfConfig

Properties

Name Type Description Notes
allow_request_on_behalf_of_anyone_by_anyone bool If this is true, anyone can request access for anyone. [optional] [default to False]
allow_request_on_behalf_of_employee_by_manager bool If this is true, a manager can request access for his or her direct reports. [optional] [default to False]
}

Example

from sailpoint.v2025.models.request_on_behalf_of_config import RequestOnBehalfOfConfig

request_on_behalf_of_config = RequestOnBehalfOfConfig(
allow_request_on_behalf_of_anyone_by_anyone=True,
allow_request_on_behalf_of_employee_by_manager=True
)

[Back to top]