| Name | Type | Description | Notes |
|---|---|---|---|
| user_name | str | ||
| password | str | ||
| code | str | Required only for 2-factor authentication | [optional] |
from phrasetms_client.models.login_dto import LoginDto
# TODO update the JSON string below
json = "{}"
# create an instance of LoginDto from a JSON string
login_dto_instance = LoginDto.from_json(json)
# print the JSON string representation of the object
print LoginDto.to_json()
# convert the object into a dict
login_dto_dict = login_dto_instance.to_dict()
# create an instance of LoginDto from a dict
login_dto_from_dict = LoginDto.from_dict(login_dto_dict)