GetActivityReport

public class GetActivityReport : Team.BaseDfbReport

Activity 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.

  • Array of total number of adds by team members.

    Declaration

    Swift

    public let adds: [UInt64?]
  • Array of number of edits by team members. If the same user edits the same file multiple times this is counted as a single edit.

    Declaration

    Swift

    public let edits: [UInt64?]
  • Array of total number of deletes by team members.

    Declaration

    Swift

    public let deletes: [UInt64?]
  • Array of the number of users who have been active in the last 28 days.

    Declaration

    Swift

    public let activeUsers28Day: [UInt64?]
  • Array of the number of users who have been active in the last week.

    Declaration

    Swift

    public let activeUsers7Day: [UInt64?]
  • Array of the number of users who have been active in the last day.

    Declaration

    Swift

    public let activeUsers1Day: [UInt64?]
  • Array of the number of shared folders with some activity in the last 28 days.

    Declaration

    Swift

    public let activeSharedFolders28Day: [UInt64?]
  • Array of the number of shared folders with some activity in the last week.

    Declaration

    Swift

    public let activeSharedFolders7Day: [UInt64?]
  • Array of the number of shared folders with some activity in the last day.

    Declaration

    Swift

    public let activeSharedFolders1Day: [UInt64?]
  • Array of the number of shared links created.

    Declaration

    Swift

    public let sharedLinksCreated: [UInt64?]
  • Array of the number of views by team users to shared links created by the team.

    Declaration

    Swift

    public let sharedLinksViewedByTeam: [UInt64?]
  • Array of the number of views by users outside of the team to shared links created by the team.

    Declaration

    Swift

    public let sharedLinksViewedByOutsideUser: [UInt64?]
  • Array of the number of views by non-logged-in users to shared links created by the team.

    Declaration

    Swift

    public let sharedLinksViewedByNotLoggedIn: [UInt64?]
  • Array of the total number of views to shared links created by the team.

    Declaration

    Swift

    public let sharedLinksViewedTotal: [UInt64?]