Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 870 Bytes

JobCreateResp.md

File metadata and controls

29 lines (20 loc) · 870 Bytes

JobCreateResp

Properties

Name Type Description Notes
job_id str

Example

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)

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