Class TeamNamespacesListResult
Result for NamespacesListAsync(TeamNamespacesListArg).
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class TeamNamespacesListResult
Constructors
View SourceTeamNamespacesListResult(IEnumerable<NamespaceMetadata>, string, bool)
Initializes a new instance of the TeamNamespacesListResult class.
Declaration
public TeamNamespacesListResult(IEnumerable<NamespaceMetadata> namespaces, string cursor, bool hasMore)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<NamespaceMetadata> | namespaces | List of all namespaces the team can access. |
| string | cursor | Pass the cursor into NamespacesListContinueAsync(TeamNamespacesListContinueArg) to obtain additional namespaces. Note that duplicate namespaces may be returned. |
| bool | hasMore | Is true if there are additional namespaces that have not been returned yet. |
Properties
View SourceCursor
Pass the cursor into NamespacesListContinueAsync(TeamNamespacesListContinueArg) to obtain additional namespaces. Note that duplicate namespaces may be returned.
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
HasMore
Is true if there are additional namespaces that have not been returned yet.
Declaration
public bool HasMore { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Namespaces
List of all namespaces the team can access.
Declaration
public IList<NamespaceMetadata> Namespaces { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<NamespaceMetadata> |