Name | Type | Description | Notes |
---|---|---|---|
job_id | str |
from sxwl_client.models.job_create_resp import JobCreateResp
# TODO update the JSON string below
json = "{}"
# create an instance of JobCreateResp from a JSON string
job_create_resp_instance = JobCreateResp.from_json(json)
# print the JSON string representation of the object
print(JobCreateResp.to_json())
# convert the object into a dict
job_create_resp_dict = job_create_resp_instance.to_dict()
# create an instance of JobCreateResp from a dict
job_create_resp_from_dict = JobCreateResp.from_dict(job_create_resp_dict)