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
The TUS upload endpoint URL to send upload requests to
auth_key
str
Authentication token to pass as the `X-Auth` header in TUS upload requests
rest_auth_key
str
Authentication token to pass as the `X-Auth-Rest` header in TUS upload requests
Example
fromhostinger_api.models.agency_hosting_v1_files_upload_url_resourceimportAgencyHostingV1FilesUploadUrlResource# TODO update the JSON string belowjson="{}"# create an instance of AgencyHostingV1FilesUploadUrlResource from a JSON stringagency_hosting_v1_files_upload_url_resource_instance=AgencyHostingV1FilesUploadUrlResource.from_json(json)
# print the JSON string representation of the objectprint(AgencyHostingV1FilesUploadUrlResource.to_json())
# convert the object into a dictagency_hosting_v1_files_upload_url_resource_dict=agency_hosting_v1_files_upload_url_resource_instance.to_dict()
# create an instance of AgencyHostingV1FilesUploadUrlResource from a dictagency_hosting_v1_files_upload_url_resource_from_dict=AgencyHostingV1FilesUploadUrlResource.from_dict(agency_hosting_v1_files_upload_url_resource_dict)