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

ContactListDetachRequest

Properties

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

Example

from bsg_api.models.contact_list_detach_request import ContactListDetachRequest

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

# convert the object into a dict
contact_list_detach_request_dict = contact_list_detach_request_instance.to_dict()
# create an instance of ContactListDetachRequest from a dict
contact_list_detach_request_from_dict = ContactListDetachRequest.from_dict(contact_list_detach_request_dict)

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