Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

GetGroupContactDetails

Properties

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

Example

from boldsign.models.get_group_contact_details import GetGroupContactDetails

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

# convert the object into a dict
get_group_contact_details_dict = get_group_contact_details_instance.to_dict()
# create an instance of GetGroupContactDetails from a dict
get_group_contact_details_from_dict = GetGroupContactDetails.from_dict(get_group_contact_details_dict)

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