Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.2 KB

BacklinksIdListRequestInfo.md

File metadata and controls

34 lines (25 loc) · 2.2 KB

BacklinksIdListRequestInfo

Properties

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]

Example

from dataforseo_client.models.backlinks_id_list_request_info import BacklinksIdListRequestInfo

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

# convert the object into a dict
backlinks_id_list_request_info_dict = backlinks_id_list_request_info_instance.to_dict()
# create an instance of BacklinksIdListRequestInfo from a dict
backlinks_id_list_request_info_from_dict = BacklinksIdListRequestInfo.from_dict(backlinks_id_list_request_info_dict)

[Back to Model list] [Back to API list] [Back to README]