| Name |
Type |
Description |
Notes |
| url |
str |
The rendered URL. |
|
| links |
List[str] |
Absolute URLs discovered on the page. |
|
from unifapi.models.browser_links_result import BrowserLinksResult
# TODO update the JSON string below
json = "{}"
# create an instance of BrowserLinksResult from a JSON string
browser_links_result_instance = BrowserLinksResult.from_json(json)
# print the JSON string representation of the object
print(BrowserLinksResult.to_json())
# convert the object into a dict
browser_links_result_dict = browser_links_result_instance.to_dict()
# create an instance of BrowserLinksResult from a dict
browser_links_result_from_dict = BrowserLinksResult.from_dict(browser_links_result_dict)
[Back to Model list] [Back to API list] [Back to README]