Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 2.1 KB

File metadata and controls

42 lines (30 loc) · 2.1 KB

root / docs

[Back to README.md]

KeywordsDataBingSearchVolumeTaskGetResponseInfo

Properties

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[KeywordsDataBingSearchVolumeTaskGetTaskInfo] array of tasks [optional]

Example

from dataforseo_client.models.keywords_data_bing_search_volume_task_get_response_info import KeywordsDataBingSearchVolumeTaskGetResponseInfo

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

# convert the object into a dict
keywords_data_bing_search_volume_task_get_response_info_dict = keywords_data_bing_search_volume_task_get_response_info_instance.to_dict()
# create an instance of KeywordsDataBingSearchVolumeTaskGetResponseInfo from a dict
keywords_data_bing_search_volume_task_get_response_info_form_dict = keywords_data_bing_search_volume_task_get_response_info.from_dict(keywords_data_bing_search_volume_task_get_response_info_dict)

root / docs

[Back to README.md]