Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.27 KB

File metadata and controls

29 lines (20 loc) · 1.27 KB

HostingV1NodeJsGetBuildSettingsRequest

Properties

Name Type Description Notes
archive_path str The path to the archive file relative to the document root of the vhost

Example

from hostinger_api.models.hosting_v1_node_js_get_build_settings_request import HostingV1NodeJsGetBuildSettingsRequest

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

# convert the object into a dict
hosting_v1_node_js_get_build_settings_request_dict = hosting_v1_node_js_get_build_settings_request_instance.to_dict()
# create an instance of HostingV1NodeJsGetBuildSettingsRequest from a dict
hosting_v1_node_js_get_build_settings_request_from_dict = HostingV1NodeJsGetBuildSettingsRequest.from_dict(hosting_v1_node_js_get_build_settings_request_dict)

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