Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.15 KB

JobstepResponseRequest.md

File metadata and controls

executable file
·
31 lines (22 loc) · 1.15 KB

JobstepResponseRequest

Properties

Name Type Description Notes
id int The ID for this refresh request [optional] [readonly]
job_step int The ID of the running job step to refresh
response_recieved bool Has the refresh completed? [optional]

Example

from epiccore.models.jobstep_response_request import JobstepResponseRequest

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

# convert the object into a dict
jobstep_response_request_dict = jobstep_response_request_instance.to_dict()
# create an instance of JobstepResponseRequest from a dict
jobstep_response_request_form_dict = jobstep_response_request.from_dict(jobstep_response_request_dict)

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