removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
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]](#)