Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 2.18 KB

File metadata and controls

43 lines (31 loc) · 2.18 KB

root / docs

[Back to README.md]

AppDataGoogleAppInfoTaskGetAdvancedResultInfo

Properties

Name Type Description Notes
app_id str application id received in a POST request [optional]
se_domain str search engine domain in a POST array [optional]
location_code int location code in a POST array [optional]
language_code str language code in a POST array [optional]
check_url str direct URL to search engine results you can use it to make sure that we provided accurate results [optional]
datetime str date and time when the result was received in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” example: 2019-11-15 12:57:46 +00:00 [optional]
se_results_count int the total number of results [optional]
items_count int the number of items in the results array [optional]
items List[BaseAppDataSerpElementItem] found app info [optional]

Example

from dataforseo_client.models.app_data_google_app_info_task_get_advanced_result_info import AppDataGoogleAppInfoTaskGetAdvancedResultInfo

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

# convert the object into a dict
app_data_google_app_info_task_get_advanced_result_info_dict = app_data_google_app_info_task_get_advanced_result_info_instance.to_dict()
# create an instance of AppDataGoogleAppInfoTaskGetAdvancedResultInfo from a dict
app_data_google_app_info_task_get_advanced_result_info_form_dict = app_data_google_app_info_task_get_advanced_result_info.from_dict(app_data_google_app_info_task_get_advanced_result_info_dict)

root / docs

[Back to README.md]