Class PaperDocExportResult
The paper doc export result object
Inherited Members
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperDocExportResult
Constructors
View SourcePaperDocExportResult(string, string, long, string)
Initializes a new instance of the PaperDocExportResult class.
Declaration
public PaperDocExportResult(string owner, string title, long revision, string mimeType)
Parameters
| Type | Name | Description |
|---|---|---|
| string | owner | The Paper doc owner's email address. |
| string | title | The Paper doc title. |
| long | revision | The Paper doc revision. Simply an ever increasing number. |
| string | mimeType | MIME type of the export. This corresponds to ExportFormat specified in the request. |
Properties
View SourceMimeType
MIME type of the export. This corresponds to ExportFormat specified in the request.
Declaration
public string MimeType { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Owner
The Paper doc owner's email address.
Declaration
public string Owner { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Revision
The Paper doc revision. Simply an ever increasing number.
Declaration
public long Revision { get; protected set; }
Property Value
| Type | Description |
|---|---|
| long |
Title
The Paper doc title.
Declaration
public string Title { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |