Search criteria
| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | str | Field for search. Possible values: id, phone, group_id, date, {field_id} {field_id} – custom field ID; can be got from GET /api/contacts/fields | [optional] |
| operator | SearchOperator | [optional] | |
| value | str | Value to to find using search[field] and search[operator] | [optional] |
from bsg_api.models.contacts_search_criteria import ContactsSearchCriteria
# TODO update the JSON string below
json = "{}"
# create an instance of ContactsSearchCriteria from a JSON string
contacts_search_criteria_instance = ContactsSearchCriteria.from_json(json)
# print the JSON string representation of the object
print(ContactsSearchCriteria.to_json())
# convert the object into a dict
contacts_search_criteria_dict = contacts_search_criteria_instance.to_dict()
# create an instance of ContactsSearchCriteria from a dict
contacts_search_criteria_from_dict = ContactsSearchCriteria.from_dict(contacts_search_criteria_dict)