| Name |
Type |
Description |
Notes |
| contacts |
List[int] |
contacts Id |
|
| groups |
List[int] |
Contact lists IDs |
|
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]