Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 859 Bytes

File metadata and controls

29 lines (20 loc) · 859 Bytes

UserItems

Properties

Name Type Description Notes
items list[UserResource]

Example

from ionoscloud_dbaas_postgres.models.user_items import UserItems

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

# convert the object into a dict
user_items_dict = user_items_instance.to_dict()
# create an instance of UserItems from a dict
user_items_from_dict = UserItems.from_dict(user_items_dict)

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