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