A group name container
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the group |
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)