--- id: v2025-nested-config title: NestedConfig pagination_label: NestedConfig sidebar_label: NestedConfig sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'NestedConfig', 'V2025NestedConfig'] slug: /tools/sdk/python/v2025/models/nested-config tags: ['SDK', 'Software Development Kit', 'NestedConfig', 'V2025NestedConfig'] --- # NestedConfig A NestedConfig ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ancestor_id** | **str** | The unique identifier of the ancestor RightSet. | [optional] **depth** | **int** | The depth level of the configuration. | [optional] **parent_id** | **str** | The unique identifier of the parent RightSet. | [optional] **children_ids** | **[]str** | List of unique identifiers for child configurations. | [optional] } ## Example ```python from sailpoint.v2025.models.nested_config import NestedConfig nested_config = 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]](#)