Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 934 Bytes

DataSetPlatformValue.md

File metadata and controls

28 lines (19 loc) · 934 Bytes

DataSetPlatformValue

Properties

Name Type Description Notes

Example

from iblai.models.data_set_platform_value import DataSetPlatformValue

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

# convert the object into a dict
data_set_platform_value_dict = data_set_platform_value_instance.to_dict()
# create an instance of DataSetPlatformValue from a dict
data_set_platform_value_from_dict = DataSetPlatformValue.from_dict(data_set_platform_value_dict)

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