Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.05 KB

File metadata and controls

29 lines (22 loc) · 1.05 KB

LoginDto

Properties

Name Type Description Notes
user_name str
password str
code str Required only for 2-factor authentication [optional]

Example

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)

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