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.search.models.nestedaggregation import Nestedaggregation

nestedaggregation = Nestedaggregation(
name='id',
type='access'
)

[Back to top]