Dropbox .NET SDK
Show / Hide Table of Contents

Class AddPaperDocUser

The add paper doc user object

Inheritance
object
RefPaperDoc
AddPaperDocUser
Inherited Members
RefPaperDoc.DocId
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 AddPaperDocUser : RefPaperDoc

Constructors

View Source

AddPaperDocUser(string, IEnumerable<AddMember>, string, bool)

Initializes a new instance of the AddPaperDocUser class.

Declaration
public AddPaperDocUser(string docId, IEnumerable<AddMember> members, string customMessage = null, bool quiet = false)
Parameters
Type Name Description
string docId

The Paper doc ID.

IEnumerable<AddMember> members

User which should be added to the Paper doc. Specify only email address or Dropbox account ID.

string customMessage

A personal message that will be emailed to each successfully added member.

bool quiet

Clients should set this to true if no email message shall be sent to added users.

Properties

View Source

CustomMessage

A personal message that will be emailed to each successfully added member.

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

Members

User which should be added to the Paper doc. Specify only email address or Dropbox account ID.

Declaration
public IList<AddMember> Members { get; protected set; }
Property Value
Type Description
IList<AddMember>
View Source

Quiet

Clients should set this to true if no email message shall be sent to added users.

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