Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1020 Bytes

File metadata and controls

32 lines (23 loc) · 1020 Bytes

GroupContact

Properties

Name Type Description Notes
group_name str [optional]
group_id str [optional]
contacts List[GroupUser] [optional]
directories List[str] [optional]

Example

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)

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