12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- syntax = "proto3";
- package google.actions.sdk.v2;
- import "google/api/field_behavior.proto";
- option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2;sdk";
- option java_multiple_files = true;
- option java_outer_classname = "WebhookProto";
- option java_package = "com.google.actions.sdk.v2";
- message Webhook {
-
-
-
- message Handler {
-
-
-
- string name = 1 [(google.api.field_behavior) = REQUIRED];
- }
-
- message HttpsEndpoint {
-
-
-
-
-
-
- string base_url = 1;
-
- map<string, string> http_headers = 2;
-
-
- int32 endpoint_api_version = 3;
- }
-
-
- message InlineCloudFunction {
-
-
- string execute_function = 1;
- }
-
- repeated Handler handlers = 1;
-
- oneof webhook_type {
-
- HttpsEndpoint https_endpoint = 2;
-
- InlineCloudFunction inline_cloud_function = 3;
- }
- }
|