Skip to main content

Nestedconfig

A NestedConfig

Properties

NameTypeDescriptionNotes
ancestor_idstrThe unique identifier of the ancestor RightSet.[optional]
depthintThe depth level of the configuration.[optional]
parent_idstrThe unique identifier of the parent RightSet.[optional]
children_ids[]strList of unique identifiers for child configurations.[optional]
}

Example

from sailpoint.custom_user_levels.models.nestedconfig import Nestedconfig

nestedconfig = Nestedconfig(
ancestor_id='idn:ui-ancestor-example',
depth=2,
parent_id='idn:ui-parent-example',
children_ids=["idn:ui-child-one-example","idn:ui-child-two-example"]
)

[Back to top]