Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 841 Bytes

File metadata and controls

30 lines (21 loc) · 841 Bytes

DebugInfo

Properties

Name Type Description Notes
goal str
url str

Example

from sorrydb_api_client.models.debug_info import DebugInfo

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

# convert the object into a dict
debug_info_dict = debug_info_instance.to_dict()
# create an instance of DebugInfo from a dict
debug_info_from_dict = DebugInfo.from_dict(debug_info_dict)

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