Skip to content

Commit

Permalink
Regenerate dialogflow client (#6040)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Dec 20, 2024
1 parent 5828e16 commit 4e4efc1
Show file tree
Hide file tree
Showing 7 changed files with 609 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Dialogflow/GoogleCloudDialogflowV2ConversationEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class GoogleCloudDialogflowV2ConversationEvent extends \Google\Model
protected $errorStatusDataType = '';
protected $newMessagePayloadType = GoogleCloudDialogflowV2Message::class;
protected $newMessagePayloadDataType = '';
protected $newRecognitionResultPayloadType = GoogleCloudDialogflowV2StreamingRecognitionResult::class;
protected $newRecognitionResultPayloadDataType = '';
/**
* @var string
*/
Expand Down Expand Up @@ -74,6 +76,20 @@ public function getNewMessagePayload()
{
return $this->newMessagePayload;
}
/**
* @param GoogleCloudDialogflowV2StreamingRecognitionResult
*/
public function setNewRecognitionResultPayload(GoogleCloudDialogflowV2StreamingRecognitionResult $newRecognitionResultPayload)
{
$this->newRecognitionResultPayload = $newRecognitionResultPayload;
}
/**
* @return GoogleCloudDialogflowV2StreamingRecognitionResult
*/
public function getNewRecognitionResultPayload()
{
return $this->newRecognitionResultPayload;
}
/**
* @param string
*/
Expand Down
98 changes: 98 additions & 0 deletions src/Dialogflow/GoogleCloudDialogflowV2SpeechWordInfo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/

namespace Google\Service\Dialogflow;

class GoogleCloudDialogflowV2SpeechWordInfo extends \Google\Model
{
/**
* @var float
*/
public $confidence;
/**
* @var string
*/
public $endOffset;
/**
* @var string
*/
public $startOffset;
/**
* @var string
*/
public $word;

/**
* @param float
*/
public function setConfidence($confidence)
{
$this->confidence = $confidence;
}
/**
* @return float
*/
public function getConfidence()
{
return $this->confidence;
}
/**
* @param string
*/
public function setEndOffset($endOffset)
{
$this->endOffset = $endOffset;
}
/**
* @return string
*/
public function getEndOffset()
{
return $this->endOffset;
}
/**
* @param string
*/
public function setStartOffset($startOffset)
{
$this->startOffset = $startOffset;
}
/**
* @return string
*/
public function getStartOffset()
{
return $this->startOffset;
}
/**
* @param string
*/
public function setWord($word)
{
$this->word = $word;
}
/**
* @return string
*/
public function getWord()
{
return $this->word;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDialogflowV2SpeechWordInfo::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV2SpeechWordInfo');
151 changes: 151 additions & 0 deletions src/Dialogflow/GoogleCloudDialogflowV2StreamingRecognitionResult.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/

namespace Google\Service\Dialogflow;

class GoogleCloudDialogflowV2StreamingRecognitionResult extends \Google\Collection
{
protected $collection_key = 'speechWordInfo';
/**
* @var float
*/
public $confidence;
/**
* @var bool
*/
public $isFinal;
/**
* @var string
*/
public $languageCode;
/**
* @var string
*/
public $messageType;
/**
* @var string
*/
public $speechEndOffset;
protected $speechWordInfoType = GoogleCloudDialogflowV2SpeechWordInfo::class;
protected $speechWordInfoDataType = 'array';
/**
* @var string
*/
public $transcript;

/**
* @param float
*/
public function setConfidence($confidence)
{
$this->confidence = $confidence;
}
/**
* @return float
*/
public function getConfidence()
{
return $this->confidence;
}
/**
* @param bool
*/
public function setIsFinal($isFinal)
{
$this->isFinal = $isFinal;
}
/**
* @return bool
*/
public function getIsFinal()
{
return $this->isFinal;
}
/**
* @param string
*/
public function setLanguageCode($languageCode)
{
$this->languageCode = $languageCode;
}
/**
* @return string
*/
public function getLanguageCode()
{
return $this->languageCode;
}
/**
* @param string
*/
public function setMessageType($messageType)
{
$this->messageType = $messageType;
}
/**
* @return string
*/
public function getMessageType()
{
return $this->messageType;
}
/**
* @param string
*/
public function setSpeechEndOffset($speechEndOffset)
{
$this->speechEndOffset = $speechEndOffset;
}
/**
* @return string
*/
public function getSpeechEndOffset()
{
return $this->speechEndOffset;
}
/**
* @param GoogleCloudDialogflowV2SpeechWordInfo[]
*/
public function setSpeechWordInfo($speechWordInfo)
{
$this->speechWordInfo = $speechWordInfo;
}
/**
* @return GoogleCloudDialogflowV2SpeechWordInfo[]
*/
public function getSpeechWordInfo()
{
return $this->speechWordInfo;
}
/**
* @param string
*/
public function setTranscript($transcript)
{
$this->transcript = $transcript;
}
/**
* @return string
*/
public function getTranscript()
{
return $this->transcript;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDialogflowV2StreamingRecognitionResult::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV2StreamingRecognitionResult');
16 changes: 16 additions & 0 deletions src/Dialogflow/GoogleCloudDialogflowV2beta1ConversationEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class GoogleCloudDialogflowV2beta1ConversationEvent extends \Google\Model
protected $errorStatusDataType = '';
protected $newMessagePayloadType = GoogleCloudDialogflowV2beta1Message::class;
protected $newMessagePayloadDataType = '';
protected $newRecognitionResultPayloadType = GoogleCloudDialogflowV2beta1StreamingRecognitionResult::class;
protected $newRecognitionResultPayloadDataType = '';
/**
* @var string
*/
Expand Down Expand Up @@ -74,6 +76,20 @@ public function getNewMessagePayload()
{
return $this->newMessagePayload;
}
/**
* @param GoogleCloudDialogflowV2beta1StreamingRecognitionResult
*/
public function setNewRecognitionResultPayload(GoogleCloudDialogflowV2beta1StreamingRecognitionResult $newRecognitionResultPayload)
{
$this->newRecognitionResultPayload = $newRecognitionResultPayload;
}
/**
* @return GoogleCloudDialogflowV2beta1StreamingRecognitionResult
*/
public function getNewRecognitionResultPayload()
{
return $this->newRecognitionResultPayload;
}
/**
* @param string
*/
Expand Down
Loading

0 comments on commit 4e4efc1

Please sign in to comment.