PageMeta

public struct PageMeta : Encodable

This struct holds metadata about the page of meeting results, as reported by the server.

Exported Public Interface

  • This is the actual size of this single page of results, in results (not bytes).

    Declaration

    Swift

    public let actualSize: Int
  • This is the number of results allowed as a maximum, per page, in results.

    Declaration

    Swift

    public let pageSize: Int
  • This is the 0-based starting index, of the total found set (in results), for this page.

    Declaration

    Swift

    public let startingIndex: Int
  • This is the total size of all results in the found set.

    Declaration

    Swift

    public let total: Int
  • This is the total number of pages that contain the found set.

    Declaration

    Swift

    public let totalPages: Int
  • This is the 0-based index of this page of results.

    Declaration

    Swift

    public let page: Int
  • This is the number of seconds, reported by the server, to generate this page of results.

    Declaration

    Swift

    public let searchTime: TimeInterval