Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

File metadata and controls

32 lines (23 loc) · 1.35 KB

DeprecatedPagination

Pagination information in list responses. DEPRECATED because of misspelled _links attribute.

Properties

Name Type Description Notes
offset int The offset specified in the request (if none was specified, the default offset is 0). [optional] [default to 0]
limit int The limit specified in the request (if none was specified, the default limit is 100). [optional] [default to 100]
links PaginationLinks [optional]

Example

from ionoscloud_dbaas_postgres.models.deprecated_pagination import DeprecatedPagination

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

# convert the object into a dict
deprecated_pagination_dict = deprecated_pagination_instance.to_dict()
# create an instance of DeprecatedPagination from a dict
deprecated_pagination_from_dict = DeprecatedPagination.from_dict(deprecated_pagination_dict)

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