MimiPersonalizationConfiguration
public struct MimiPersonalizationConfiguration : Equatable
Configuration which can customize the Sound Personalization features available in the Mimi Profile.
-
Whether to show media player view inside Mimi Profile.
Declaration
Swift
public let showsSampleSoundPlayer: Bool
-
The debounce behavior (
UIControlDebounceBehavior
) applied to the UI controls on the Mimi Profile.Note
The default debounce behavior isnone
which implies no debouncing applied.Declaration
Swift
public let uiControlDebounceBehavior: UIControlDebounceBehavior
-
Create new configuration.
Declaration
Swift
public init(showsSampleSoundPlayer: Bool = true, uiControlDebounceBehavior: UIControlDebounceBehavior = .none)
-
The debounce behavior to be applied to the Personalization UI controls.
Options:
none
- No debounce applied.debounce
- Debounce interval (seconds) to be applied.
Declaration
Swift
public enum UIControlDebounceBehavior : Equatable