| Name | Type | Description | Notes |
|---|---|---|---|
| user | UserReference | [optional] | |
| csrf_token | str | [optional] | |
| organization | OrganizationReference | [optional] | |
| edition | EditionDto | [optional] | |
| features | FeaturesDto | [optional] |
from phrasetms_client.models.login_user_dto import LoginUserDto
# TODO update the JSON string below
json = "{}"
# create an instance of LoginUserDto from a JSON string
login_user_dto_instance = LoginUserDto.from_json(json)
# print the JSON string representation of the object
print LoginUserDto.to_json()
# convert the object into a dict
login_user_dto_dict = login_user_dto_instance.to_dict()
# create an instance of LoginUserDto from a dict
login_user_dto_from_dict = LoginUserDto.from_dict(login_user_dto_dict)