Skip to content

TempCredentials

Properties

Name Type Description Notes
aws_temp_credentials AwsTempCredentials [optional]
rclone_temp_credentials RcloneTempCredentials [optional]

Example

from libica.openapi.v3.models.temp_credentials import TempCredentials

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

# convert the object into a dict
temp_credentials_dict = temp_credentials_instance.to_dict()
# create an instance of TempCredentials from a dict
temp_credentials_from_dict = TempCredentials.from_dict(temp_credentials_dict)

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