Class PaperFolderCreateArg
The paper folder create arg object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperFolderCreateArg
Constructors
| Improve this Doc View SourcePaperFolderCreateArg(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 SourceIsTeamFolder
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> |
Name
The name of the new Paper folder.
Declaration
public string Name { get; protected set; }
Property Value
Type | Description |
---|---|
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.
Declaration
public string ParentFolderId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |