Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 847 Bytes

File metadata and controls

29 lines (20 loc) · 847 Bytes

InverseValue

Properties

Name Type Description Notes
value str

Example

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)

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