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

858 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-children Children Children Children pythonsdk
python
Python
sdk
Children
BetaChildren
/tools/sdk/python/beta/models/children
SDK
Software Development Kit
Children
BetaChildren

Children

Properties

Name Type Description Notes
operator str [optional]
attribute str [optional]
value Value [optional]
children str [optional]
}

Example

from sailpoint.beta.models.children import Children

children = Children(
operator='EQUALS',
attribute='country',
value=sailpoint.beta.models.value.Value(
                    type = 'STRING', ),
children=''
)

[Back to top]