Skip to main content

PasswordOrgConfig

Properties

NameTypeDescriptionNotes
custom_instructions_enabledboolIndicator whether custom password instructions feature is enabled. The default value is false.[optional] [default to False]
digit_token_enabledboolIndicator whether "digit token" feature is enabled. The default value is false.[optional] [default to False]
digit_token_duration_minutesintThe duration of "digit token" in minutes. The default value is 5.[optional] [default to 5]
digit_token_lengthintThe length of "digit token". The default value is 6.[optional] [default to 6]
}

Example

from sailpoint.v2024.models.password_org_config import PasswordOrgConfig

password_org_config = PasswordOrgConfig(
custom_instructions_enabled=True,
digit_token_enabled=True,
digit_token_duration_minutes=10,
digit_token_length=9
)

[Back to top]