Name | Type | Description | Notes |
---|---|---|---|
limit | int | Setting limit would limit the items received in the page | [optional] [default to 10] |
offset | int | First position to return from the results | [optional] [default to 0] |
next | str | Url of the next page | |
items | List[PipelineItemsPaginatedItemsInner] |
from openapi_client.models.pipeline_items_paginated import PipelineItemsPaginated
# TODO update the JSON string below
json = "{}"
# create an instance of PipelineItemsPaginated from a JSON string
pipeline_items_paginated_instance = PipelineItemsPaginated.from_json(json)
# print the JSON string representation of the object
print(PipelineItemsPaginated.to_json())
# convert the object into a dict
pipeline_items_paginated_dict = pipeline_items_paginated_instance.to_dict()
# create an instance of PipelineItemsPaginated from a dict
pipeline_items_paginated_from_dict = PipelineItemsPaginated.from_dict(pipeline_items_paginated_dict)