Show / Hide Table of Contents

Class PaperFolderCreateArg

The paper folder create arg object

Inheritance
System.Object
PaperFolderCreateArg
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperFolderCreateArg

Constructors

| Improve this Doc View Source

PaperFolderCreateArg(String, String, Nullable<Boolean>)

Initializes a new instance of the PaperFolderCreateArg class.

Declaration
public PaperFolderCreateArg(string name, string parentFolderId = null, bool? isTeamFolder = null)
Parameters
Type Name Description
System.String name

The name of the new Paper folder.

System.String parentFolderId

The encrypted Paper folder Id where the new Paper folder should be created. The API user has to have write access to this folder or error is thrown. If not supplied, the new folder will be created at top level.

System.Nullable<System.Boolean> isTeamFolder

Whether the folder to be created should be a team folder. This value will be ignored if parent_folder_id is supplied, as the new folder will inherit the type (private or team folder) from its parent. We will by default create a top-level private folder if both parent_folder_id and is_team_folder are not supplied.

Properties

| Improve this Doc View Source

IsTeamFolder

Whether the folder to be created should be a team folder. This value will be ignored if parent_folder_id is supplied, as the new folder will inherit the type (private or team folder) from its parent. We will by default create a top-level private folder if both parent_folder_id and is_team_folder are not supplied.

Declaration
public bool? IsTeamFolder { get; protected set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

Name

The name of the new Paper folder.

Declaration
public string Name { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ParentFolderId

The encrypted Paper folder Id where the new Paper folder should be created. The API user has to have write access to this folder or error is thrown. If not supplied, the new folder will be created at top level.

Declaration
public string ParentFolderId { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • PaperFolderCreateArg(String, String, Nullable<Boolean>)
  • Properties
    • IsTeamFolder
    • Name
    • ParentFolderId
Back to top Generated by DocFX