Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 894 Bytes

File metadata and controls

30 lines (21 loc) · 894 Bytes

LableResonse

Properties

Name Type Description Notes
id int [optional]
label str [optional]

Example

from hyperstack.models.lable_resonse import LableResonse

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

# convert the object into a dict
lable_resonse_dict = lable_resonse_instance.to_dict()
# create an instance of LableResonse from a dict
lable_resonse_from_dict = LableResonse.from_dict(lable_resonse_dict)

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