| Name | Type | Description | Notes |
|---|---|---|---|
| datetime_from | str | start time for filtering results required field if include_metadata is set to true, maximum value: a month from current datetime; if include_metadata is set to false, maximum value: six months from current datetime; must be specified in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” example: 2023-01-15 12:57:46 +00:00 | [optional] |
| datetime_to | str | finish time for filtering results required field maximum value: current datetime; must be specified in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” example: 2023-01-31 13:57:46 +00:00 | [optional] |
| limit | int | the maximum number of returned task IDs optional field default value: 1000 maximum value: 1000 | [optional] |
| offset | int | offset in the results array of returned task IDs optional field default value: 0 if you specify the 10 value, the first ten tasks in the results array will be omitted | [optional] |
| sort | str | sorting by task execution time optional field possible values: "asc", "desc" default value: "asc" | [optional] |
| include_metadata | bool | include task metadata in the respond optional field default value: false | [optional] |
from dataforseo_client.models.keywords_data_id_list_request_info import KeywordsDataIdListRequestInfo
# TODO update the JSON string below
json = "{}"
# create an instance of KeywordsDataIdListRequestInfo from a JSON string
keywords_data_id_list_request_info_instance = KeywordsDataIdListRequestInfo.from_json(json)
# print the JSON string representation of the object
print KeywordsDataIdListRequestInfo.to_json()
# convert the object into a dict
keywords_data_id_list_request_info_dict = keywords_data_id_list_request_info_instance.to_dict()
# create an instance of KeywordsDataIdListRequestInfo from a dict
keywords_data_id_list_request_info_form_dict = keywords_data_id_list_request_info.from_dict(keywords_data_id_list_request_info_dict)