Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.01 KB

File metadata and controls

36 lines (27 loc) · 2.01 KB

InlineResponse20079ResultRedirects

Properties

Name Type Description Notes
content str A message that explains why the function failed. [optional]
headers object An object that contains the HTTP::Tiny CPAN module returns. Note: This object's contents vary according to the URL's headers. [optional]
protocol str The URL's HTTP protocol. [optional]
reason str The HTTP response status message. [optional]
redirects List[str] An array of objects containing the redirects, if the value exists. [optional]
status int The HTTP response status code. [optional]
success InlineResponse20079ResultRedirectsSuccess [optional]
url str The URL that the function searches for the DCV file. [optional]

Example

from clientapi_cpanel.models.inline_response20079_result_redirects import InlineResponse20079ResultRedirects

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

# convert the object into a dict
inline_response20079_result_redirects_dict = inline_response20079_result_redirects_instance.to_dict()
# create an instance of InlineResponse20079ResultRedirects from a dict
inline_response20079_result_redirects_from_dict = InlineResponse20079ResultRedirects.from_dict(inline_response20079_result_redirects_dict)

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