Dropbox .NET SDK
Show / Hide Table of Contents

Class GetMembershipReport

Membership Report Result. Each of the items in 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
GetMembershipReport
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 GetMembershipReport : BaseDfbReport

Constructors

View Source

GetMembershipReport(string, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>)

Initializes a new instance of the GetMembershipReport class.

Declaration
public GetMembershipReport(string startDate, IEnumerable<ulong?> teamSize, IEnumerable<ulong?> pendingInvites, IEnumerable<ulong?> membersJoined, IEnumerable<ulong?> suspendedMembers, IEnumerable<ulong?> licenses)
Parameters
Type Name Description
string startDate

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

IEnumerable<ulong?> teamSize

Team size, for each day.

IEnumerable<ulong?> pendingInvites

The number of pending invites to the team, for each day.

IEnumerable<ulong?> membersJoined

The number of members that joined the team, for each day.

IEnumerable<ulong?> suspendedMembers

The number of suspended team members, for each day.

IEnumerable<ulong?> licenses

The total number of licenses the team has, for each day.

Properties

View Source

Licenses

The total number of licenses the team has, for each day.

Declaration
public IList<ulong?> Licenses { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

MembersJoined

The number of members that joined the team, for each day.

Declaration
public IList<ulong?> MembersJoined { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

PendingInvites

The number of pending invites to the team, for each day.

Declaration
public IList<ulong?> PendingInvites { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

SuspendedMembers

The number of suspended team members, for each day.

Declaration
public IList<ulong?> SuspendedMembers { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

TeamSize

Team size, for each day.

Declaration
public IList<ulong?> TeamSize { get; protected set; }
Property Value
Type Description
IList<ulong?>
  • View Source
In this article
Back to top Dropbox .NET SDK