SearchResults

public struct SearchResults : Equatable, CodableModel

Search results wrapper

  • Currencies (coins) matching search criteria

    • It will exist only when a request was performed with currencies category

    Declaration

    Swift

    public let currencies: [Coin]?
  • ICOs matching search criteria

    • It will exist only when a request was performed with icos category

    Declaration

    Swift

    public let icos: [Ico]?
  • Exchanges matching search criteria

    • It will exist only when a request was performed with exchanges category

    Declaration

    Swift

    public let exchanges: [Exchange]?
  • People matching search criteria

    • It will exist only when a request was performed with people category

    Declaration

    Swift

    public let people: [Person]?
  • Tags matching search criteria

    • It will exist only when a request was performed with tags category

    Declaration

    Swift

    public let tags: [Tag]?
  • Search.Currency model, at the moment it using Coin model

    Declaration

    Swift

    public typealias Currency = Coin
  • Search.Person model

    See more

    Declaration

    Swift

    public struct Person : Codable, Equatable
  • Ico

    Search.Ico model

    See more

    Declaration

    Swift

    public struct Ico : Codable, Equatable
  • Search.Exchange model

    See more

    Declaration

    Swift

    public struct Exchange : Codable, Equatable
  • Tag

    Search.Tag

    See more

    Declaration

    Swift

    public struct Tag : Codable, Equatable, TagType