Skip to content

Commit

Permalink
Added auto-on option in noise cancellation settings (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmitrevski authored Apr 19, 2024
1 parent a7f27eb commit a697119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public struct NoiseCancellationSettings: Codable, JSONEncodable, Hashable {
public enum Mode: String, Codable, CaseIterable {
case available = "available"
case disabled = "disabled"
case autoOn = "auto-on"
}
public var mode: Mode

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public struct NoiseCancellationSettingsRequest: Codable, JSONEncodable, Hashable
public enum Mode: String, Codable, CaseIterable {
case available = "available"
case disabled = "disabled"
case autoOn = "auto-on"
}
public var mode: Mode?

Expand Down

0 comments on commit a697119

Please sign in to comment.