Skip to main content

Featurevaluedto

Properties

NameTypeDescriptionNotes
featurestrThe type of feature[optional]
numeratorintThe number of identities that have access to the feature[optional]
denominatorintThe number of identities with the corresponding feature[optional]
}

Example

from sailpoint.iai_recommendations.models.featurevaluedto import Featurevaluedto

featurevaluedto = Featurevaluedto(
feature='department',
numerator=14,
denominator=14
)

[Back to top]