Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
uid | str | [optional] | |
user_name | str | [optional] | |
first_name | str | [optional] | |
last_name | str | [optional] | |
str | [optional] | ||
date_created | datetime | [optional] | |
date_deleted | datetime | [optional] | |
created_by | UserReference | [optional] | |
role | str | [optional] | |
timezone | str | [optional] | |
note | str | [optional] | |
terminologist | bool | [optional] | |
source_langs | List[str] | [optional] | |
target_langs | List[str] | [optional] | |
active | bool | [optional] | |
price_list | PriceListReference | [optional] | |
net_rate_scheme | DiscountSchemeReference | [optional] |
from phrasetms_client.models.user_dto import UserDto
# TODO update the JSON string below
json = "{}"
# create an instance of UserDto from a JSON string
user_dto_instance = UserDto.from_json(json)
# print the JSON string representation of the object
print UserDto.to_json()
# convert the object into a dict
user_dto_dict = user_dto_instance.to_dict()
# create an instance of UserDto from a dict
user_dto_from_dict = UserDto.from_dict(user_dto_dict)