Name | Type | Description | Notes |
---|
from openapi_client.models.detail import Detail
# TODO update the JSON string below
json = "{}"
# create an instance of Detail from a JSON string
detail_instance = Detail.from_json(json)
# print the JSON string representation of the object
print(Detail.to_json())
# convert the object into a dict
detail_dict = detail_instance.to_dict()
# create an instance of Detail from a dict
detail_from_dict = Detail.from_dict(detail_dict)