Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

File metadata and controls

29 lines (21 loc) · 1.05 KB

ContactListAttachRequest

Properties

Name Type Description Notes
contacts List[int] contacts Id
groups List[int] Contact lists IDs

Example

from bsg_api.models.contact_list_attach_request import ContactListAttachRequest

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

# convert the object into a dict
contact_list_attach_request_dict = contact_list_attach_request_instance.to_dict()
# create an instance of ContactListAttachRequest from a dict
contact_list_attach_request_from_dict = ContactListAttachRequest.from_dict(contact_list_attach_request_dict)

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