Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 975 Bytes

ContactEnvelope.md

File metadata and controls

30 lines (21 loc) · 975 Bytes

ContactEnvelope

A container for a contact

Properties

Name Type Description Notes
contact ContactResponseFields [optional]

Example

from messente_api.models.contact_envelope import ContactEnvelope

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

# convert the object into a dict
contact_envelope_dict = contact_envelope_instance.to_dict()
# create an instance of ContactEnvelope from a dict
contact_envelope_from_dict = ContactEnvelope.from_dict(contact_envelope_dict)

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