Tag

public struct Tag : Equatable, CodableModel, TagType

Tag for ICO & Coins

  • id

    Tag id, eg. smart-contracts

    Declaration

    Swift

    public let id: String
  • Tag name, eg. Smart Contracts

    Declaration

    Swift

    public let name: String
  • Tag description

    Declaration

    Swift

    public let description: String?
  • Number of coins connected to this tag

    Declaration

    Swift

    public let coinCounter: Int
  • Number of ICOs connected to this tag

    Declaration

    Swift

    public let icoCounter: Int
  • Tag type from TypeCategory

    Declaration

    Swift

    public let type: TypeCategory
  • IDs of coins connected with this Tag

    • it’s optional value, available only when additionalFields=coins was added to request

    Declaration

    Swift

    public let coins: [String]?
  • Tag categories

    • functional: Functional Tags
    • technical: Technical Tags
    See more

    Declaration

    Swift

    public enum TypeCategory : String, Codable, CaseIterable