FeatureValueDto
Properties
| Name | Type | Description | Notes | 
|---|---|---|---|
| feature | str | The type of feature | [optional] | 
| numerator | int | The number of identities that have access to the feature | [optional] | 
| denominator | int | The number of identities with the corresponding feature | [optional] | 
| } | 
Example
from sailpoint.v2025.models.feature_value_dto import FeatureValueDto
feature_value_dto = FeatureValueDto(
feature='department',
numerator=14,
denominator=14
)