Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 2.22 KB

File metadata and controls

43 lines (31 loc) · 2.22 KB

root / docs

[Back to README.md]

AppDataGoogleAppReviewsTaskGetHtmlTaskInfo

Properties

Name Type Description Notes
id str task identifier unique task identifier in our system in the UUID format [optional]
status_code int status code of the task generated by DataForSEO, can be within the following range: 10000-60000 you can find the full list of the response codes here [optional]
status_message str informational message of the task you can find the full list of general informational messages here [optional]
time str execution time, seconds [optional]
cost float total tasks cost, USD [optional]
result_count int number of elements in the result array [optional]
path List[Optional[str]] URL path [optional]
data object contains the same parameters that you specified in the POST request [optional]
result List[AppDataGoogleAppReviewsTaskGetHtmlResultInfo] array of results [optional]

Example

from dataforseo_client.models.app_data_google_app_reviews_task_get_html_task_info import AppDataGoogleAppReviewsTaskGetHtmlTaskInfo

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

# convert the object into a dict
app_data_google_app_reviews_task_get_html_task_info_dict = app_data_google_app_reviews_task_get_html_task_info_instance.to_dict()
# create an instance of AppDataGoogleAppReviewsTaskGetHtmlTaskInfo from a dict
app_data_google_app_reviews_task_get_html_task_info_form_dict = app_data_google_app_reviews_task_get_html_task_info.from_dict(app_data_google_app_reviews_task_get_html_task_info_dict)

root / docs

[Back to README.md]