DevicesActive

public class DevicesActive : CustomStringConvertible, JSONRepresentable

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: [UInt64?]
  • Array of number of linked mac (desktop) clients with activity.

    Declaration

    Swift

    public let macos: [UInt64?]
  • Array of number of linked linus (desktop) clients with activity.

    Declaration

    Swift

    public let linux: [UInt64?]
  • ios

    Array of number of linked ios devices with activity.

    Declaration

    Swift

    public let ios: [UInt64?]
  • Array of number of linked android devices with activity.

    Declaration

    Swift

    public let android: [UInt64?]
  • Array of number of other linked devices (blackberry, windows phone, etc) with activity.

    Declaration

    Swift

    public let other: [UInt64?]
  • Array of total number of linked clients with activity.

    Declaration

    Swift

    public let total: [UInt64?]
  • Declaration

    Swift

    public var description: String { get }