Show / Hide Table of Contents

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 Source

ListTeamDevicesResult(IEnumerable<MemberDevices>, Boolean, String)

Initializes a new instance of the ListTeamDevicesResult class.

Declaration
public ListTeamDevicesResult(IEnumerable<MemberDevices> devices, bool hasMore, string cursor = null)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<MemberDevices> devices

The devices of each member of the team.

System.Boolean hasMore

If true, then there are more devices available. Pass the cursor to DevicesListTeamDevicesAsync(ListTeamDevicesArg) to retrieve the rest.

System.String cursor

Pass the cursor into DevicesListTeamDevicesAsync(ListTeamDevicesArg) to receive the next sub list of team's devices.

Properties

| Improve this Doc View Source

Cursor

Pass the cursor into DevicesListTeamDevicesAsync(ListTeamDevicesArg) to receive the next sub list of team's devices.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Devices

The devices of each member of the team.

Declaration
public IList<MemberDevices> Devices { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<MemberDevices>
| Improve this Doc View Source

HasMore

If true, then there are more devices available. Pass the cursor to DevicesListTeamDevicesAsync(ListTeamDevicesArg) to retrieve the rest.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListTeamDevicesResult(IEnumerable<MemberDevices>, Boolean, String)
  • Properties
    • Cursor
    • Devices
    • HasMore
Back to top Generated by DocFX