Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 812 Bytes

ValueData.md

File metadata and controls

29 lines (20 loc) · 812 Bytes

ValueData

Properties

Name Type Description Notes
value float value

Example

from iblai.models.value_data import ValueData

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

# convert the object into a dict
value_data_dict = value_data_instance.to_dict()
# create an instance of ValueData from a dict
value_data_from_dict = ValueData.from_dict(value_data_dict)

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