ServerInfo

public struct ServerInfo

This is the response to the general server info query. It contains information about all the individual servers, represented by the aggregator server.

Service Info Struct

  • This breaks down the information for each type of service.

    Do not instantiate this. It is provided by the query instance.

    See more

    Declaration

    Swift

    public struct Service
  • The version of the aggregator server.

    Declaration

    Swift

    public let server_version: String
  • The last time the aggregator ran an update.

    Declaration

    Swift

    public let lastUpdate: Date
  • The services provided by the aggregator.

    Declaration

    Swift

    public let services: [Service]
  • The aggregate organization breakdown.

    Declaration

    Swift

    public let organizationTotals: [String : Int]
  • The total number of meetings in the server.

    Declaration

    Swift

    public var totalMeetings: Int { get }
  • The total number of servers reached by the server.

    Declaration

    Swift

    public var totalServers: Int { get }