Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 980 Bytes

File metadata and controls

30 lines (21 loc) · 980 Bytes

JobListResponse

Properties

Name Type Description Notes
items List[JobResponse]
page CursorPage

Example

from wordlift_client.models.job_list_response import JobListResponse

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

# convert the object into a dict
job_list_response_dict = job_list_response_instance.to_dict()
# create an instance of JobListResponse from a dict
job_list_response_from_dict = JobListResponse.from_dict(job_list_response_dict)

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