Class NamespaceMetadata
Properties of a namespace.
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class NamespaceMetadata
Constructors
View SourceNamespaceMetadata(string, string, NamespaceType, string, long)
Initializes a new instance of the NamespaceMetadata class.
Declaration
public NamespaceMetadata(string name, string namespaceId, NamespaceType namespaceType, string teamMemberId = null, long quotaLimit = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name of this namespace. |
| string | namespaceId | The ID of this namespace. |
| NamespaceType | namespaceType | The type of this namespace. |
| string | teamMemberId | If this is a team member or app folder, the ID of the owning team member. Otherwise, this field is not present. |
| long | quotaLimit | The quota limit in bytes for this namespace tree. Only applicable to team folders. |
Properties
View SourceName
The name of this namespace.
Declaration
public string Name { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
NamespaceId
The ID of this namespace.
Declaration
public string NamespaceId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
NamespaceType
The type of this namespace.
Declaration
public NamespaceType NamespaceType { get; protected set; }
Property Value
| Type | Description |
|---|---|
| NamespaceType |
QuotaLimit
The quota limit in bytes for this namespace tree. Only applicable to team folders.
Declaration
public long QuotaLimit { get; protected set; }
Property Value
| Type | Description |
|---|---|
| long |
TeamMemberId
If this is a team member or app folder, the ID of the owning team member. Otherwise, this field is not present.
Declaration
public string TeamMemberId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |