Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 940 Bytes

File metadata and controls

31 lines (22 loc) · 940 Bytes

Resource

Properties

Name Type Description Notes
type ResourceType
id str The unique ID of the resource.
href str Absolute URL of the resource.

Example

from ionoscloud_dbaas_postgres.models.resource import Resource

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

# convert the object into a dict
resource_dict = resource_instance.to_dict()
# create an instance of Resource from a dict
resource_from_dict = Resource.from_dict(resource_dict)

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