Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperDocCreateUpdateResult

The paper doc create update result object

Inheritance
object
PaperDocCreateUpdateResult
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 PaperDocCreateUpdateResult

Constructors

View Source

PaperDocCreateUpdateResult(string, long, string)

Initializes a new instance of the PaperDocCreateUpdateResult class.

Declaration
public PaperDocCreateUpdateResult(string docId, long revision, string title)
Parameters
Type Name Description
string docId

Doc ID of the newly created doc.

long revision

The Paper doc revision. Simply an ever increasing number.

string title

The Paper doc title.

Properties

View Source

DocId

Doc ID of the newly created doc.

Declaration
public string DocId { 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

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