Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

CreateContactResponse.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

CreateContactResponse

Properties

Name Type Description Notes
created_contacts List[ContactCreated] [optional]

Example

from boldsign.models.create_contact_response import CreateContactResponse

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

# convert the object into a dict
create_contact_response_dict = create_contact_response_instance.to_dict()
# create an instance of CreateContactResponse from a dict
create_contact_response_from_dict = CreateContactResponse.from_dict(create_contact_response_dict)

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