Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 899 Bytes

File metadata and controls

29 lines (20 loc) · 899 Bytes

ReplacementValue

Properties

Name Type Description Notes
value str

Example

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)

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