JSONValue
public indirect enum JSONValue : Hashable
Depiction of a JSON Value.
-
Declaration
Swift
case string(String)
-
Declaration
Swift
case integer(Int)
-
Declaration
Swift
case double(Double)
-
Declaration
Swift
case bool(Bool)
-
Declaration
Swift
case array([JSONValue])
-
Declaration
Swift
case dictionary([String : JSONValue])