Skip to main content

SourceCode

SourceCode

Properties

NameTypeDescriptionNotes
versionstrthe version of the code[required]
scriptstrThe code[required]
}

Example

from sailpoint.v2024.models.source_code import SourceCode

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

[Back to top]