Structureorlandos-nl.ikigajson 2.2.3IkigaJSON
JSONDecoderSettings
These settings can be used to alter the decoding process.
JSONDecoder.swift:38struct JSONDecoderSettings
Citizens in IkigaJSON
Conformances
Type members
Instance members
var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
The method used to decode Foundation
Data
typesvar dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
The method used to decode Foundation
Date
typesvar decodeUnicode: Bool
When strings are read, no extra effort is put into decoding unicode characters such as
\u00ff
var keyDecodingStrategy: JSONDecoder.KeyDecodingStrategy
Defines the method used when decoding keys
var nilValueDecodingStrategy: NilValueDecodingStrategy
Defines how to act when
nil
and missing keys and values are encountered during decoding.var userInfo: [CodingUserInfoKey : Any]
This userInfo is accessible by the Decodable types that are being created
Show obsolete interfaces (1)
Hide obsolete interfaces
var decodeMissingKeyAsNil: Bool
When a key is not set in the JSON Object it is regarded as
null
if the value istrue
.