Skip to main content

NestedAggregation

The nested aggregation object.

Properties

NameTypeDescriptionNotes
namestrThe name of the nested aggregate to be included in the result.[required]
typestrThe 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]