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.beta.models.feature_value_dto import FeatureValueDto

feature_value_dto = FeatureValueDto(
feature='department',
numerator=14,
denominator=14
)

[Back to top]