Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 869 Bytes

File metadata and controls

29 lines (20 loc) · 869 Bytes

InfoResponse

Properties

Name Type Description Notes
info str [optional]

Example

from imager200_python_sdk.models.info_response import InfoResponse

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

# convert the object into a dict
info_response_dict = info_response_instance.to_dict()
# create an instance of InfoResponse from a dict
info_response_from_dict = InfoResponse.from_dict(info_response_dict)

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