Show / Hide Table of Contents

Class ListTeamAppsResult

Information returned by LinkedAppsListTeamLinkedAppsAsync(ListTeamAppsArg).

Inheritance
System.Object
ListTeamAppsResult
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 ListTeamAppsResult

Constructors

| Improve this Doc View Source

ListTeamAppsResult(IEnumerable<MemberLinkedApps>, Boolean, String)

Initializes a new instance of the ListTeamAppsResult class.

Declaration
public ListTeamAppsResult(IEnumerable<MemberLinkedApps> apps, bool hasMore, string cursor = null)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<MemberLinkedApps> apps

The linked applications of each member of the team.

System.Boolean hasMore

If true, then there are more apps available. Pass the cursor to LinkedAppsListTeamLinkedAppsAsync(ListTeamAppsArg) to retrieve the rest.

System.String cursor

Pass the cursor into LinkedAppsListTeamLinkedAppsAsync(ListTeamAppsArg) to receive the next sub list of team's applications.

Properties

| Improve this Doc View Source

Apps

The linked applications of each member of the team.

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

Cursor

Pass the cursor into LinkedAppsListTeamLinkedAppsAsync(ListTeamAppsArg) to receive the next sub list of team's applications.

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

HasMore

If true, then there are more apps available. Pass the cursor to LinkedAppsListTeamLinkedAppsAsync(ListTeamAppsArg) 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
    • ListTeamAppsResult(IEnumerable<MemberLinkedApps>, Boolean, String)
  • Properties
    • Apps
    • Cursor
    • HasMore
Back to top Generated by DocFX