1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentTranslation extends Google_Collection
19{
20  protected $collection_key = 'provenance';
21  public $languageCode;
22  protected $provenanceType = 'Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentProvenance';
23  protected $provenanceDataType = 'array';
24  protected $textAnchorType = 'Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentTextAnchor';
25  protected $textAnchorDataType = '';
26  public $translatedText;
27
28  public function setLanguageCode($languageCode)
29  {
30    $this->languageCode = $languageCode;
31  }
32  public function getLanguageCode()
33  {
34    return $this->languageCode;
35  }
36  /**
37   * @param Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentProvenance[]
38   */
39  public function setProvenance($provenance)
40  {
41    $this->provenance = $provenance;
42  }
43  /**
44   * @return Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentProvenance[]
45   */
46  public function getProvenance()
47  {
48    return $this->provenance;
49  }
50  /**
51   * @param Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentTextAnchor
52   */
53  public function setTextAnchor(Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentTextAnchor $textAnchor)
54  {
55    $this->textAnchor = $textAnchor;
56  }
57  /**
58   * @return Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentTextAnchor
59   */
60  public function getTextAnchor()
61  {
62    return $this->textAnchor;
63  }
64  public function setTranslatedText($translatedText)
65  {
66    $this->translatedText = $translatedText;
67  }
68  public function getTranslatedText()
69  {
70    return $this->translatedText;
71  }
72}
73