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

761 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-source-code SourceCode SourceCode SourceCode pythonsdk
python
Python
sdk
SourceCode
V2025SourceCode
/tools/sdk/python/v2025/models/source-code
SDK
Software Development Kit
SourceCode
V2025SourceCode

SourceCode

SourceCode

Properties

Name Type Description Notes
version str the version of the code [required]
script str The code [required]
}

Example

from sailpoint.v2025.models.source_code import SourceCode

source_code = SourceCode(
version='1.0',
script='return "Mr. " + firstName;'
)

[Back to top]