Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 897 Bytes

File metadata and controls

31 lines (22 loc) · 897 Bytes

HavingComp

Properties

Name Type Description Notes
property_id str
value float
operator str

Example

from cm_python_openapi_sdk.models.having_comp import HavingComp

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

# convert the object into a dict
having_comp_dict = having_comp_instance.to_dict()
# create an instance of HavingComp from a dict
having_comp_from_dict = HavingComp.from_dict(having_comp_dict)

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