Class PaperDocExportResult
The paper doc export result object
Inheritance
System.Object
PaperDocExportResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperDocExportResult
Constructors
| Improve this Doc View SourcePaperDocExportResult(String, String, Int64, String)
Initializes a new instance of the PaperDocExportResult class.
Declaration
public PaperDocExportResult(string owner, string title, long revision, string mimeType)
Parameters
Type | Name | Description |
---|---|---|
System.String | owner | The Paper doc owner's email address. |
System.String | title | The Paper doc title. |
System.Int64 | revision | The Paper doc revision. Simply an ever increasing number. |
System.String | mimeType | MIME type of the export. This corresponds to ExportFormat specified in the request. |
Properties
| Improve this Doc 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 |
---|---|
System.String |
Owner
The Paper doc owner's email address.
Declaration
public string Owner { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Revision
The Paper doc revision. Simply an ever increasing number.
Declaration
public long Revision { get; protected set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Title
The Paper doc title.
Declaration
public string Title { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |