blob: 00b400ab113bd8daf88232faa2b4a7d801431a5c [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = 'proto2';
option optimize_for = LITE_RUNTIME;
package lens;
// Contains an unstructured text query to add to an image query.
message TextQuery {
// The unstructured text query, such as "blue" or "blouse".
optional string query = 1;
optional bool is_primary = 2;
}