| Name |
Type |
Description |
Notes |
| url |
str |
The rendered URL. |
|
| markdown |
str |
The page content rendered to Markdown. |
|
from unifapi.models.browser_markdown_result import BrowserMarkdownResult
# TODO update the JSON string below
json = "{}"
# create an instance of BrowserMarkdownResult from a JSON string
browser_markdown_result_instance = BrowserMarkdownResult.from_json(json)
# print the JSON string representation of the object
print(BrowserMarkdownResult.to_json())
# convert the object into a dict
browser_markdown_result_dict = browser_markdown_result_instance.to_dict()
# create an instance of BrowserMarkdownResult from a dict
browser_markdown_result_from_dict = BrowserMarkdownResult.from_dict(browser_markdown_result_dict)
[Back to Model list] [Back to API list] [Back to README]