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

StatJobsDelete200Response

Properties

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

Example

from bsg_api.models.stat_jobs_delete200_response import StatJobsDelete200Response

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

# convert the object into a dict
stat_jobs_delete200_response_dict = stat_jobs_delete200_response_instance.to_dict()
# create an instance of StatJobsDelete200Response from a dict
stat_jobs_delete200_response_from_dict = StatJobsDelete200Response.from_dict(stat_jobs_delete200_response_dict)

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