mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user