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.
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GetStorageReport : BaseDfbReport
Constructors
| Improve this Doc View SourceGetStorageReport(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 SourceMemberStorageMap
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>> |
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>> |
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>> |
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>> |
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>> |