Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

BrowserMarkdownResult

Properties

Name Type Description Notes
url str The rendered URL.
markdown str The page content rendered to Markdown.

Example

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]