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
Whether the domain allows hotlinks from an empty or null referral URL. * `1` - Allows hotlinks. * `0` - Does not allow hotlinks.
[optional]
extensions
str
A comma-separated list of file types to hotlink protect.
[optional]
redirect_url
str
The URL to which to send hotlinkers.
[optional]
state
str
Whether hotlink protection is enabled. * `enabled` * `disabled`
[optional]
urls
List[str]
An array of the domains with hotlink protection.
[optional]
Example
fromclientapi_cpanel.models.inline_response200326_result_dataimportInlineResponse200326ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200326ResultData from a JSON stringinline_response200326_result_data_instance=InlineResponse200326ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200326ResultData.to_json())
# convert the object into a dictinline_response200326_result_data_dict=inline_response200326_result_data_instance.to_dict()
# create an instance of InlineResponse200326ResultData from a dictinline_response200326_result_data_from_dict=InlineResponse200326ResultData.from_dict(inline_response200326_result_data_dict)