Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

File metadata and controls

35 lines (26 loc) · 1.58 KB

PostgresVersionReadList

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 PostgresVersion resources.
type str The type of the resource.
href str The URL of the list of PostgresVersion resources.
items list[PostgresVersionRead] The list of PostgresVersion resources. [optional]

Example

from ionoscloud_dbaas_postgres.models.postgres_version_read_list import PostgresVersionReadList

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

# convert the object into a dict
postgres_version_read_list_dict = postgres_version_read_list_instance.to_dict()
# create an instance of PostgresVersionReadList from a dict
postgres_version_read_list_from_dict = PostgresVersionReadList.from_dict(postgres_version_read_list_dict)

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