SearchResults
public struct SearchResults : Equatable, CodableModel
Search results wrapper
-
Currencies (coins) matching search criteria
- It will exist only when a request was performed with
currenciescategory
Declaration
Swift
public let currencies: [Coin]? - It will exist only when a request was performed with
-
ICOs matching search criteria
- It will exist only when a request was performed with
icoscategory
Declaration
Swift
public let icos: [Ico]? - It will exist only when a request was performed with
-
Exchanges matching search criteria
- It will exist only when a request was performed with
exchangescategory
Declaration
Swift
public let exchanges: [Exchange]? - It will exist only when a request was performed with
-
People matching search criteria
- It will exist only when a request was performed with
peoplecategory
Declaration
Swift
public let people: [Person]? - It will exist only when a request was performed with
-
Tags matching search criteria
- It will exist only when a request was performed with
tagscategory
Declaration
Swift
public let tags: [Tag]? - It will exist only when a request was performed with
-
Search.Person model
See moreDeclaration
Swift
public struct Person : Codable, Equatable -
Search.Ico model
See moreDeclaration
Swift
public struct Ico : Codable, Equatable -
Search.Exchange model
See moreDeclaration
Swift
public struct Exchange : Codable, Equatable
SearchResults Structure Reference