Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

BrowserScreenshotResult

Properties

Name Type Description Notes
url str The rendered URL.
format str Output image format.
image_base64 str Base64-encoded image bytes.
size_bytes int Decoded image size in bytes.

Example

from unifapi.models.browser_screenshot_result import BrowserScreenshotResult

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

# convert the object into a dict
browser_screenshot_result_dict = browser_screenshot_result_instance.to_dict()
# create an instance of BrowserScreenshotResult from a dict
browser_screenshot_result_from_dict = BrowserScreenshotResult.from_dict(browser_screenshot_result_dict)

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