Skip to content

StorageCredential

Properties

Name Type Description Notes
id str
time_created datetime
time_modified datetime
owner_id str
tenant_id str
tenant_name str [optional]
name str
type str

Example

from libica.openapi.v3.models.storage_credential import StorageCredential

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

# convert the object into a dict
storage_credential_dict = storage_credential_instance.to_dict()
# create an instance of StorageCredential from a dict
storage_credential_from_dict = StorageCredential.from_dict(storage_credential_dict)

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