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.
1 parent 685bb70 commit 9c47ca3Copy full SHA for 9c47ca3
Sources/AlgoliaSearchClient/Helpers/Coding/Wrappers/BoolContainer.swift
@@ -7,6 +7,10 @@
7
8
import Foundation
9
10
+/**
11
+ Helper structure ensuring the decoding of a bool value from a "volatile" JSON
12
+ occasionally providing bool values in the form of String
13
+ */
14
struct BoolContainer: RawRepresentable, Codable {
15
16
let rawValue: Bool
Sources/AlgoliaSearchClient/Helpers/Coding/Wrappers/StringNumberContainer.swift
+ Helper structure ensuring the decoding of a number value from a "volatile" JSON
+ occasionally providing number values in the form of String
+*/
struct StringNumberContainer: RawRepresentable, Codable {
let rawValue: Double
0 commit comments