Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.43 KB

File metadata and controls

31 lines (24 loc) · 1.43 KB

LoginUserDto

Properties

Name Type Description Notes
user UserReference [optional]
csrf_token str [optional]
organization OrganizationReference [optional]
edition EditionDto [optional]
features FeaturesDto [optional]

Example

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)

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