The confirmation email parameters.
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | The email validation key. | [optional] |
| empl_type | EmployeeType | [optional] | |
| str | The email address. | [optional] | |
| enc_email | str | The encrypted email address. | [optional] |
| ui_d | str | The user ID. | [optional] |
| type | ConfirmType | [optional] | |
| first | str | Specifies whether it is the first time account access or not. | [optional] |
| room_id | str | The room ID. | [optional] |
from docspace_api_sdk.models.email_validation_key_model import EmailValidationKeyModel
# TODO update the JSON string below
json = "{}"
# create an instance of EmailValidationKeyModel from a JSON string
email_validation_key_model_instance = EmailValidationKeyModel.from_json(json)
# print the JSON string representation of the object
print(EmailValidationKeyModel.to_json())
# convert the object into a dict
email_validation_key_model_dict = email_validation_key_model_instance.to_dict()
# create an instance of EmailValidationKeyModel from a dict
email_validation_key_model_from_dict = EmailValidationKeyModel.from_dict(email_validation_key_model_dict)