| Name | Type | Description | Notes |
|---|---|---|---|
| version | str | the current version of the API | [optional] |
| status_code | int | general status code you can find the full list of the response codes here | [optional] |
| status_message | str | general informational message you can find the full list of general informational messages here | [optional] |
| time | str | total execution time, seconds | [optional] |
| cost | float | total tasks cost, USD | [optional] |
| tasks_count | int | the number of tasks in the tasks array | [optional] |
| tasks_error | int | the number of tasks in the tasks array returned with an error | [optional] |
| tasks | List[DomainAnalyticsIdListTaskInfo] | array of tasks | [optional] |
from dataforseo_client.models.domain_analytics_id_list_response_info import DomainAnalyticsIdListResponseInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DomainAnalyticsIdListResponseInfo from a JSON string
domain_analytics_id_list_response_info_instance = DomainAnalyticsIdListResponseInfo.from_json(json)
# print the JSON string representation of the object
print DomainAnalyticsIdListResponseInfo.to_json()
# convert the object into a dict
domain_analytics_id_list_response_info_dict = domain_analytics_id_list_response_info_instance.to_dict()
# create an instance of DomainAnalyticsIdListResponseInfo from a dict
domain_analytics_id_list_response_info_form_dict = domain_analytics_id_list_response_info.from_dict(domain_analytics_id_list_response_info_dict)