Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| user_profile |
User |
|
[optional] [readonly] |
| title |
str |
|
[optional] |
| phone_number |
str |
Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed. |
[optional] |
| cell_number |
str |
Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed. |
[optional] |
| twitter_username |
str |
|
[optional] |
| github_username |
str |
|
[optional] |
| slack_username |
str |
Email address associated with your slack account |
[optional] |
| slack_user_id |
str |
|
[optional] |
| block_execution |
bool |
Instead of async deduping a finding the findings will be deduped synchronously and will 'block' the user until completion. |
[optional] |
| force_password_reset |
bool |
Forces this user to reset their password on next login. |
[optional] |
| token_last_reset |
datetime |
Timestamp of the most recent API token reset for this user. |
[optional] |
| password_last_reset |
datetime |
Timestamp of the most recent password reset for this user. |
[optional] |
| user |
int |
|
[optional] |
| prefetch |
PaginatedUserContactInfoListPrefetch |
|
[optional] |
Example
from defectdojo_api_generated.models.user_contact_info import UserContactInfo
# TODO update the JSON string below
json = "{}"
# create an instance of UserContactInfo from a JSON string
user_contact_info_instance = UserContactInfo.from_json(json)
# print the JSON string representation of the object
print(UserContactInfo.to_json())
# convert the object into a dict
user_contact_info_dict = user_contact_info_instance.to_dict()
# create an instance of UserContactInfo from a dict
user_contact_info_from_dict = UserContactInfo.from_dict(user_contact_info_dict)
[Back to Model list] [Back to API list] [Back to README]