Skip to main content

Argument

Properties

NameTypeDescriptionNotes
namestrthe name of the argument[required]
descriptionstrthe description of the argument[optional]
typestrthe programmatic type of the argument[optional]
}

Example

from sailpoint.v2024.models.argument import Argument

argument = Argument(
name='firstName',
description='the first name of the identity',
type='String'
)

[Back to top]