Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

File metadata and controls

35 lines (26 loc) · 1.25 KB

Metadata

Properties

Name Type Description Notes
created_by str The URN of an IAM user. [optional]
created_by_user_id str The ID of an IAM user. [optional]
created_date datetime An ISO 8601 timestamp. [optional]
last_modified_by str The URN of an IAM user. [optional]
last_modified_by_user_id str The ID of an IAM user. [optional]
last_modified_date datetime An ISO 8601 timestamp. [optional]
resource_urn str The URN of the resource. [optional]

Example

from ionoscloud_dbaas_postgres.models.metadata import Metadata

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

# convert the object into a dict
metadata_dict = metadata_instance.to_dict()
# create an instance of Metadata from a dict
metadata_from_dict = Metadata.from_dict(metadata_dict)

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