Results

public struct Results : Codable

Represents the results of a search.

  • Undocumented

    Declaration

    Swift

    public init(accounts: [Account], posts: [Post], hashtags: [Tag])
  • Accounts which match the given query

    Declaration

    Swift

    public var accounts: [Account]
  • Posts which match the given query

    Declaration

    Swift

    public var posts: [Post]
  • Hashtags which match the given query

    Declaration

    Swift

    public var hashtags: [Tag]