Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

File metadata and controls

33 lines (24 loc) · 1.09 KB

UserResource

Properties

Name Type Description Notes
type ResourceType
id str The unique ID of the resource.
href str Absolute URL of the resource.
metadata Metadata [optional]
properties UserProperties

Example

from ionoscloud_dbaas_postgres.models.user_resource import UserResource

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

# convert the object into a dict
user_resource_dict = user_resource_instance.to_dict()
# create an instance of UserResource from a dict
user_resource_from_dict = UserResource.from_dict(user_resource_dict)

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