Class GroupsListResult
The groups list result object
Inheritance
System.Object
GroupsListResult
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.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupsListResult
Constructors
| Improve this Doc View SourceGroupsListResult(IEnumerable<GroupSummary>, String, Boolean)
Initializes a new instance of the Groups
Declaration
public GroupsListResult(IEnumerable<GroupSummary> groups, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System. |
groups | The groups |
System. |
cursor | Pass the cursor into Groups |
System. |
hasMore | Is true if there are additional groups that have not been
returned yet. An additional call to Groups |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into Groups
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Groups
Gets the groups of the groups list result
Declaration
public IList<GroupSummary> Groups { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
HasMore
Is true if there are additional groups that have not been returned yet. An
additional call to Groups
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System. |