mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.1 KiB
1.1 KiB
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-password-digit-token-reset | PasswordDigitTokenReset | PasswordDigitTokenReset | PasswordDigitTokenReset | pythonsdk |
|
/tools/sdk/python/beta/models/password-digit-token-reset |
|
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
from sailpoint.beta.models.password_digit_token_reset import PasswordDigitTokenReset
password_digit_token_reset = PasswordDigitTokenReset(
user_id='Abby.Smith',
length=8,
duration_minutes=5
)