Skip to content

TransformationImagePage

A single page of transformation images together with pagination metadata.

Properties

Name Type Description Notes
items List[TransformationImage] The transformation images 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_image_page import TransformationImagePage

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

# convert the object into a dict
transformation_image_page_dict = transformation_image_page_instance.to_dict()
# create an instance of TransformationImagePage from a dict
transformation_image_page_from_dict = TransformationImagePage.from_dict(transformation_image_page_dict)
[Back to Model list] [Back to API list] [Back to README]