Package com.dropbox.core.v2.team
Class DevicesActive
- java.lang.Object
- 
- com.dropbox.core.v2.team.DevicesActive
 
- 
 public class DevicesActive extends java.lang.ObjectEach 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.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.util.List<java.lang.Long>androidprotected java.util.List<java.lang.Long>iosprotected java.util.List<java.lang.Long>linuxprotected java.util.List<java.lang.Long>macosprotected java.util.List<java.lang.Long>otherprotected java.util.List<java.lang.Long>totalprotected java.util.List<java.lang.Long>windows
 - 
Constructor SummaryConstructors Constructor Description DevicesActive(java.util.List<java.lang.Long> windows, java.util.List<java.lang.Long> macos, java.util.List<java.lang.Long> linux, java.util.List<java.lang.Long> ios, java.util.List<java.lang.Long> android, java.util.List<java.lang.Long> other, java.util.List<java.lang.Long> total)Each of the items is an array of values, one value per day.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<java.lang.Long>getAndroid()Array of number of linked android devices with activity.java.util.List<java.lang.Long>getIos()Array of number of linked ios devices with activity.java.util.List<java.lang.Long>getLinux()Array of number of linked linus (desktop) clients with activity.java.util.List<java.lang.Long>getMacos()Array of number of linked mac (desktop) clients with activity.java.util.List<java.lang.Long>getOther()Array of number of other linked devices (blackberry, windows phone, etc) with activity.java.util.List<java.lang.Long>getTotal()Array of total number of linked clients with activity.java.util.List<java.lang.Long>getWindows()Array of number of linked windows (desktop) clients with activity.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
windowsprotected final java.util.List<java.lang.Long> windows 
 - 
macosprotected final java.util.List<java.lang.Long> macos 
 - 
linuxprotected final java.util.List<java.lang.Long> linux 
 - 
iosprotected final java.util.List<java.lang.Long> ios 
 - 
androidprotected final java.util.List<java.lang.Long> android 
 - 
otherprotected final java.util.List<java.lang.Long> other 
 - 
totalprotected final java.util.List<java.lang.Long> total 
 
- 
 - 
Constructor Detail- 
DevicesActivepublic DevicesActive(java.util.List<java.lang.Long> windows, java.util.List<java.lang.Long> macos, java.util.List<java.lang.Long> linux, java.util.List<java.lang.Long> ios, java.util.List<java.lang.Long> android, java.util.List<java.lang.Long> other, java.util.List<java.lang.Long> total)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.- Parameters:
- windows- Array of number of linked windows (desktop) clients with activity. Must not contain a- nullitem and not be- null.
- macos- Array of number of linked mac (desktop) clients with activity. Must not contain a- nullitem and not be- null.
- linux- Array of number of linked linus (desktop) clients with activity. Must not contain a- nullitem and not be- null.
- ios- Array of number of linked ios devices with activity. Must not contain a- nullitem and not be- null.
- android- Array of number of linked android devices with activity. Must not contain a- nullitem and not be- null.
- other- Array of number of other linked devices (blackberry, windows phone, etc) with activity. Must not contain a- nullitem and not be- null.
- total- Array of total number of linked clients with activity. Must not contain a- nullitem and not be- null.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getWindowspublic java.util.List<java.lang.Long> getWindows() Array of number of linked windows (desktop) clients with activity.- Returns:
- value for this field, never null.
 
 - 
getMacospublic java.util.List<java.lang.Long> getMacos() Array of number of linked mac (desktop) clients with activity.- Returns:
- value for this field, never null.
 
 - 
getLinuxpublic java.util.List<java.lang.Long> getLinux() Array of number of linked linus (desktop) clients with activity.- Returns:
- value for this field, never null.
 
 - 
getIospublic java.util.List<java.lang.Long> getIos() Array of number of linked ios devices with activity.- Returns:
- value for this field, never null.
 
 - 
getAndroidpublic java.util.List<java.lang.Long> getAndroid() Array of number of linked android devices with activity.- Returns:
- value for this field, never null.
 
 - 
getOtherpublic java.util.List<java.lang.Long> getOther() Array of number of other linked devices (blackberry, windows phone, etc) with activity.- Returns:
- value for this field, never null.
 
 - 
getTotalpublic java.util.List<java.lang.Long> getTotal() Array of total number of linked clients with activity.- Returns:
- value for this field, never null.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
toStringMultilinepublic java.lang.String toStringMultiline() Returns a String representation of this object formatted for easier readability.The returned String may contain newlines. - Returns:
- Formatted, multiline String representation of this object
 
 
- 
 
-