We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
public enum JSON
Codable, CustomStringConvertible
Codable
CustomStringConvertible
init?(_:)
public init?(_ value: Any?)
init(from:)
public init(from decoder: Decoder) throws
null
case null
boolean
case boolean(: Bool)
integer
case integer(: Int)
double
case double(: Double)
string
case string(: String)
array
case array(: [JSON])
object
case object(: [String: JSON])
value
var value: Any?
description
var description: String
encode(to:)
public func encode(to encoder: Encoder) throws