Class DevicesActive
Each of the items is an array of values, one value per day. The value is the number of devices active within a time window, ending with that day.
If there is no data for a day, then the value will be None.
Inheritance
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class DevicesActive
Constructors
| Improve this Doc View SourceDevicesActive(IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>)
Initializes a new instance of the DevicesActive class.
Declaration
public DevicesActive(IEnumerable<ulong?> windows, IEnumerable<ulong?> macos, IEnumerable<ulong?> linux, IEnumerable<ulong?> ios, IEnumerable<ulong?> android, IEnumerable<ulong?> other, IEnumerable<ulong?> total)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | windows | Array of number of linked windows (desktop) clients with activity. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | macos | Array of number of linked mac (desktop) clients with activity. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | linux | Array of number of linked linus (desktop) clients with activity. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | ios | Array of number of linked ios devices with activity. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | android | Array of number of linked android devices with activity. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | other | Array of number of other linked devices (blackberry, windows phone, etc) with activity. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | total | Array of total number of linked clients with activity. |
Properties
| Improve this Doc View SourceAndroid
Array of number of linked android devices with activity.
Declaration
public IList<ulong?> Android { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
Ios
Array of number of linked ios devices with activity.
Declaration
public IList<ulong?> Ios { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
Linux
Array of number of linked linus (desktop) clients with activity.
Declaration
public IList<ulong?> Linux { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
Macos
Array of number of linked mac (desktop) clients with activity.
Declaration
public IList<ulong?> Macos { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
Other
Array of number of other linked devices (blackberry, windows phone, etc) with activity.
Declaration
public IList<ulong?> Other { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
Total
Array of total number of linked clients with activity.
Declaration
public IList<ulong?> Total { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
Windows
Array of number of linked windows (desktop) clients with activity.
Declaration
public IList<ulong?> Windows { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |