| Name | Type | Description | Notes |
|---|---|---|---|
| value | str |
from revengai.models.inverse_value import InverseValue
# TODO update the JSON string below
json = "{}"
# create an instance of InverseValue from a JSON string
inverse_value_instance = InverseValue.from_json(json)
# print the JSON string representation of the object
print(InverseValue.to_json())
# convert the object into a dict
inverse_value_dict = inverse_value_instance.to_dict()
# create an instance of InverseValue from a dict
inverse_value_from_dict = InverseValue.from_dict(inverse_value_dict)