Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
str | [optional] |
from boldsign.models.contact_created import ContactCreated
# TODO update the JSON string below
json = "{}"
# create an instance of ContactCreated from a JSON string
contact_created_instance = ContactCreated.from_json(json)
# print the JSON string representation of the object
print(ContactCreated.to_json())
# convert the object into a dict
contact_created_dict = contact_created_instance.to_dict()
# create an instance of ContactCreated from a dict
contact_created_from_dict = ContactCreated.from_dict(contact_created_dict)