Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/NestedAggregation.md
2025-04-01 09:23:12 -04:00

909 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
v2025-nested-aggregation NestedAggregation NestedAggregation NestedAggregation pythonsdk
python
Python
sdk
NestedAggregation
V2025NestedAggregation
/tools/sdk/python/v2025/models/nested-aggregation
SDK
Software Development Kit
NestedAggregation
V2025NestedAggregation

NestedAggregation

The nested aggregation object.

Properties

Name Type Description Notes
name str The name of the nested aggregate to be included in the result. [required]
type str The type of the nested object. [required]
}

Example

from sailpoint.v2025.models.nested_aggregation import NestedAggregation

nested_aggregation = NestedAggregation(
name='id',
type='access'
)

[Back to top]