Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/FeatureValueDto.md
2025-04-01 09:23:12 -04:00

971 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-feature-value-dto FeatureValueDto FeatureValueDto FeatureValueDto pythonsdk
python
Python
sdk
FeatureValueDto
V2025FeatureValueDto
/tools/sdk/python/v2025/models/feature-value-dto
SDK
Software Development Kit
FeatureValueDto
V2025FeatureValueDto

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
)

[Back to top]