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

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

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.v3.models.nested_aggregation import NestedAggregation

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

[Back to top]