Skip to content

Commit 89b7126

Browse files
1 parent 15c3996 commit 89b7126

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

src/Translate/GlossaryConfig.php

+18
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919

2020
class GlossaryConfig extends \Google\Model
2121
{
22+
/**
23+
* @var bool
24+
*/
25+
public $contextualTranslationEnabled;
2226
/**
2327
* @var string
2428
*/
@@ -28,6 +32,20 @@ class GlossaryConfig extends \Google\Model
2832
*/
2933
public $ignoreCase;
3034

35+
/**
36+
* @param bool
37+
*/
38+
public function setContextualTranslationEnabled($contextualTranslationEnabled)
39+
{
40+
$this->contextualTranslationEnabled = $contextualTranslationEnabled;
41+
}
42+
/**
43+
* @return bool
44+
*/
45+
public function getContextualTranslationEnabled()
46+
{
47+
return $this->contextualTranslationEnabled;
48+
}
3149
/**
3250
* @param string
3351
*/

src/Translate/Resource/ProjectsLocationsOperations.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class ProjectsLocationsOperations extends \Google\Service\Resource
4141
* other methods to check whether the cancellation succeeded or whether the
4242
* operation completed despite cancellation. On successful cancellation, the
4343
* operation is not deleted; instead, it becomes an operation with an
44-
* Operation.error value with a google.rpc.Status.code of 1, corresponding to
44+
* Operation.error value with a google.rpc.Status.code of `1`, corresponding to
4545
* `Code.CANCELLED`. (operations.cancel)
4646
*
4747
* @param string $name The name of the operation resource to be cancelled.

src/Translate/TranslateTextGlossaryConfig.php

+18
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919

2020
class TranslateTextGlossaryConfig extends \Google\Model
2121
{
22+
/**
23+
* @var bool
24+
*/
25+
public $contextualTranslationEnabled;
2226
/**
2327
* @var string
2428
*/
@@ -28,6 +32,20 @@ class TranslateTextGlossaryConfig extends \Google\Model
2832
*/
2933
public $ignoreCase;
3034

35+
/**
36+
* @param bool
37+
*/
38+
public function setContextualTranslationEnabled($contextualTranslationEnabled)
39+
{
40+
$this->contextualTranslationEnabled = $contextualTranslationEnabled;
41+
}
42+
/**
43+
* @return bool
44+
*/
45+
public function getContextualTranslationEnabled()
46+
{
47+
return $this->contextualTranslationEnabled;
48+
}
3149
/**
3250
* @param string
3351
*/

0 commit comments

Comments
 (0)