TrainingQuery
public struct TrainingQuery : Codable, Equatable
Training query details.
-
The query ID associated with the training query.
Declaration
Swift
public var queryID: String? -
The natural text query for the training query.
Declaration
Swift
public var naturalLanguageQuery: String? -
The filter used on the collection before the natural_language_query is applied.
Declaration
Swift
public var filter: String? -
Array of training examples.
Declaration
Swift
public var examples: [TrainingExample]?
View on GitHub
TrainingQuery Structure Reference