SuggestionProviderConstraints
public struct SuggestionProviderConstraints
extension SuggestionProviderConstraints: Equatable, Hashable
Some providers manage multiple suggestion subtypes. Queries, ingests, and other operations on those providers must be constrained to a desired subtype.
-
Which dynamic suggestions should we fetch or ingest? Corresponds to the
suggestion_type
value in dynamic suggestions remote settings records.Declaration
Swift
public var dynamicSuggestionTypes: [String]?
-
Which strategy should we use for the AMP queries? Use None for the default strategy.
Declaration
Swift
public var ampAlternativeMatching: AmpMatchingStrategy?
-
Declaration
Swift
public init( /** * Which dynamic suggestions should we fetch or ingest? Corresponds to the * `suggestion_type` value in dynamic suggestions remote settings records. */dynamicSuggestionTypes: [String]? = nil, /** * Which strategy should we use for the AMP queries? * Use None for the default strategy. */ampAlternativeMatching: AmpMatchingStrategy? = nil)
-
Declaration
Swift
public static func == (lhs: SuggestionProviderConstraints, rhs: SuggestionProviderConstraints) -> Bool
-
Declaration
Swift
public func hash(into hasher: inout Hasher)