Skip to content

TransformationJobPage

A single page of transformation jobs together with pagination metadata.

Properties

Name Type Description Notes
items List[TransformationJob] The transformation jobs in this page.
limit int Maximum number of items returned in this page.
offset int Number of items skipped before this page.
total int Total number of items available.

Example

from odm_api.models.transformation_job_page import TransformationJobPage

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

# convert the object into a dict
transformation_job_page_dict = transformation_job_page_instance.to_dict()
# create an instance of TransformationJobPage from a dict
transformation_job_page_from_dict = TransformationJobPage.from_dict(transformation_job_page_dict)
[Back to Model list] [Back to API list] [Back to README]