public struct PopupSettingsDeserializer: Decodable {
    private let popupSettings: Bool?
    
    private enum CodingKeys: String, CodingKey {
        case popupSettings
    }
    
    public init(from decoder: Decoder) throws {
        let container = try decoder.container(keyedBy: CodingKeys.self)
        
        popupSettings = try container.decodeIfPresent(Bool.self, forKey: .popupSettings)
    }
    
    var getPopupSettings: Bool? {
        popupSettings
    }
}
