Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.24 KB

MentionableGroupDto.md

File metadata and controls

29 lines (22 loc) · 1.24 KB

MentionableGroupDto

Properties

Name Type Description Notes
group_type str [optional]
group_name str [optional]
group_reference UidReference [optional]

Example

from phrasetms_client.models.mentionable_group_dto import MentionableGroupDto

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

# convert the object into a dict
mentionable_group_dto_dict = mentionable_group_dto_instance.to_dict()
# create an instance of MentionableGroupDto from a dict
mentionable_group_dto_from_dict = MentionableGroupDto.from_dict(mentionable_group_dto_dict)

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