Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

InlineResponse200490ResultData.md

File metadata and controls

32 lines (23 loc) · 1.6 KB

InlineResponse200490ResultData

Properties

Name Type Description Notes
all_domains int Whether the statistics file's filepath is for all the domains on a cPanel account. * `1` - All domains. * `0` - An individual domain. [optional]
domain str The domain for which to display statistics. [optional]
path str The filepath to the statistics file. [optional]
ssl int Whether the function generates statistics from SSL requests. * `1` - Generates statistics for SSL requests. * `0` - Generates statistics for non-SSL requests. [optional]

Example

from clientapi_cpanel.models.inline_response200490_result_data import InlineResponse200490ResultData

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

# convert the object into a dict
inline_response200490_result_data_dict = inline_response200490_result_data_instance.to_dict()
# create an instance of InlineResponse200490ResultData from a dict
inline_response200490_result_data_from_dict = InlineResponse200490ResultData.from_dict(inline_response200490_result_data_dict)

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