Class ListTeamDevicesResult
The list team devices result object
Inheritance
System.Object
ListTeamDevicesResult
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 ListTeamDevicesResult
Constructors
| Improve this Doc View SourceListTeamDevicesResult(IEnumerable<MemberDevices>, Boolean, String)
Initializes a new instance of the List
Declaration
public ListTeamDevicesResult(IEnumerable<MemberDevices> devices, bool hasMore, string cursor = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
devices | The devices of each member of the team. |
System. |
hasMore | If true, then there are more devices available. Pass the
cursor to Devices |
System. |
cursor | Pass the cursor into Devices |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into Devices
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Devices
The devices of each member of the team.
Declaration
public IList<MemberDevices> Devices { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
HasMore
If true, then there are more devices available. Pass the cursor to Devices
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System. |