Class GetMarkdownArgs
Arguments for the asynchronous `get_markdown_async` route. Exactly one of
`file_id`, `path`, or `url` must be supplied via `file_id_or_url` to identify the
document to convert to markdown.
Inheritance
GetMarkdownArgs
Assembly: Dropbox.Api.dll
Syntax
public class GetMarkdownArgs
Constructors
View Source
GetMarkdownArgs(FileIdOrUrl, bool, bool)
Declaration
public GetMarkdownArgs(FileIdOrUrl fileIdOrUrl = null, bool enableOcr = false, bool embedImages = false)
Parameters
Properties
View Source
EmbedImages
When true, embed images as base64 data URIs in the markdown output. This can
significantly increase output size.
Declaration
public bool EmbedImages { get; protected set; }
Property Value
View Source
EnableOcr
Enable OCR for PDF documents. Processing is slower when enabled.
Declaration
public bool EnableOcr { get; protected set; }
Property Value
View Source
FileIdOrUrl
Declaration
public FileIdOrUrl FileIdOrUrl { get; protected set; }
Property Value