123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791 |
- syntax = "proto3";
- package google.cloud.retail.v2alpha;
- import "google/api/field_behavior.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
- option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
- option java_multiple_files = true;
- option java_outer_classname = "CommonProto";
- option java_package = "com.google.cloud.retail.v2alpha";
- option objc_class_prefix = "RETAIL";
- option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
- option ruby_package = "Google::Cloud::Retail::V2alpha";
- enum AttributeConfigLevel {
-
-
- ATTRIBUTE_CONFIG_LEVEL_UNSPECIFIED = 0;
-
-
- PRODUCT_LEVEL_ATTRIBUTE_CONFIG = 1;
-
-
- CATALOG_LEVEL_ATTRIBUTE_CONFIG = 2;
- }
- enum SolutionType {
-
- SOLUTION_TYPE_UNSPECIFIED = 0;
-
- SOLUTION_TYPE_RECOMMENDATION = 1;
-
- SOLUTION_TYPE_SEARCH = 2;
- }
- enum RecommendationsFilteringOption {
-
-
-
- RECOMMENDATIONS_FILTERING_OPTION_UNSPECIFIED = 0;
-
- RECOMMENDATIONS_FILTERING_DISABLED = 1;
-
- RECOMMENDATIONS_FILTERING_ENABLED = 3;
- }
- enum SearchSolutionUseCase {
-
-
- SEARCH_SOLUTION_USE_CASE_UNSPECIFIED = 0;
-
-
- SEARCH_SOLUTION_USE_CASE_SEARCH = 1;
-
-
- SEARCH_SOLUTION_USE_CASE_BROWSE = 2;
- }
- message Condition {
-
- message QueryTerm {
-
-
-
-
-
-
- string value = 1;
-
- bool full_match = 2;
- }
-
-
- message TimeRange {
-
- google.protobuf.Timestamp start_time = 1;
-
- google.protobuf.Timestamp end_time = 2;
- }
-
-
-
-
- repeated QueryTerm query_terms = 1;
-
-
- repeated TimeRange active_time_range = 3;
- }
- message Rule {
-
- message BoostAction {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- float boost = 1;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string products_filter = 2;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- message FilterAction {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string filter = 1;
- }
-
-
-
-
-
-
-
- message RedirectAction {
-
- string redirect_uri = 1;
- }
-
-
-
-
- message TwowaySynonymsAction {
-
-
-
- repeated string synonyms = 1;
- }
-
-
-
-
-
- message OnewaySynonymsAction {
-
-
-
-
- repeated string query_terms = 3;
-
-
-
- repeated string synonyms = 4;
-
- repeated string oneway_terms = 2;
- }
-
-
-
- message DoNotAssociateAction {
-
-
-
- repeated string query_terms = 2;
-
-
- repeated string do_not_associate_terms = 3;
-
- repeated string terms = 1;
- }
-
-
-
- message ReplacementAction {
-
-
-
- repeated string query_terms = 2;
-
- string replacement_term = 3;
-
- string term = 1;
- }
-
-
- message IgnoreAction {
-
- repeated string ignore_terms = 1;
- }
-
- oneof action {
-
- BoostAction boost_action = 2;
-
- RedirectAction redirect_action = 3;
-
-
- OnewaySynonymsAction oneway_synonyms_action = 6;
-
- DoNotAssociateAction do_not_associate_action = 7;
-
- ReplacementAction replacement_action = 8;
-
- IgnoreAction ignore_action = 9;
-
- FilterAction filter_action = 10;
-
- TwowaySynonymsAction twoway_synonyms_action = 11;
- }
-
-
- Condition condition = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message Audience {
-
-
-
-
-
-
-
-
-
-
-
- repeated string genders = 1;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string age_groups = 2;
- }
- message ColorInfo {
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string color_families = 1;
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string colors = 2;
- }
- message CustomAttribute {
-
-
-
-
-
-
-
-
-
- repeated string text = 1;
-
-
-
-
-
-
- repeated double numbers = 2;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- optional bool searchable = 3 [deprecated = true];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- optional bool indexable = 4 [deprecated = true];
- }
- message FulfillmentInfo {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string type = 1;
-
-
-
-
-
-
-
-
-
-
- repeated string place_ids = 2;
- }
- message Image {
-
-
-
-
-
-
-
-
- string uri = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- int32 height = 2;
-
-
-
-
- int32 width = 3;
- }
- message Interval {
-
-
-
-
-
- oneof min {
-
- double minimum = 1;
-
- double exclusive_minimum = 2;
- }
-
-
-
-
-
- oneof max {
-
- double maximum = 3;
-
- double exclusive_maximum = 4;
- }
- }
- message PriceInfo {
-
-
-
-
- message PriceRange {
-
-
-
-
-
-
- Interval price = 1;
-
-
-
-
-
-
- Interval original_price = 2;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
- string currency_code = 1;
-
-
-
-
-
- float price = 2;
-
-
-
-
-
-
- float original_price = 3;
-
-
-
-
-
-
-
-
- float cost = 4;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Timestamp price_effective_time = 5;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Timestamp price_expire_time = 6;
-
-
-
-
-
-
-
-
-
-
-
- PriceRange price_range = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message Rating {
-
-
-
-
-
- int32 rating_count = 1;
-
-
-
-
- float average_rating = 2;
-
-
-
-
-
-
-
- repeated int32 rating_histogram = 3;
- }
- message UserInfo {
-
-
-
-
-
-
-
-
-
-
-
- string user_id = 1;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string ip_address = 2;
-
-
-
-
-
-
-
-
-
-
-
-
- string user_agent = 3;
-
-
-
-
-
-
-
-
-
- bool direct_user_request = 4;
- }
- message LocalInventory {
-
- string place_id = 1;
-
-
-
-
- PriceInfo price_info = 2;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, CustomAttribute> attributes = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string fulfillment_types = 4
- [(google.api.field_behavior) = INPUT_ONLY];
- }
|