123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- syntax = "proto3";
- package google.actions.sdk.v2;
- import "google/actions/sdk/v2/account_linking.proto";
- import "google/actions/sdk/v2/localized_settings.proto";
- import "google/actions/sdk/v2/surface.proto";
- option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2;sdk";
- option java_multiple_files = true;
- option java_outer_classname = "SettingsProto";
- option java_package = "com.google.actions.sdk.v2";
- message Settings {
-
- enum Category {
-
- CATEGORY_UNSPECIFIED = 0;
-
- BUSINESS_AND_FINANCE = 2;
-
- EDUCATION_AND_REFERENCE = 3;
-
- FOOD_AND_DRINK = 4;
-
- GAMES_AND_TRIVIA = 5;
-
- HEALTH_AND_FITNESS = 6;
-
- KIDS_AND_FAMILY = 20;
-
- LIFESTYLE = 7;
-
- LOCAL = 8;
-
- MOVIES_AND_TV = 9;
-
- MUSIC_AND_AUDIO = 10;
-
- NEWS = 1;
-
- NOVELTY_AND_HUMOR = 11;
-
- PRODUCTIVITY = 12;
-
- SHOPPING = 13;
-
- SOCIAL = 14;
-
- SPORTS = 15;
-
- TRAVEL_AND_TRANSPORTATION = 16;
-
- UTILITIES = 17;
-
- WEATHER = 18;
-
- HOME_CONTROL = 19;
- }
-
- string project_id = 1;
-
-
-
-
- string default_locale = 2;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string enabled_regions = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string disabled_regions = 4;
-
- Category category = 5;
-
-
-
- bool uses_transactions_api = 6;
-
- bool uses_digital_purchase_api = 7;
-
- bool uses_interactive_canvas = 8;
-
- bool uses_home_storage = 17;
-
- bool designed_for_family = 9;
-
- bool contains_alcohol_or_tobacco_content = 11;
-
-
- bool keeps_mic_open = 12;
-
-
- SurfaceRequirements surface_requirements = 13;
-
-
- string testing_instructions = 14;
-
-
- LocalizedSettings localized_settings = 15;
-
-
- AccountLinking account_linking = 16;
-
-
-
-
-
- repeated string selected_android_apps = 20;
- }
|