| Name | Type | Description | Notes |
|---|---|---|---|
| page_details | ContactPageDetails | [optional] | |
| result | List[GroupContact] | [optional] |
from boldsign.models.group_contacts_list import GroupContactsList
# TODO update the JSON string below
json = "{}"
# create an instance of GroupContactsList from a JSON string
group_contacts_list_instance = GroupContactsList.from_json(json)
# print the JSON string representation of the object
print(GroupContactsList.to_json())
# convert the object into a dict
group_contacts_list_dict = group_contacts_list_instance.to_dict()
# create an instance of GroupContactsList from a dict
group_contacts_list_from_dict = GroupContactsList.from_dict(group_contacts_list_dict)