Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.32 KB

File metadata and controls

29 lines (22 loc) · 1.32 KB

LoginToSessionResponseDto

Properties

Name Type Description Notes
user UserReference [optional]
cookie str [optional]
csrf_token str [optional]

Example

from phrasetms_client.models.login_to_session_response_dto import LoginToSessionResponseDto

# TODO update the JSON string below
json = "{}"
# create an instance of LoginToSessionResponseDto from a JSON string
login_to_session_response_dto_instance = LoginToSessionResponseDto.from_json(json)
# print the JSON string representation of the object
print LoginToSessionResponseDto.to_json()

# convert the object into a dict
login_to_session_response_dto_dict = login_to_session_response_dto_instance.to_dict()
# create an instance of LoginToSessionResponseDto from a dict
login_to_session_response_dto_from_dict = LoginToSessionResponseDto.from_dict(login_to_session_response_dto_dict)

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