Initial commit
This commit is contained in:
41
vendor/google/apiclient-services/src/Google/Service/Speech/AsyncRecognizeRequest.php
vendored
Normal file
41
vendor/google/apiclient-services/src/Google/Service/Speech/AsyncRecognizeRequest.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_AsyncRecognizeRequest extends Google_Model
|
||||
{
|
||||
protected $audioType = 'Google_Service_Speech_RecognitionAudio';
|
||||
protected $audioDataType = '';
|
||||
protected $configType = 'Google_Service_Speech_RecognitionConfig';
|
||||
protected $configDataType = '';
|
||||
|
||||
public function setAudio(Google_Service_Speech_RecognitionAudio $audio)
|
||||
{
|
||||
$this->audio = $audio;
|
||||
}
|
||||
public function getAudio()
|
||||
{
|
||||
return $this->audio;
|
||||
}
|
||||
public function setConfig(Google_Service_Speech_RecognitionConfig $config)
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
public function getConfig()
|
||||
{
|
||||
return $this->config;
|
||||
}
|
||||
}
|
||||
20
vendor/google/apiclient-services/src/Google/Service/Speech/CancelOperationRequest.php
vendored
Normal file
20
vendor/google/apiclient-services/src/Google/Service/Speech/CancelOperationRequest.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_CancelOperationRequest extends Google_Model
|
||||
{
|
||||
}
|
||||
41
vendor/google/apiclient-services/src/Google/Service/Speech/ListOperationsResponse.php
vendored
Normal file
41
vendor/google/apiclient-services/src/Google/Service/Speech/ListOperationsResponse.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_ListOperationsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'operations';
|
||||
public $nextPageToken;
|
||||
protected $operationsType = 'Google_Service_Speech_Operation';
|
||||
protected $operationsDataType = 'array';
|
||||
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setOperations($operations)
|
||||
{
|
||||
$this->operations = $operations;
|
||||
}
|
||||
public function getOperations()
|
||||
{
|
||||
return $this->operations;
|
||||
}
|
||||
}
|
||||
67
vendor/google/apiclient-services/src/Google/Service/Speech/Operation.php
vendored
Normal file
67
vendor/google/apiclient-services/src/Google/Service/Speech/Operation.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_Operation extends Google_Model
|
||||
{
|
||||
public $done;
|
||||
protected $errorType = 'Google_Service_Speech_Status';
|
||||
protected $errorDataType = '';
|
||||
public $metadata;
|
||||
public $name;
|
||||
public $response;
|
||||
|
||||
public function setDone($done)
|
||||
{
|
||||
$this->done = $done;
|
||||
}
|
||||
public function getDone()
|
||||
{
|
||||
return $this->done;
|
||||
}
|
||||
public function setError(Google_Service_Speech_Status $error)
|
||||
{
|
||||
$this->error = $error;
|
||||
}
|
||||
public function getError()
|
||||
{
|
||||
return $this->error;
|
||||
}
|
||||
public function setMetadata($metadata)
|
||||
{
|
||||
$this->metadata = $metadata;
|
||||
}
|
||||
public function getMetadata()
|
||||
{
|
||||
return $this->metadata;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setResponse($response)
|
||||
{
|
||||
$this->response = $response;
|
||||
}
|
||||
public function getResponse()
|
||||
{
|
||||
return $this->response;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionAudio.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionAudio.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_RecognitionAudio extends Google_Model
|
||||
{
|
||||
public $content;
|
||||
public $uri;
|
||||
|
||||
public function setContent($content)
|
||||
{
|
||||
$this->content = $content;
|
||||
}
|
||||
public function getContent()
|
||||
{
|
||||
return $this->content;
|
||||
}
|
||||
public function setUri($uri)
|
||||
{
|
||||
$this->uri = $uri;
|
||||
}
|
||||
public function getUri()
|
||||
{
|
||||
return $this->uri;
|
||||
}
|
||||
}
|
||||
76
vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionConfig.php
vendored
Normal file
76
vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionConfig.php
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_RecognitionConfig extends Google_Model
|
||||
{
|
||||
public $encoding;
|
||||
public $languageCode;
|
||||
public $maxAlternatives;
|
||||
public $profanityFilter;
|
||||
public $sampleRate;
|
||||
protected $speechContextType = 'Google_Service_Speech_SpeechContext';
|
||||
protected $speechContextDataType = '';
|
||||
|
||||
public function setEncoding($encoding)
|
||||
{
|
||||
$this->encoding = $encoding;
|
||||
}
|
||||
public function getEncoding()
|
||||
{
|
||||
return $this->encoding;
|
||||
}
|
||||
public function setLanguageCode($languageCode)
|
||||
{
|
||||
$this->languageCode = $languageCode;
|
||||
}
|
||||
public function getLanguageCode()
|
||||
{
|
||||
return $this->languageCode;
|
||||
}
|
||||
public function setMaxAlternatives($maxAlternatives)
|
||||
{
|
||||
$this->maxAlternatives = $maxAlternatives;
|
||||
}
|
||||
public function getMaxAlternatives()
|
||||
{
|
||||
return $this->maxAlternatives;
|
||||
}
|
||||
public function setProfanityFilter($profanityFilter)
|
||||
{
|
||||
$this->profanityFilter = $profanityFilter;
|
||||
}
|
||||
public function getProfanityFilter()
|
||||
{
|
||||
return $this->profanityFilter;
|
||||
}
|
||||
public function setSampleRate($sampleRate)
|
||||
{
|
||||
$this->sampleRate = $sampleRate;
|
||||
}
|
||||
public function getSampleRate()
|
||||
{
|
||||
return $this->sampleRate;
|
||||
}
|
||||
public function setSpeechContext(Google_Service_Speech_SpeechContext $speechContext)
|
||||
{
|
||||
$this->speechContext = $speechContext;
|
||||
}
|
||||
public function getSpeechContext()
|
||||
{
|
||||
return $this->speechContext;
|
||||
}
|
||||
}
|
||||
102
vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Operations.php
vendored
Normal file
102
vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Operations.php
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "operations" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $speechService = new Google_Service_Speech(...);
|
||||
* $operations = $speechService->operations;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Speech_Resource_Operations extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Starts asynchronous cancellation on a long-running operation. The server
|
||||
* makes a best effort to cancel the operation, but success is not guaranteed.
|
||||
* If the server doesn't support this method, it returns
|
||||
* `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or
|
||||
* other methods to check whether the cancellation succeeded or whether the
|
||||
* operation completed despite cancellation. On successful cancellation, the
|
||||
* operation is not deleted; instead, it becomes an operation with an
|
||||
* Operation.error value with a google.rpc.Status.code of 1, corresponding to
|
||||
* `Code.CANCELLED`. (operations.cancel)
|
||||
*
|
||||
* @param string $name The name of the operation resource to be cancelled.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Speech_SpeechEmpty
|
||||
*/
|
||||
public function cancel($name, $optParams = array())
|
||||
{
|
||||
$params = array('name' => $name);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('cancel', array($params), "Google_Service_Speech_SpeechEmpty");
|
||||
}
|
||||
/**
|
||||
* Deletes a long-running operation. This method indicates that the client is no
|
||||
* longer interested in the operation result. It does not cancel the operation.
|
||||
* If the server doesn't support this method, it returns
|
||||
* `google.rpc.Code.UNIMPLEMENTED`. (operations.delete)
|
||||
*
|
||||
* @param string $name The name of the operation resource to be deleted.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Speech_SpeechEmpty
|
||||
*/
|
||||
public function delete($name, $optParams = array())
|
||||
{
|
||||
$params = array('name' => $name);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params), "Google_Service_Speech_SpeechEmpty");
|
||||
}
|
||||
/**
|
||||
* Gets the latest state of a long-running operation. Clients can use this
|
||||
* method to poll the operation result at intervals as recommended by the API
|
||||
* service. (operations.get)
|
||||
*
|
||||
* @param string $name The name of the operation resource.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Speech_Operation
|
||||
*/
|
||||
public function get($name, $optParams = array())
|
||||
{
|
||||
$params = array('name' => $name);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Speech_Operation");
|
||||
}
|
||||
/**
|
||||
* Lists operations that match the specified filter in the request. If the
|
||||
* server doesn't support this method, it returns `UNIMPLEMENTED`.
|
||||
*
|
||||
* NOTE: the `name` binding below allows API services to override the binding to
|
||||
* use different resource name schemes, such as `users/operations`.
|
||||
* (operations.listOperations)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string filter The standard list filter.
|
||||
* @opt_param string name The name of the operation collection.
|
||||
* @opt_param string pageToken The standard list page token.
|
||||
* @opt_param int pageSize The standard list page size.
|
||||
* @return Google_Service_Speech_ListOperationsResponse
|
||||
*/
|
||||
public function listOperations($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Speech_ListOperationsResponse");
|
||||
}
|
||||
}
|
||||
59
vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Speech.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Speech.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "speech" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $speechService = new Google_Service_Speech(...);
|
||||
* $speech = $speechService->speech;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Speech_Resource_Speech extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Performs asynchronous speech recognition: receive results via the
|
||||
* [google.longrunning.Operations]
|
||||
* (/speech/reference/rest/v1beta1/operations#Operation) interface. Returns
|
||||
* either an `Operation.error` or an `Operation.response` which contains an
|
||||
* `AsyncRecognizeResponse` message. (speech.asyncrecognize)
|
||||
*
|
||||
* @param Google_Service_Speech_AsyncRecognizeRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Speech_Operation
|
||||
*/
|
||||
public function asyncrecognize(Google_Service_Speech_AsyncRecognizeRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('asyncrecognize', array($params), "Google_Service_Speech_Operation");
|
||||
}
|
||||
/**
|
||||
* Performs synchronous speech recognition: receive results after all audio has
|
||||
* been sent and processed. (speech.syncrecognize)
|
||||
*
|
||||
* @param Google_Service_Speech_SyncRecognizeRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Speech_SyncRecognizeResponse
|
||||
*/
|
||||
public function syncrecognize(Google_Service_Speech_SyncRecognizeRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('syncrecognize', array($params), "Google_Service_Speech_SyncRecognizeResponse");
|
||||
}
|
||||
}
|
||||
31
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechContext.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechContext.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_SpeechContext extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'phrases';
|
||||
public $phrases;
|
||||
|
||||
public function setPhrases($phrases)
|
||||
{
|
||||
$this->phrases = $phrases;
|
||||
}
|
||||
public function getPhrases()
|
||||
{
|
||||
return $this->phrases;
|
||||
}
|
||||
}
|
||||
20
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechEmpty.php
vendored
Normal file
20
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechEmpty.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_SpeechEmpty extends Google_Model
|
||||
{
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionAlternative.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionAlternative.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_SpeechRecognitionAlternative extends Google_Model
|
||||
{
|
||||
public $confidence;
|
||||
public $transcript;
|
||||
|
||||
public function setConfidence($confidence)
|
||||
{
|
||||
$this->confidence = $confidence;
|
||||
}
|
||||
public function getConfidence()
|
||||
{
|
||||
return $this->confidence;
|
||||
}
|
||||
public function setTranscript($transcript)
|
||||
{
|
||||
$this->transcript = $transcript;
|
||||
}
|
||||
public function getTranscript()
|
||||
{
|
||||
return $this->transcript;
|
||||
}
|
||||
}
|
||||
32
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionResult.php
vendored
Normal file
32
vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionResult.php
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_SpeechRecognitionResult extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'alternatives';
|
||||
protected $alternativesType = 'Google_Service_Speech_SpeechRecognitionAlternative';
|
||||
protected $alternativesDataType = 'array';
|
||||
|
||||
public function setAlternatives($alternatives)
|
||||
{
|
||||
$this->alternatives = $alternatives;
|
||||
}
|
||||
public function getAlternatives()
|
||||
{
|
||||
return $this->alternatives;
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/Speech/Status.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/Speech/Status.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_Status extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
public $code;
|
||||
public $details;
|
||||
public $message;
|
||||
|
||||
public function setCode($code)
|
||||
{
|
||||
$this->code = $code;
|
||||
}
|
||||
public function getCode()
|
||||
{
|
||||
return $this->code;
|
||||
}
|
||||
public function setDetails($details)
|
||||
{
|
||||
$this->details = $details;
|
||||
}
|
||||
public function getDetails()
|
||||
{
|
||||
return $this->details;
|
||||
}
|
||||
public function setMessage($message)
|
||||
{
|
||||
$this->message = $message;
|
||||
}
|
||||
public function getMessage()
|
||||
{
|
||||
return $this->message;
|
||||
}
|
||||
}
|
||||
41
vendor/google/apiclient-services/src/Google/Service/Speech/SyncRecognizeRequest.php
vendored
Normal file
41
vendor/google/apiclient-services/src/Google/Service/Speech/SyncRecognizeRequest.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_SyncRecognizeRequest extends Google_Model
|
||||
{
|
||||
protected $audioType = 'Google_Service_Speech_RecognitionAudio';
|
||||
protected $audioDataType = '';
|
||||
protected $configType = 'Google_Service_Speech_RecognitionConfig';
|
||||
protected $configDataType = '';
|
||||
|
||||
public function setAudio(Google_Service_Speech_RecognitionAudio $audio)
|
||||
{
|
||||
$this->audio = $audio;
|
||||
}
|
||||
public function getAudio()
|
||||
{
|
||||
return $this->audio;
|
||||
}
|
||||
public function setConfig(Google_Service_Speech_RecognitionConfig $config)
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
public function getConfig()
|
||||
{
|
||||
return $this->config;
|
||||
}
|
||||
}
|
||||
32
vendor/google/apiclient-services/src/Google/Service/Speech/SyncRecognizeResponse.php
vendored
Normal file
32
vendor/google/apiclient-services/src/Google/Service/Speech/SyncRecognizeResponse.php
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Speech_SyncRecognizeResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'results';
|
||||
protected $resultsType = 'Google_Service_Speech_SpeechRecognitionResult';
|
||||
protected $resultsDataType = 'array';
|
||||
|
||||
public function setResults($results)
|
||||
{
|
||||
$this->results = $results;
|
||||
}
|
||||
public function getResults()
|
||||
{
|
||||
return $this->results;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user