This documentation is for an older version of GoodData.
Go to the latest version of this article.
ExportService.
export_slides
export_slides(workspace_id: str, request: SlidesExportRequest, store_path: Union[str, Path], timeout: float, retry: float, max_retry: float) ->
None
Exports slides based on slide export request.
Parameters
name | type | description |
---|---|---|
workspace_id | str | The workspace id from which the visualization is to be exported. |
request | SlidesExportRequest | The request object containing the export parameters. |
store_path | Union[str, Path] | The path to store the exported file. Default to Path.cwd(). |
timeout | float | The maximum time to wait for the export to finish. Defaults to 60.0. |
retry | float | Initial wait time (in seconds) before retrying to get the exported content. Defaults to 0.2. |
max_retry | float | The maximum retry wait time (in seconds). Defaults to 5.0. |