Class JoinTeamDetails
Additional information relevant when a new member joins the team.
Inheritance
Inherited Members
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class JoinTeamDetails
Constructors
| Improve this Doc View SourceJoinTeamDetails(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 SourceHasLinkedApps
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |