Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

BackupReadList

Properties

Name Type Description Notes
offset int The offset specified in the request (if none was specified, the default offset is 0). [readonly]
limit int The limit specified in the request (if none was specified, use the endpoint's default pagination limit). [readonly]
links Links
id str ID of the list of Backup resources.
type str The type of the resource.
href str The URL of the list of Backup resources.
items list[BackupRead] The list of Backup resources. [optional]

Example

from ionoscloud_dbaas_postgres.models.backup_read_list import BackupReadList

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

# convert the object into a dict
backup_read_list_dict = backup_read_list_instance.to_dict()
# create an instance of BackupReadList from a dict
backup_read_list_from_dict = BackupReadList.from_dict(backup_read_list_dict)

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