Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1007 Bytes

File metadata and controls

31 lines (22 loc) · 1007 Bytes

ResultSetFilterIn

Properties

Name Type Description Notes
property_id str
value List[object]
operator str

Example

from cm_python_openapi_sdk.models.result_set_filter_in import ResultSetFilterIn

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

# convert the object into a dict
result_set_filter_in_dict = result_set_filter_in_instance.to_dict()
# create an instance of ResultSetFilterIn from a dict
result_set_filter_in_from_dict = ResultSetFilterIn.from_dict(result_set_filter_in_dict)

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