update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: feature-value-dto
title: FeatureValueDto
pagination_label: FeatureValueDto
sidebar_label: FeatureValueDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FeatureValueDto']
slug: /tools/sdk/powershell/beta/models/feature-value-dto
tags: ['SDK', 'Software Development Kit', 'FeatureValueDto']
---
# FeatureValueDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Feature** | Pointer to **String** | The type of feature | [optional]
**Numerator** | Pointer to **Int32** | The number of identities that have access to the feature | [optional]
**Denominator** | Pointer to **Int32** | The number of identities with the corresponding feature | [optional]
## Examples
- Prepare the resource
```powershell
$FeatureValueDto = Initialize-PSSailpoint.BetaFeatureValueDto -Feature department `
-Numerator 14 `
-Denominator 14
```
- Convert the resource to JSON
```powershell
$FeatureValueDto | ConvertTo-JSON
```
[[Back to top]](#)