KB21
struct KB21 : Codable, Equatable
A struct embedded inside an EntityLogService struct that is used as a nested layer within an intermediate service model used to decode EntityLog JSON data.
The struct models an array of JSON objects mapped to the entity_functions key in the EntityLog JSON data.
Note
Note The struct uses a custom semantic naming system to name properties associated with key value pairs and their position in the JSON. This system was developed as an aid to correctly map each key to its position in the struct.-
An integer mapped to the
function_numberkey in the EntityLog JSON data.Declaration
Swift
let kC: Int -
A bool mapped to the
function_number_always_customkey in the EntityLog JSON data.Declaration
Swift
let kI: Bool -
A string mapped to the
function_typekey in the EntityLog JSON data.Declaration
Swift
let kJ: FunctionType -
An array of KD31 instances mapped to the
function_nodeskey in the EntityLog JSON data.Declaration
Swift
let kD31A: [KD31] -
A struct embedded inside a
KB21struct that is used as a nested layer within an intermediate service model used to decode EntityLog JSON dataThe struct models an array of JSON objects mapped to the
function_nodeskey in the EntityLog JSON data.See moreNote
Note The struct uses a custom semantic naming system to name properties associated with key value pairs and their position in the JSON. This system was developed as an aid to correctly map each key to its position in the struct.Declaration
Swift
struct KD31 : Codable, Equatable
KB21 Structure Reference