TweakTradeValue

public enum TweakTradeValue : Codable, CustomStringConvertible

A type with values that represent the a json value.

  • Undocumented

    Declaration

    Swift

    case bool(Bool)
  • Undocumented

    Declaration

    Swift

    case int(Int)
  • Undocumented

    Declaration

    Swift

    case uInt(UInt)
  • Undocumented

    Declaration

    Swift

    case double(Double)
  • Undocumented

    Declaration

    Swift

    case string(String)
  • Undocumented

    Declaration

    Swift

    case array([TweakTradeValue])
  • Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws