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.
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GetMembershipReport : BaseDfbReport
Constructors
View SourceGetMembershipReport(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 SourceLicenses
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?> |
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?> |
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?> |
SuspendedMembers
The number of suspended team members, for each day.
Declaration
public IList<ulong?> SuspendedMembers { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<ulong?> |
TeamSize
Team size, for each day.
Declaration
public IList<ulong?> TeamSize { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<ulong?> |