Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 855 Bytes

File metadata and controls

30 lines (21 loc) · 855 Bytes

GroupName

A group name container

Properties

Name Type Description Notes
name str The name of the group

Example

from messente_api.models.group_name import GroupName

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

# convert the object into a dict
group_name_dict = group_name_instance.to_dict()
# create an instance of GroupName from a dict
group_name_from_dict = GroupName.from_dict(group_name_dict)

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