Class SharedFolderMetadataBase
Properties of the shared folder.
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class SharedFolderMetadataBase
Constructors
| Improve this Doc View SourceSharedFolderMetadataBase(AccessLevel, Boolean, Boolean, IEnumerable<String>, Team, String, String, String)
Initializes a new instance of the SharedFolderMetadataBase class.
Declaration
public SharedFolderMetadataBase(AccessLevel accessType, bool isInsideTeamFolder, bool isTeamFolder, IEnumerable<string> ownerDisplayNames = null, Team ownerTeam = null, string parentSharedFolderId = null, string pathLower = null, string parentFolderName = null)
Parameters
Type | Name | Description |
---|---|---|
AccessLevel | accessType | The current user's access level for this shared folder. |
System.Boolean | isInsideTeamFolder | Whether this folder is inside of a team folder. |
System.Boolean | isTeamFolder | Whether this folder is a team folder. |
System.Collections.Generic.IEnumerable<System.String> | ownerDisplayNames | The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched. |
Team | ownerTeam | The team that owns the folder. This field is not present if the folder is not owned by a team. |
System.String | parentSharedFolderId | The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder. |
System.String | pathLower | The lower-cased full path of this shared folder. Absent for unmounted folders. |
System.String | parentFolderName | Display name for the parent folder. |
Properties
| Improve this Doc View SourceAccessType
The current user's access level for this shared folder.
Declaration
public AccessLevel AccessType { get; protected set; }
Property Value
Type | Description |
---|---|
AccessLevel |
IsInsideTeamFolder
Whether this folder is inside of a team folder.
Declaration
public bool IsInsideTeamFolder { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsTeamFolder
Whether this folder is a team folder.
Declaration
public bool IsTeamFolder { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
OwnerDisplayNames
The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched.
Declaration
public IList<string> OwnerDisplayNames { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
OwnerTeam
The team that owns the folder. This field is not present if the folder is not owned by a team.
Declaration
public Team OwnerTeam { get; protected set; }
Property Value
Type | Description |
---|---|
Team |
ParentFolderName
Display name for the parent folder.
Declaration
public string ParentFolderName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
ParentSharedFolderId
The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.
Declaration
public string ParentSharedFolderId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
PathLower
The lower-cased full path of this shared folder. Absent for unmounted folders.
Declaration
public string PathLower { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |