Dropbox .NET SDK
Show / Hide Table of Contents

Class DocSubscriptionLevel

The subscription level of a Paper doc.

Inheritance
object
DocSubscriptionLevel
DocSubscriptionLevel.Default
DocSubscriptionLevel.Every
DocSubscriptionLevel.Ignore
DocSubscriptionLevel.NoEmail
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 DocSubscriptionLevel

Constructors

View Source

DocSubscriptionLevel()

Initializes a new instance of the DocSubscriptionLevel class.

Declaration
public DocSubscriptionLevel()

Properties

View Source

AsDefault

Gets this instance as a Default, or null.

Declaration
public DocSubscriptionLevel.Default AsDefault { get; }
Property Value
Type Description
DocSubscriptionLevel.Default
View Source

AsEvery

Gets this instance as a Every, or null.

Declaration
public DocSubscriptionLevel.Every AsEvery { get; }
Property Value
Type Description
DocSubscriptionLevel.Every
View Source

AsIgnore

Gets this instance as a Ignore, or null.

Declaration
public DocSubscriptionLevel.Ignore AsIgnore { get; }
Property Value
Type Description
DocSubscriptionLevel.Ignore
View Source

AsNoEmail

Gets this instance as a NoEmail, or null.

Declaration
public DocSubscriptionLevel.NoEmail AsNoEmail { get; }
Property Value
Type Description
DocSubscriptionLevel.NoEmail
View Source

IsDefault

Gets a value indicating whether this instance is Default

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

IsEvery

Gets a value indicating whether this instance is Every

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

IsIgnore

Gets a value indicating whether this instance is Ignore

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

IsNoEmail

Gets a value indicating whether this instance is NoEmail

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