Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 2.86 KB

File metadata and controls

36 lines (29 loc) · 2.86 KB

AbstractUserCreateDto

Properties

Name Type Description Notes
user_name str
first_name str
last_name str
email str
password str
role str Enum: "ADMIN", "PROJECT_MANAGER", "LINGUIST", "GUEST", "SUBMITTER"
timezone str
receive_newsletter bool Default: true [optional]
note str [optional]
active bool Default: true [optional]

Example

from phrasetms_client.models.abstract_user_create_dto import AbstractUserCreateDto

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

# convert the object into a dict
abstract_user_create_dto_dict = abstract_user_create_dto_instance.to_dict()
# create an instance of AbstractUserCreateDto from a dict
abstract_user_create_dto_from_dict = AbstractUserCreateDto.from_dict(abstract_user_create_dto_dict)

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