Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/FeatureValueDto.md
2025-02-20 12:59:19 -05:00

966 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
beta-feature-value-dto FeatureValueDto FeatureValueDto FeatureValueDto pythonsdk
python
Python
sdk
FeatureValueDto
BetaFeatureValueDto
/tools/sdk/python/beta/models/feature-value-dto
SDK
Software Development Kit
FeatureValueDto
BetaFeatureValueDto

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

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

[Back to top]