Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.13 KB

StatusDto.md

File metadata and controls

29 lines (22 loc) · 1.13 KB

StatusDto

Properties

Name Type Description Notes
name str [optional]
by MentionableUserDto [optional]
var_date datetime [optional]

Example

from phrasetms_client.models.status_dto import StatusDto

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

# convert the object into a dict
status_dto_dict = status_dto_instance.to_dict()
# create an instance of StatusDto from a dict
status_dto_from_dict = StatusDto.from_dict(status_dto_dict)

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