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
Turn development (cacheless) mode on (true) or off (false) for the website.
Example
fromhostinger_api.models.hosting_v1_cache_toggle_cacheless_mode_requestimportHostingV1CacheToggleCachelessModeRequest# TODO update the JSON string belowjson="{}"# create an instance of HostingV1CacheToggleCachelessModeRequest from a JSON stringhosting_v1_cache_toggle_cacheless_mode_request_instance=HostingV1CacheToggleCachelessModeRequest.from_json(json)
# print the JSON string representation of the objectprint(HostingV1CacheToggleCachelessModeRequest.to_json())
# convert the object into a dicthosting_v1_cache_toggle_cacheless_mode_request_dict=hosting_v1_cache_toggle_cacheless_mode_request_instance.to_dict()
# create an instance of HostingV1CacheToggleCachelessModeRequest from a dicthosting_v1_cache_toggle_cacheless_mode_request_from_dict=HostingV1CacheToggleCachelessModeRequest.from_dict(hosting_v1_cache_toggle_cacheless_mode_request_dict)