ServerRollupData

struct ServerRollupData : Content

An array of totals for various database entities. Each value in the array is essentially a SQL SELECT COUNT() FROM <table>, although some values apply filters to the counted rows.

The CountType enum defines what each value in the counts array means, so counts[0] is a count of the Users in the database.

Used by: GET /api/v3/admin/rollup

  • An array with CountType.allCases.count values.

    Declaration

    Swift

    var counts: [Int32]
  • An int-valued enum that defines what each value in the counts array means. For API staibility it’s best if we only add values to the end of the list; causing existing elements to change threir index could cause confusion.

    See more

    Declaration

    Swift

    enum CountType : Int, CaseIterable