Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

File metadata and controls

29 lines (20 loc) · 977 Bytes

InstallFromUriRequest

Properties

Name Type Description Notes
uri str

Example

from halo_client.models.install_from_uri_request import InstallFromUriRequest

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

# convert the object into a dict
install_from_uri_request_dict = install_from_uri_request_instance.to_dict()
# create an instance of InstallFromUriRequest from a dict
install_from_uri_request_from_dict = InstallFromUriRequest.from_dict(install_from_uri_request_dict)

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