mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 04:19:37 +00:00
756 B
756 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-source-code | SourceCode | SourceCode | SourceCode | pythonsdk |
|
/tools/sdk/python/beta/models/source-code |
|
SourceCode
SourceCode
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| version | str | the version of the code | [required] |
| script | str | The code | [required] |
| } |
Example
from sailpoint.beta.models.source_code import SourceCode
source_code = SourceCode(
version='1.0',
script='return "Mr. " + firstName;'
)