Show / Hide Table of Contents

Class JoinTeamDetails

Additional information relevant when a new member joins the team.

Inheritance
System.Object
JoinTeamDetails
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.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class JoinTeamDetails

Constructors

| Improve this Doc View Source

JoinTeamDetails(IEnumerable<UserLinkedAppLogInfo>, IEnumerable<LinkedDeviceLogInfo>, IEnumerable<FolderLogInfo>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

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
System.Collections.Generic.IEnumerable<UserLinkedAppLogInfo> linkedApps

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

System.Collections.Generic.IEnumerable<LinkedDeviceLogInfo> linkedDevices

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

System.Collections.Generic.IEnumerable<FolderLogInfo> linkedSharedFolders

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

System.Nullable<System.Boolean> wasLinkedAppsTruncated

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

System.Nullable<System.Boolean> wasLinkedDevicesTruncated

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

System.Nullable<System.Boolean> wasLinkedSharedFoldersTruncated

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

System.Nullable<System.Boolean> hasLinkedApps

True if the user had linked apps at event time.

System.Nullable<System.Boolean> hasLinkedDevices

True if the user had linked apps at event time.

System.Nullable<System.Boolean> hasLinkedSharedFolders

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

Properties

| Improve this Doc View Source

HasLinkedApps

True if the user had linked apps at event time.

Declaration
public bool? HasLinkedApps { get; protected set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

HasLinkedDevices

True if the user had linked apps at event time.

Declaration
public bool? HasLinkedDevices { get; protected set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc 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
System.Nullable<System.Boolean>
| Improve this Doc View Source

LinkedApps

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

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

LinkedDevices

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

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

LinkedSharedFolders

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
System.Collections.Generic.IList<FolderLogInfo>
| Improve this Doc View Source

WasLinkedAppsTruncated

(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
System.Nullable<System.Boolean>
| Improve this Doc View Source

WasLinkedDevicesTruncated

(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
System.Nullable<System.Boolean>
| Improve this Doc View Source

WasLinkedSharedFoldersTruncated

(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
System.Nullable<System.Boolean>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • JoinTeamDetails(IEnumerable<UserLinkedAppLogInfo>, IEnumerable<LinkedDeviceLogInfo>, IEnumerable<FolderLogInfo>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)
  • Properties
    • HasLinkedApps
    • HasLinkedDevices
    • HasLinkedSharedFolders
    • LinkedApps
    • LinkedDevices
    • LinkedSharedFolders
    • WasLinkedAppsTruncated
    • WasLinkedDevicesTruncated
    • WasLinkedSharedFoldersTruncated
Back to top Generated by DocFX