Dropbox .NET SDK
Show / Hide Table of Contents

Class GetDevicesReport

Devices Report Result. Contains subsections for different time ranges of activity. Each of the items in each subsection of the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.

Inheritance
object
BaseDfbReport
GetDevicesReport
Inherited Members
BaseDfbReport.StartDate
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GetDevicesReport : BaseDfbReport

Constructors

View Source

GetDevicesReport(string, DevicesActive, DevicesActive, DevicesActive)

Initializes a new instance of the GetDevicesReport class.

Declaration
public GetDevicesReport(string startDate, DevicesActive active1Day, DevicesActive active7Day, DevicesActive active28Day)
Parameters
Type Name Description
string startDate

First date present in the results as 'YYYY-MM-DD' or None.

DevicesActive active1Day

Report of the number of devices active in the last day.

DevicesActive active7Day

Report of the number of devices active in the last 7 days.

DevicesActive active28Day

Report of the number of devices active in the last 28 days.

Properties

View Source

Active1Day

Report of the number of devices active in the last day.

Declaration
public DevicesActive Active1Day { get; protected set; }
Property Value
Type Description
DevicesActive
View Source

Active28Day

Report of the number of devices active in the last 28 days.

Declaration
public DevicesActive Active28Day { get; protected set; }
Property Value
Type Description
DevicesActive
View Source

Active7Day

Report of the number of devices active in the last 7 days.

Declaration
public DevicesActive Active7Day { get; protected set; }
Property Value
Type Description
DevicesActive
  • View Source
In this article
Back to top Dropbox .NET SDK