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
System.Object
BaseDfbReport
GetMembershipReport
Inherited Members
BaseDfbReport.StartDate
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GetMembershipReport : BaseDfbReport

Constructors

| Improve this Doc View Source

GetMembershipReport(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 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc View Source

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>>
| Improve this Doc View Source

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>>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GetMembershipReport(String, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>)
  • Properties
    • Licenses
    • MembersJoined
    • PendingInvites
    • SuspendedMembers
    • TeamSize
Back to top Generated by DocFX