Skip to main content

Sourcecode

SourceCode

Properties

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

Example

from sailpoint.connector_rule_management.models.sourcecode import Sourcecode

sourcecode = Sourcecode(
version='1.0',
script='return "Mr. " + firstName;'
)

[Back to top]