123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- syntax = "proto3";
- package google.actions.sdk.v2;
- import "google/actions/sdk/v2/conversation/intent.proto";
- import "google/actions/sdk/v2/conversation/prompt/prompt.proto";
- import "google/actions/sdk/v2/conversation/scene.proto";
- import "google/protobuf/struct.proto";
- import "google/protobuf/timestamp.proto";
- import "google/rpc/status.proto";
- option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2;sdk";
- option java_multiple_files = true;
- option java_outer_classname = "EventLogsProto";
- option java_package = "com.google.actions.sdk.v2";
- message ExecutionEvent {
-
- google.protobuf.Timestamp event_time = 1;
-
- ExecutionState execution_state = 2;
-
- google.rpc.Status status = 3;
-
-
-
- oneof EventData {
-
- UserConversationInput user_input = 4;
-
- IntentMatch intent_match = 5;
-
- ConditionsEvaluated conditions_evaluated = 6;
-
- OnSceneEnter on_scene_enter = 7;
-
- WebhookRequest webhook_request = 8;
-
- WebhookResponse webhook_response = 9;
-
- WebhookInitiatedTransition webhook_initiated_transition = 10;
-
- SlotMatch slot_match = 11;
-
- SlotRequested slot_requested = 12;
-
- SlotValidated slot_validated = 13;
-
- FormFilled form_filled = 14;
-
- WaitingForUserInput waiting_user_input = 15;
-
- EndConversation end_conversation = 16;
- }
-
-
-
-
-
-
- repeated string warning_messages = 17;
- }
- message ExecutionState {
-
- string current_scene_id = 1;
-
-
- google.protobuf.Struct session_storage = 2;
-
-
- Slots slots = 5;
-
-
- repeated google.actions.sdk.v2.conversation.Prompt prompt_queue = 7;
-
-
- google.protobuf.Struct user_storage = 6;
-
-
- google.protobuf.Struct household_storage = 8;
- }
- message Slots {
-
- google.actions.sdk.v2.conversation.SlotFillingStatus status = 2;
-
- map<string, google.actions.sdk.v2.conversation.Slot> slots = 3;
- }
- message UserConversationInput {
-
- string type = 1;
-
- string original_query = 2;
- }
- message IntentMatch {
-
- string intent_id = 1;
-
- map<string, google.actions.sdk.v2.conversation.IntentParameterValue> intent_parameters = 5;
-
- string handler = 3;
-
- string next_scene_id = 4;
- }
- message ConditionsEvaluated {
-
- repeated Condition failed_conditions = 1;
-
- Condition success_condition = 2;
- }
- message Condition {
-
- string expression = 1;
-
- string handler = 2;
-
- string next_scene_id = 3;
- }
- message OnSceneEnter {
-
- string handler = 1;
- }
- message WebhookInitiatedTransition {
-
- string next_scene_id = 1;
- }
- message WebhookRequest {
-
- string request_json = 1;
- }
- message WebhookResponse {
-
- string response_json = 1;
- }
- message SlotMatch {
-
- map<string, google.actions.sdk.v2.conversation.IntentParameterValue> nlu_parameters = 2;
- }
- message SlotRequested {
-
- string slot = 1;
-
- google.actions.sdk.v2.conversation.Prompt prompt = 3;
- }
- message SlotValidated {
- }
- message FormFilled {
- }
- message WaitingForUserInput {
- }
- message EndConversation {
- }
|