Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

File metadata and controls

30 lines (22 loc) · 1.09 KB

StatJobsCreate200Response

Properties

Name Type Description Notes
error int [optional]
key str [optional]
error_description str [optional]

Example

from bsg_api.models.stat_jobs_create200_response import StatJobsCreate200Response

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

# convert the object into a dict
stat_jobs_create200_response_dict = stat_jobs_create200_response_instance.to_dict()
# create an instance of StatJobsCreate200Response from a dict
stat_jobs_create200_response_from_dict = StatJobsCreate200Response.from_dict(stat_jobs_create200_response_dict)

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