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
| Improve this Doc View SourceGetMembershipReport(String, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>)
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 |
---|---|---|
System.String | startDate | First date present in the results as 'YYYY-MM-DD' or None. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | teamSize | Team size, for each day. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | pendingInvites | The number of pending invites to the team, for each day. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | membersJoined | The number of members that joined the team, for each day. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | suspendedMembers | The number of suspended team members, for each day. |
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> | licenses | The total number of licenses the team has, for each day. |
Properties
| Improve this Doc 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 |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
MembersJoined
The number of members that joined the team, for each day.
Declaration
public IList<ulong?> MembersJoined { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
PendingInvites
The number of pending invites to the team, for each day.
Declaration
public IList<ulong?> PendingInvites { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
SuspendedMembers
The number of suspended team members, for each day.
Declaration
public IList<ulong?> SuspendedMembers { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |
TeamSize
Team size, for each day.
Declaration
public IList<ulong?> TeamSize { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Nullable<System.UInt64>> |