| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| label | str | [optional] |
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)