Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.54 KB

MentionDto.md

File metadata and controls

32 lines (25 loc) · 1.54 KB

MentionDto

Properties

Name Type Description Notes
mention_type str
mention_group_type str [optional]
uid_reference UidReference [optional]
user_references List[MentionableUserDto] [optional]
mentionable_group MentionableGroupDto [optional]
tag str [optional]

Example

from phrasetms_client.models.mention_dto import MentionDto

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

# convert the object into a dict
mention_dto_dict = mention_dto_instance.to_dict()
# create an instance of MentionDto from a dict
mention_dto_from_dict = MentionDto.from_dict(mention_dto_dict)

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