Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 3.41 KB

InlineResponse200328ResultData.md

File metadata and controls

45 lines (36 loc) · 3.41 KB

InlineResponse200328ResultData

Properties

Name Type Description Notes
destination str The redirect's destination URL. [optional]
displaydomain str 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. [optional]
matchwww_text str Whether the Redirect with or without www. option is active. * `checked` — The Redirect with or without www. option is active. [optional]
opts str The options that the function passes to Apache as part of the Rewrite rule. [optional]
source str The path to the file within the domain to test, relative to the home directory. [optional]
sourceurl str The path to the file within the domain to test, relative to the home directory. [optional]
statuscode str The HTTP Status Code of the request [optional]
targeturl str The redirect's destination URL. [optional]
type str 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

from clientapi_cpanel.models.inline_response200328_result_data import InlineResponse200328ResultData

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

# convert the object into a dict
inline_response200328_result_data_dict = inline_response200328_result_data_instance.to_dict()
# create an instance of InlineResponse200328ResultData from a dict
inline_response200328_result_data_from_dict = InlineResponse200328ResultData.from_dict(inline_response200328_result_data_dict)

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