File tree 3 files changed +37
-1
lines changed
3 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 19
19
20
20
class GlossaryConfig extends \Google \Model
21
21
{
22
+ /**
23
+ * @var bool
24
+ */
25
+ public $ contextualTranslationEnabled ;
22
26
/**
23
27
* @var string
24
28
*/
@@ -28,6 +32,20 @@ class GlossaryConfig extends \Google\Model
28
32
*/
29
33
public $ ignoreCase ;
30
34
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
+ }
31
49
/**
32
50
* @param string
33
51
*/
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class ProjectsLocationsOperations extends \Google\Service\Resource
41
41
* other methods to check whether the cancellation succeeded or whether the
42
42
* operation completed despite cancellation. On successful cancellation, the
43
43
* 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
45
45
* `Code.CANCELLED`. (operations.cancel)
46
46
*
47
47
* @param string $name The name of the operation resource to be cancelled.
Original file line number Diff line number Diff line change 19
19
20
20
class TranslateTextGlossaryConfig extends \Google \Model
21
21
{
22
+ /**
23
+ * @var bool
24
+ */
25
+ public $ contextualTranslationEnabled ;
22
26
/**
23
27
* @var string
24
28
*/
@@ -28,6 +32,20 @@ class TranslateTextGlossaryConfig extends \Google\Model
28
32
*/
29
33
public $ ignoreCase ;
30
34
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
+ }
31
49
/**
32
50
* @param string
33
51
*/
You can’t perform that action at this time.
0 commit comments