Dropbox .NET SDK

Class JoinTeamDetails

Additional information relevant when a new member joins the team.

Inheritance
object
JoinTeamDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class JoinTeamDetails

Constructors

View Source

JoinTeamDetails(IEnumerable<UserLinkedAppLogInfo>, IEnumerable<LinkedDeviceLogInfo>, IEnumerable<FolderLogInfo>, bool?, bool?, bool?, bool?, bool?, bool?)

Initializes a new instance of the JoinTeamDetails class.

Declaration
public JoinTeamDetails(IEnumerable<UserLinkedAppLogInfo> linkedApps, IEnumerable<LinkedDeviceLogInfo> linkedDevices, IEnumerable<FolderLogInfo> linkedSharedFolders, bool? wasLinkedAppsTruncated = null, bool? wasLinkedDevicesTruncated = null, bool? wasLinkedSharedFoldersTruncated = null, bool? hasLinkedApps = null, bool? hasLinkedDevices = null, bool? hasLinkedSharedFolders = null)
Parameters
Type Name Description
IEnumerable<UserLinkedAppLogInfo> linkedApps

Field is deprecated. Linked applications. (Deprecated) Please use has_linked_apps boolean field instead.

IEnumerable<LinkedDeviceLogInfo> linkedDevices

Field is deprecated. Linked devices. (Deprecated) Please use has_linked_devices boolean field instead.

IEnumerable<FolderLogInfo> linkedSharedFolders

Field is deprecated. Linked shared folders. (Deprecated) Please use has_linked_shared_folders boolean field instead.

bool? wasLinkedAppsTruncated

Field is deprecated. (Deprecated) True if the linked_apps list was truncated to the maximum supported length (50).

bool? wasLinkedDevicesTruncated

Field is deprecated. (Deprecated) True if the linked_devices list was truncated to the maximum supported length (50).

bool? wasLinkedSharedFoldersTruncated

Field is deprecated. (Deprecated) True if the linked_shared_folders list was truncated to the maximum supported length (50).

bool? hasLinkedApps

True if the user had linked apps at event time.

bool? hasLinkedDevices

True if the user had linked apps at event time.

bool? hasLinkedSharedFolders

True if the user had linked shared folders at event time.

Properties

View Source

HasLinkedApps

True if the user had linked apps at event time.

Declaration
public bool? HasLinkedApps { get; protected set; }
Property Value
Type Description
bool?
View Source

HasLinkedDevices

True if the user had linked apps at event time.

Declaration
public bool? HasLinkedDevices { get; protected set; }
Property Value
Type Description
bool?
View Source

HasLinkedSharedFolders

True if the user had linked shared folders at event time.

Declaration
public bool? HasLinkedSharedFolders { get; protected set; }
Property Value
Type Description
bool?
View Source

LinkedApps

Field is deprecated. Linked applications. (Deprecated) Please use has_linked_apps boolean field instead.

Declaration
public IList<UserLinkedAppLogInfo> LinkedApps { get; protected set; }
Property Value
Type Description
IList<UserLinkedAppLogInfo>
View Source

LinkedDevices

Field is deprecated. Linked devices. (Deprecated) Please use has_linked_devices boolean field instead.

Declaration
public IList<LinkedDeviceLogInfo> LinkedDevices { get; protected set; }
Property Value
Type Description
IList<LinkedDeviceLogInfo>
View Source

LinkedSharedFolders

Field is deprecated. Linked shared folders. (Deprecated) Please use has_linked_shared_folders boolean field instead.

Declaration
public IList<FolderLogInfo> LinkedSharedFolders { get; protected set; }
Property Value
Type Description
IList<FolderLogInfo>
View Source

WasLinkedAppsTruncated

Field is deprecated. (Deprecated) True if the linked_apps list was truncated to the maximum supported length (50).

Declaration
public bool? WasLinkedAppsTruncated { get; protected set; }
Property Value
Type Description
bool?
View Source

WasLinkedDevicesTruncated

Field is deprecated. (Deprecated) True if the linked_devices list was truncated to the maximum supported length (50).

Declaration
public bool? WasLinkedDevicesTruncated { get; protected set; }
Property Value
Type Description
bool?
View Source

WasLinkedSharedFoldersTruncated

Field is deprecated. (Deprecated) True if the linked_shared_folders list was truncated to the maximum supported length (50).

Declaration
public bool? WasLinkedSharedFoldersTruncated { get; protected set; }
Property Value
Type Description
bool?
  • View Source
In this article
Back to top Dropbox .NET SDK