Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

UpgradeObjectStorageResponse.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

UpgradeObjectStorageResponse

Properties

Name Type Description Notes
links SelfLinks
data List[UpgradeObjectStorageResponseData]

Example

from pfruck_contabo.models.upgrade_object_storage_response import UpgradeObjectStorageResponse

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

# convert the object into a dict
upgrade_object_storage_response_dict = upgrade_object_storage_response_instance.to_dict()
# create an instance of UpgradeObjectStorageResponse from a dict
upgrade_object_storage_response_from_dict = UpgradeObjectStorageResponse.from_dict(upgrade_object_storage_response_dict)

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