| Name |
Type |
Description |
Notes |
| uri |
str |
|
|
from halo_client.models.upgrade_from_uri_request import UpgradeFromUriRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpgradeFromUriRequest from a JSON string
upgrade_from_uri_request_instance = UpgradeFromUriRequest.from_json(json)
# print the JSON string representation of the object
print(UpgradeFromUriRequest.to_json())
# convert the object into a dict
upgrade_from_uri_request_dict = upgrade_from_uri_request_instance.to_dict()
# create an instance of UpgradeFromUriRequest from a dict
upgrade_from_uri_request_from_dict = UpgradeFromUriRequest.from_dict(upgrade_from_uri_request_dict)
[Back to Model list] [Back to API list] [Back to README]