Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.62 KB

InlineResponse200326ResultData.md

File metadata and controls

33 lines (24 loc) · 1.62 KB

InlineResponse200326ResultData

Properties

Name Type Description Notes
allow_null int 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

from clientapi_cpanel.models.inline_response200326_result_data import InlineResponse200326ResultData

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

# convert the object into a dict
inline_response200326_result_data_dict = inline_response200326_result_data_instance.to_dict()
# create an instance of InlineResponse200326ResultData from a dict
inline_response200326_result_data_from_dict = InlineResponse200326ResultData.from_dict(inline_response200326_result_data_dict)

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