Skip to content

Commit

Permalink
ConfidenceValue is only Codable
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziodemaria committed Apr 3, 2024
1 parent e96adf2 commit 0656931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Confidence/ConfidenceValue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Foundation
public typealias ConfidenceStruct = [String: ConfidenceValue]

/// Serializable data structure meant for event sending via Confidence
public enum ConfidenceValue: Equatable, Codable {
public enum ConfidenceValue: Equatable, Encodable {
case boolean(Bool)
case string(String)
case integer(Int64)
Expand Down

0 comments on commit 0656931

Please sign in to comment.