Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 983 Bytes

File metadata and controls

30 lines (21 loc) · 983 Bytes

ContactsList

Properties

Name Type Description Notes
page_details ContactPageDetails [optional]
result List[ContactsDetails] [optional]

Example

from boldsign.models.contacts_list import ContactsList

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

# convert the object into a dict
contacts_list_dict = contacts_list_instance.to_dict()
# create an instance of ContactsList from a dict
contacts_list_from_dict = ContactsList.from_dict(contacts_list_dict)

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