Name | Type | Description | Notes |
---|---|---|---|
count | int | ||
next | str | [optional] | |
previous | str | [optional] | |
results | List[JobStep] |
from epiccore.models.jobstep_list200_response import JobstepList200Response
# TODO update the JSON string below
json = "{}"
# create an instance of JobstepList200Response from a JSON string
jobstep_list200_response_instance = JobstepList200Response.from_json(json)
# print the JSON string representation of the object
print JobstepList200Response.to_json()
# convert the object into a dict
jobstep_list200_response_dict = jobstep_list200_response_instance.to_dict()
# create an instance of JobstepList200Response from a dict
jobstep_list200_response_form_dict = jobstep_list200_response.from_dict(jobstep_list200_response_dict)