| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | [optional] | |
| data | ListJobs200ResponseData | [optional] |
from bsubio.models.list_jobs200_response import ListJobs200Response
# TODO update the JSON string below
json = "{}"
# create an instance of ListJobs200Response from a JSON string
list_jobs200_response_instance = ListJobs200Response.from_json(json)
# print the JSON string representation of the object
print(ListJobs200Response.to_json())
# convert the object into a dict
list_jobs200_response_dict = list_jobs200_response_instance.to_dict()
# create an instance of ListJobs200Response from a dict
list_jobs200_response_from_dict = ListJobs200Response.from_dict(list_jobs200_response_dict)