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

782 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-set-icon-request SetIconRequest SetIconRequest SetIconRequest pythonsdk
python
Python
sdk
SetIconRequest
V2025SetIconRequest
/tools/sdk/python/v2025/models/set-icon-request
SDK
Software Development Kit
SetIconRequest
V2025SetIconRequest

SetIconRequest

Properties

Name Type Description Notes
image bytearray file with icon. Allowed mime-types ['image/png', 'image/jpeg'] [required]
}

Example

from sailpoint.v2025.models.set_icon_request import SetIconRequest

set_icon_request = SetIconRequest(
image='\x00\x00\x00\x02'
)

[Back to top]