Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperDocCreateArgs

The paper doc create args object

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

Constructors

View Source

PaperDocCreateArgs(ImportFormat, string)

Initializes a new instance of the PaperDocCreateArgs class.

Declaration
public PaperDocCreateArgs(ImportFormat importFormat, string parentFolderId = null)
Parameters
Type Name Description
ImportFormat importFormat

The format of provided data.

string parentFolderId

The Paper folder ID where the Paper document should be created. The API user has to have write access to this folder or error is thrown.

Properties

View Source

ImportFormat

The format of provided data.

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

ParentFolderId

The Paper folder ID where the Paper document should be created. The API user has to have write access to this folder or error is thrown.

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