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
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[Optional[object]]
results of Lighthouse audit this array will include data according to the parameters you specified when setting a task; all fields and their descriptions are available in the official documentation by this link.
[optional]
Example
fromdataforseo_client.models.on_page_lighthouse_live_json_task_infoimportOnPageLighthouseLiveJsonTaskInfo# TODO update the JSON string belowjson="{}"# create an instance of OnPageLighthouseLiveJsonTaskInfo from a JSON stringon_page_lighthouse_live_json_task_info_instance=OnPageLighthouseLiveJsonTaskInfo.from_json(json)
# print the JSON string representation of the objectprintOnPageLighthouseLiveJsonTaskInfo.to_json()
# convert the object into a dicton_page_lighthouse_live_json_task_info_dict=on_page_lighthouse_live_json_task_info_instance.to_dict()
# create an instance of OnPageLighthouseLiveJsonTaskInfo from a dicton_page_lighthouse_live_json_task_info_form_dict=on_page_lighthouse_live_json_task_info.from_dict(on_page_lighthouse_live_json_task_info_dict)