Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/Argument.md
2025-02-20 12:59:19 -05:00

840 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-argument Argument Argument Argument pythonsdk
python
Python
sdk
Argument
BetaArgument
/tools/sdk/python/beta/models/argument
SDK
Software Development Kit
Argument
BetaArgument

Argument

Properties

Name Type Description Notes
name str the name of the argument [required]
description str the description of the argument [optional]
type str the programmatic type of the argument [optional]
}

Example

from sailpoint.beta.models.argument import Argument

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

[Back to top]