A container for a group
| Name | Type | Description | Notes |
|---|---|---|---|
| group | GroupResponseFields | [optional] |
from messente_api.models.group_envelope import GroupEnvelope
# TODO update the JSON string below
json = "{}"
# create an instance of GroupEnvelope from a JSON string
group_envelope_instance = GroupEnvelope.from_json(json)
# print the JSON string representation of the object
print(GroupEnvelope.to_json())
# convert the object into a dict
group_envelope_dict = group_envelope_instance.to_dict()
# create an instance of GroupEnvelope from a dict
group_envelope_from_dict = GroupEnvelope.from_dict(group_envelope_dict)