Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

File metadata and controls

30 lines (21 loc) · 941 Bytes

GroupEnvelope

A container for a group

Properties

Name Type Description Notes
group GroupResponseFields [optional]

Example

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)

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