starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-password-digit-token-reset
title: PasswordDigitTokenReset
pagination_label: PasswordDigitTokenReset
sidebar_label: PasswordDigitTokenReset
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PasswordDigitTokenReset', 'BetaPasswordDigitTokenReset']
slug: /tools/sdk/python/beta/models/password-digit-token-reset
tags: ['SDK', 'Software Development Kit', 'PasswordDigitTokenReset', 'BetaPasswordDigitTokenReset']
---
# PasswordDigitTokenReset
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**user_id** | **str** | The uid of the user requested for digit token | [required]
**length** | **int** | The length of digit token. It should be from 6 to 18, inclusive. The default value is 6. | [optional]
**duration_minutes** | **int** | The time to live for the digit token in minutes. The default value is 5 minutes. | [optional]
}
## Example
```python
from sailpoint.beta.models.password_digit_token_reset import PasswordDigitTokenReset
password_digit_token_reset = PasswordDigitTokenReset(
user_id='Abby.Smith',
length=8,
duration_minutes=5
)
```
[[Back to top]](#)