Configuration for boolean index.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | [optional] [default to 'bool'] |
from mixpeek.models.bool_index_params import BoolIndexParams
# TODO update the JSON string below
json = "{}"
# create an instance of BoolIndexParams from a JSON string
bool_index_params_instance = BoolIndexParams.from_json(json)
# print the JSON string representation of the object
print(BoolIndexParams.to_json())
# convert the object into a dict
bool_index_params_dict = bool_index_params_instance.to_dict()
# create an instance of BoolIndexParams from a dict
bool_index_params_from_dict = BoolIndexParams.from_dict(bool_index_params_dict)