Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperDocStatus

The status of a Paper doc.

Inheritance
object
PaperDocStatus
PaperDocStatus.Active
PaperDocStatus.Deleted
PaperDocStatus.Other
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 PaperDocStatus

Constructors

View Source

PaperDocStatus()

Initializes a new instance of the PaperDocStatus class.

Declaration
public PaperDocStatus()

Properties

View Source

AsActive

Gets this instance as a Active, or null.

Declaration
public PaperDocStatus.Active AsActive { get; }
Property Value
Type Description
PaperDocStatus.Active
View Source

AsDeleted

Gets this instance as a Deleted, or null.

Declaration
public PaperDocStatus.Deleted AsDeleted { get; }
Property Value
Type Description
PaperDocStatus.Deleted
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public PaperDocStatus.Other AsOther { get; }
Property Value
Type Description
PaperDocStatus.Other
View Source

IsActive

Gets a value indicating whether this instance is Active

Declaration
public bool IsActive { get; }
Property Value
Type Description
bool
View Source

IsDeleted

Gets a value indicating whether this instance is Deleted

Declaration
public bool IsDeleted { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK