Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.98 KB

BacklinksDomainIntersectionLiveResponseInfo.md

File metadata and controls

36 lines (27 loc) · 1.98 KB

BacklinksDomainIntersectionLiveResponseInfo

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

Example

from dataforseo_client.models.backlinks_domain_intersection_live_response_info import BacklinksDomainIntersectionLiveResponseInfo

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

# convert the object into a dict
backlinks_domain_intersection_live_response_info_dict = backlinks_domain_intersection_live_response_info_instance.to_dict()
# create an instance of BacklinksDomainIntersectionLiveResponseInfo from a dict
backlinks_domain_intersection_live_response_info_from_dict = BacklinksDomainIntersectionLiveResponseInfo.from_dict(backlinks_domain_intersection_live_response_info_dict)

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