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