| Name | Type | Description | Notes |
|---|---|---|---|
| group_name | str | ||
| contacts | List[GroupUser] | ||
| directories | List[str] | [optional] |
from boldsign.models.group_contact_details import GroupContactDetails
# TODO update the JSON string below
json = "{}"
# create an instance of GroupContactDetails from a JSON string
group_contact_details_instance = GroupContactDetails.from_json(json)
# print the JSON string representation of the object
print(GroupContactDetails.to_json())
# convert the object into a dict
group_contact_details_dict = group_contact_details_instance.to_dict()
# create an instance of GroupContactDetails from a dict
group_contact_details_from_dict = GroupContactDetails.from_dict(group_contact_details_dict)