You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Relative path to the archive file from website root directory
Example
fromhostinger_api.models.hosting_v1_websites_deploy_archive_requestimportHostingV1WebsitesDeployArchiveRequest# TODO update the JSON string belowjson="{}"# create an instance of HostingV1WebsitesDeployArchiveRequest from a JSON stringhosting_v1_websites_deploy_archive_request_instance=HostingV1WebsitesDeployArchiveRequest.from_json(json)
# print the JSON string representation of the objectprint(HostingV1WebsitesDeployArchiveRequest.to_json())
# convert the object into a dicthosting_v1_websites_deploy_archive_request_dict=hosting_v1_websites_deploy_archive_request_instance.to_dict()
# create an instance of HostingV1WebsitesDeployArchiveRequest from a dicthosting_v1_websites_deploy_archive_request_from_dict=HostingV1WebsitesDeployArchiveRequest.from_dict(hosting_v1_websites_deploy_archive_request_dict)