UserContactInfoRequest

Properties

Name Type Description Notes
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]

Example

from defectdojo_api_generated.models.user_contact_info_request import UserContactInfoRequest

# TODO update the JSON string below
json = "{}"
# create an instance of UserContactInfoRequest from a JSON string
user_contact_info_request_instance = UserContactInfoRequest.from_json(json)
# print the JSON string representation of the object
print(UserContactInfoRequest.to_json())

# convert the object into a dict
user_contact_info_request_dict = user_contact_info_request_instance.to_dict()
# create an instance of UserContactInfoRequest from a dict
user_contact_info_request_from_dict = UserContactInfoRequest.from_dict(user_contact_info_request_dict)

[Back to Model list] [Back to API list] [Back to README]