Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

File metadata and controls

29 lines (20 loc) · 977 Bytes

UpgradeFromUriRequest

Properties

Name Type Description Notes
uri str

Example

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]