Class PaperDocGetMetadataResult
Metadata returned by docs/get_metadata.
Inherited Members
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperDocGetMetadataResult
Constructors
View SourcePaperDocGetMetadataResult(string, string, string, DateTime, PaperDocStatus, long, DateTime, string)
Initializes a new instance of the PaperDocGetMetadataResult class.
Declaration
public PaperDocGetMetadataResult(string docId, string owner, string title, DateTime createdDate, PaperDocStatus status, long revision, DateTime lastUpdatedDate, string lastEditor)
Parameters
| Type | Name | Description |
|---|---|---|
| string | docId | The Paper doc ID. |
| string | owner | The Paper doc owner's email address. |
| string | title | The Paper doc title. |
| DateTime | createdDate | The Paper doc creation date. |
| PaperDocStatus | status | The Paper doc status. |
| long | revision | The Paper doc revision. Simply an ever increasing number. |
| DateTime | lastUpdatedDate | The date when the Paper doc was last edited. |
| string | lastEditor | The email address of the last editor of the Paper doc. |
Properties
View SourceCreatedDate
The Paper doc creation date.
Declaration
public DateTime CreatedDate { get; protected set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
DocId
The Paper doc ID.
Declaration
public string DocId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
LastEditor
The email address of the last editor of the Paper doc.
Declaration
public string LastEditor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
LastUpdatedDate
The date when the Paper doc was last edited.
Declaration
public DateTime LastUpdatedDate { get; protected set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
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 |
Status
The Paper doc status.
Declaration
public PaperDocStatus Status { get; protected set; }
Property Value
| Type | Description |
|---|---|
| PaperDocStatus |
Title
The Paper doc title.
Declaration
public string Title { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |