@@ -198,27 +198,26 @@ message DetectIntentResponse {
198198//
199199// Multiple request messages should be sent in order:
200200//
201- // 1. The first message must contain
202- // [session][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.session],
203- // [query_input][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.query_input] plus optionally
204- // [query_params][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.query_params]. If the client
205- // wants to receive an audio response, it should also contain
206- // [output_audio_config][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.output_audio_config].
201+ // 1. The first message must contain
202+ // [session][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.session],
203+ // [query_input][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.query_input] plus optionally
204+ // [query_params][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.query_params]. If the client
205+ // wants to receive an audio response, it should also contain
206+ // [output_audio_config][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.output_audio_config].
207207//
208208// 2. If [query_input][google.cloud.dialogflow.cx.v3beta1.StreamingDetectIntentRequest.query_input] was set to
209- // [query_input.audio.config][google.cloud.dialogflow.cx.v3beta1.AudioInput.config], all subsequent messages
210- // must contain [query_input.audio.audio][google.cloud.dialogflow.cx.v3beta1.AudioInput.audio] to continue with
211- // Speech recognition.
212- // If you decide to rather detect an intent from text
213- // input after you already started Speech recognition, please send a message
214- // with [query_input.text][google.cloud.dialogflow.cx.v3beta1.QueryInput.text].
209+ // [query_input.audio.config][google.cloud.dialogflow.cx.v3beta1.AudioInput.config], all subsequent messages
210+ // must contain [query_input.audio.audio][google.cloud.dialogflow.cx.v3beta1.AudioInput.audio] to continue with
211+ // Speech recognition.
212+ // If you decide to rather detect an intent from text
213+ // input after you already started Speech recognition, please send a message
214+ // with [query_input.text][google.cloud.dialogflow.cx.v3beta1.QueryInput.text].
215215//
216- // However, note that:
217- //
218- // * Dialogflow will bill you for the audio duration so far.
219- // * Dialogflow discards all Speech recognition results in favor of the
220- // input text.
221- // * Dialogflow will use the language code from the first message.
216+ // However, note that:
217+ // * Dialogflow will bill you for the audio duration so far.
218+ // * Dialogflow discards all Speech recognition results in favor of the input
219+ // text.
220+ // * Dialogflow will use the language code from the first message.
222221//
223222// After you sent all input, you must half-close or abort the request stream.
224223message StreamingDetectIntentRequest {
@@ -438,16 +437,14 @@ message QueryParameters {
438437 // map, associative array, symbol table, dictionary, or JSON object
439438 // composed of a collection of (MapKey, MapValue) pairs:
440439 //
441- // - MapKey type: string
442- // - MapKey value: parameter name
443- // - MapValue type:
444- // - If parameter's entity type is a composite entity: map
445- // - Else: depending on parameter value type, could be one of string,
446- // number, boolean, null, list or map
447- // - MapValue value:
448- // - If parameter's entity type is a composite entity:
449- // map from composite entity property names to property values
450- // - Else: parameter value
440+ // * MapKey type: string
441+ // * MapKey value: parameter name
442+ // * MapValue type: If parameter's entity type is a composite entity then use
443+ // map, otherwise, depending on the parameter value type, it could be one of
444+ // string, number, boolean, null, list or map.
445+ // * MapValue value: If parameter's entity type is a composite entity then use
446+ // map from composite entity property names to property values, otherwise,
447+ // use parameter value.
451448 google.protobuf.Struct parameters = 5 ;
452449
453450 // The unique identifier of the [page][google.cloud.dialogflow.cx.v3beta1.Page] to override the [current
@@ -573,16 +570,14 @@ message QueryResult {
573570 // map, associative array, symbol table, dictionary, or JSON object
574571 // composed of a collection of (MapKey, MapValue) pairs:
575572 //
576- // - MapKey type: string
577- // - MapKey value: parameter name
578- // - MapValue type:
579- // - If parameter's entity type is a composite entity: map
580- // - Else: depending on parameter value type, could be one of string,
581- // number, boolean, null, list or map
582- // - MapValue value:
583- // - If parameter's entity type is a composite entity:
584- // map from composite entity property names to property values
585- // - Else: parameter value
573+ // * MapKey type: string
574+ // * MapKey value: parameter name
575+ // * MapValue type: If parameter's entity type is a composite entity then use
576+ // map, otherwise, depending on the parameter value type, it could be one of
577+ // string, number, boolean, null, list or map.
578+ // * MapValue value: If parameter's entity type is a composite entity then use
579+ // map from composite entity property names to property values, otherwise,
580+ // use parameter value.
586581 google.protobuf.Struct parameters = 3 ;
587582
588583 // The list of rich messages returned to the client. Responses vary from
@@ -726,16 +721,14 @@ message Match {
726721 // map, associative array, symbol table, dictionary, or JSON object
727722 // composed of a collection of (MapKey, MapValue) pairs:
728723 //
729- // - MapKey type: string
730- // - MapKey value: parameter name
731- // - MapValue type:
732- // - If parameter's entity type is a composite entity: map
733- // - Else: depending on parameter value type, could be one of string,
734- // number, boolean, null, list or map
735- // - MapValue value:
736- // - If parameter's entity type is a composite entity:
737- // map from composite entity property names to property values
738- // - Else: parameter value
724+ // * MapKey type: string
725+ // * MapKey value: parameter name
726+ // * MapValue type: If parameter's entity type is a composite entity then use
727+ // map, otherwise, depending on the parameter value type, it could be one of
728+ // string, number, boolean, null, list or map.
729+ // * MapValue value: If parameter's entity type is a composite entity then use
730+ // map from composite entity property names to property values, otherwise,
731+ // use parameter value.
739732 google.protobuf.Struct parameters = 2 ;
740733
741734 // Final text input which was matched during MatchIntent. This value can be
0 commit comments