Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

ContactListEnvelope

A container for contacts

Properties

Name Type Description Notes
contacts List[ContactResponseFields] An array of contacts [optional]

Example

from messente_api.models.contact_list_envelope import ContactListEnvelope

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

# convert the object into a dict
contact_list_envelope_dict = contact_list_envelope_instance.to_dict()
# create an instance of ContactListEnvelope from a dict
contact_list_envelope_from_dict = ContactListEnvelope.from_dict(contact_list_envelope_dict)

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