Name | Type | Description | Notes |
---|---|---|---|
consecutive_characters_length | int | Specify the max length of consecutive characters(abcde...) that can be used in a password. If you set the value of this field to `0`, no restriction will be applied on consecutive characters. If you would like to set this restriction, you can specify a number between `4` and `8` that will define the maximum allowed length for consecutive characters in a password. The maximum allowed length will be `n-1` where `n` refers to the value you provide for this field. For instance, if you provide `4` as the value, there can only be a maximum of `3` consecutive characters in a password(example: abc1x@8fdh). | [optional] |
have_letter | bool | If set to `true`, the password must contain at least 1 letter (such as a,b,c...). | [optional] |
have_number | bool | If set to `true`, the password must contain at least 1 number (such as 1,2,3...). | [optional] |
have_special_character | bool | If set to `true`, the password must have at least 1 special character (!,@,#...). | [optional] |
have_upper_and_lower_characters | bool | If set to `true`, the password must include both uppercase and lowercase characters. | [optional] |
length | int | The minimum length that the meeting/webinar password needs to have. | [optional] |
only_allow_numeric | bool | If set to `true`, the password must only contain numbers and no other characters. | [optional] |
weak_enhance_detection | bool | If set to `true`, users will be informed if the provided password is weak. | [optional] |