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 domain to redirect. * `ALL` is the only possible value.
[optional]
displaysourceurl
str
The path to the file within the domain to test, relative to the home directory.
[optional]
docroot
str
The absolute file path to the source domain's document root.
[optional]
domain
str
The domain to redirect.
[optional]
kind
str
The kind of redirect. * `rewrite` — The request sent a redirect to another path on the server. * `redirect` — The request sent a redirect for the URL. * `redirectmatch` — The request sent a redirect based on a regular expression match of the URL.
[optional]
matchwww
int
Whether the redirect matches `www.` subdomains. * `1` — Matches. * `0` — Does not match.
Whether the redirect is permanent or temporary. * `permanent` — The redirect is permanent. * `temporary` — The redirect is temporary.
[optional]
urldomain
str
The domain to redirect.
[optional]
wildcard
int
Whether the wildcard subdomains match. * `1` — Matches. * `0` — Does not match.
[optional]
wildcard_text
str
Whether the Wild Card Redirect option is active. * `checked` — The Wild Card Redirect option is active.
[optional]
Example
fromclientapi_cpanel.models.inline_response200328_result_dataimportInlineResponse200328ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200328ResultData from a JSON stringinline_response200328_result_data_instance=InlineResponse200328ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200328ResultData.to_json())
# convert the object into a dictinline_response200328_result_data_dict=inline_response200328_result_data_instance.to_dict()
# create an instance of InlineResponse200328ResultData from a dictinline_response200328_result_data_from_dict=InlineResponse200328ResultData.from_dict(inline_response200328_result_data_dict)