Show / Hide Table of Contents

Class GetStorageReport

Storage 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
GetStorageReport
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 GetStorageReport : BaseDfbReport

Constructors

| Improve this Doc View Source

GetStorageReport(String, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<IEnumerable<StorageBucket>>)

Initializes a new instance of the GetStorageReport class.

Declaration
public GetStorageReport(string startDate, IEnumerable<ulong?> totalUsage, IEnumerable<ulong?> sharedUsage, IEnumerable<ulong?> unsharedUsage, IEnumerable<ulong?> sharedFolders, IEnumerable<IEnumerable<StorageBucket>> memberStorageMap)
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>> totalUsage

Sum of the shared, unshared, and datastore usages, for each day.

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> sharedUsage

Array of the combined size (bytes) of team members' shared folders, for each day.

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> unsharedUsage

Array of the combined size (bytes) of team members' root namespaces, for each day.

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> sharedFolders

Array of the number of shared folders owned by team members, for each day.

System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<StorageBucket>> memberStorageMap

Array of storage summaries of team members' account sizes. Each storage summary is an array of key, value pairs, where each pair describes a storage bucket. The key indicates the upper bound of the bucket and the value is the number of users in that bucket. There is one such summary per day. If there is no data for a day, the storage summary will be empty.

Properties

| Improve this Doc View Source

MemberStorageMap

Array of storage summaries of team members' account sizes. Each storage summary is an array of key, value pairs, where each pair describes a storage bucket. The key indicates the upper bound of the bucket and the value is the number of users in that bucket. There is one such summary per day. If there is no data for a day, the storage summary will be empty.

Declaration
public IList<IList<StorageBucket>> MemberStorageMap { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Collections.Generic.IList<StorageBucket>>
| Improve this Doc View Source

SharedFolders

Array of the number of shared folders owned by team members, for each day.

Declaration
public IList<ulong?> SharedFolders { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc View Source

SharedUsage

Array of the combined size (bytes) of team members' shared folders, for each day.

Declaration
public IList<ulong?> SharedUsage { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc View Source

TotalUsage

Sum of the shared, unshared, and datastore usages, for each day.

Declaration
public IList<ulong?> TotalUsage { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc View Source

UnsharedUsage

Array of the combined size (bytes) of team members' root namespaces, for each day.

Declaration
public IList<ulong?> UnsharedUsage { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GetStorageReport(String, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<IEnumerable<StorageBucket>>)
  • Properties
    • MemberStorageMap
    • SharedFolders
    • SharedUsage
    • TotalUsage
    • UnsharedUsage
Back to top Generated by DocFX