GSResponse
Properties
Example
from odm_api.models.gs_response import GSResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GSResponse from a JSON string
gs_response_instance = GSResponse.from_json(json)
# print the JSON string representation of the object
print(GSResponse.to_json())
# convert the object into a dict
gs_response_dict = gs_response_instance.to_dict()
# create an instance of GSResponse from a dict
gs_response_from_dict = GSResponse.from_dict(gs_response_dict)
[Back to Model list] [Back to API list] [Back to README]