Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperDocGetMetadataResult

Metadata returned by docs/get_metadata.

Inheritance
object
PaperDocGetMetadataResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperDocGetMetadataResult

Constructors

View Source

PaperDocGetMetadataResult(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 Source

CreatedDate

The Paper doc creation date.

Declaration
public DateTime CreatedDate { get; protected set; }
Property Value
Type Description
DateTime
View Source

DocId

The Paper doc ID.

Declaration
public string DocId { get; protected set; }
Property Value
Type Description
string
View Source

LastEditor

The email address of the last editor of the Paper doc.

Declaration
public string LastEditor { get; protected set; }
Property Value
Type Description
string
View Source

LastUpdatedDate

The date when the Paper doc was last edited.

Declaration
public DateTime LastUpdatedDate { get; protected set; }
Property Value
Type Description
DateTime
View Source

Owner

The Paper doc owner's email address.

Declaration
public string Owner { get; protected set; }
Property Value
Type Description
string
View Source

Revision

The Paper doc revision. Simply an ever increasing number.

Declaration
public long Revision { get; protected set; }
Property Value
Type Description
long
View Source

Status

The Paper doc status.

Declaration
public PaperDocStatus Status { get; protected set; }
Property Value
Type Description
PaperDocStatus
View Source

Title

The Paper doc title.

Declaration
public string Title { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK