DevicesActive
open class DevicesActive : CustomStringConvertible
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.
-
Array of number of linked windows (desktop) clients with activity.
Declaration
Swift
public let windows: Array<UInt64?>
-
Array of number of linked mac (desktop) clients with activity.
Declaration
Swift
public let macos: Array<UInt64?>
-
Array of number of linked linus (desktop) clients with activity.
Declaration
Swift
public let linux: Array<UInt64?>
-
Array of number of linked ios devices with activity.
Declaration
Swift
public let ios: Array<UInt64?>
-
Array of number of linked android devices with activity.
Declaration
Swift
public let android: Array<UInt64?>
-
Array of number of other linked devices (blackberry, windows phone, etc) with activity.
Declaration
Swift
public let other: Array<UInt64?>
-
Array of total number of linked clients with activity.
Declaration
Swift
public let total: Array<UInt64?>
-
Declaration
Swift
open var description: String { get }