Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 2.51 KB

File metadata and controls

39 lines (27 loc) · 2.51 KB

root / docs

[Back to README.md]

DomainAnalyticsErrorsRequestInfo

Properties

Name Type Description Notes
limit int the maximum number of returned tasks that responded with an error optional field default value: 1000 maximum value: 1000 [optional]
offset int offset in the results array of returned tasks optional field default value: 0 if you specify the 10 value, the first ten tasks in the results array will be omitted and the data will be provided for the successive tasks [optional]
filtered_function str return tasks with a certain function use this field to obtain a list of tasks that returned an error filtered by a certain function you can filter the results by the values you receive in the function fields of the API response i.e., once you receive unfiltered results, you can call this API again to filter them by function example: domain_analytics/task_get, postback_url, pingback_url [optional]
datetime_from str start time for filtering results optional field allows filtering results by the datetime parameter within the range of the last 24 hours; must be specified in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” example: 2021-11-15 12:57:46 +00:00 [optional]
datetime_to str finish time for filtering results optional field allows filtering results by the datetime parameter within the range of the last 24 hours; must be specified in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” example: 2021-11-15 13:57:46 +00:00 [optional]

Example

from dataforseo_client.models.domain_analytics_errors_request_info import DomainAnalyticsErrorsRequestInfo

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

# convert the object into a dict
domain_analytics_errors_request_info_dict = domain_analytics_errors_request_info_instance.to_dict()
# create an instance of DomainAnalyticsErrorsRequestInfo from a dict
domain_analytics_errors_request_info_form_dict = domain_analytics_errors_request_info.from_dict(domain_analytics_errors_request_info_dict)

root / docs

[Back to README.md]