Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] | |
by | MentionableUserDto | [optional] | |
var_date | datetime | [optional] |
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)