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 |
|
---|
18 | namespace Google\Service\Document;
|
---|
19 |
|
---|
20 | class GoogleCloudDocumentaiV1beta2DocumentPageToken extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'detectedLanguages';
|
---|
23 | protected $detectedBreakType = GoogleCloudDocumentaiV1beta2DocumentPageTokenDetectedBreak::class;
|
---|
24 | protected $detectedBreakDataType = '';
|
---|
25 | protected $detectedLanguagesType = GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::class;
|
---|
26 | protected $detectedLanguagesDataType = 'array';
|
---|
27 | protected $layoutType = GoogleCloudDocumentaiV1beta2DocumentPageLayout::class;
|
---|
28 | protected $layoutDataType = '';
|
---|
29 | protected $provenanceType = GoogleCloudDocumentaiV1beta2DocumentProvenance::class;
|
---|
30 | protected $provenanceDataType = '';
|
---|
31 | protected $styleInfoType = GoogleCloudDocumentaiV1beta2DocumentPageTokenStyleInfo::class;
|
---|
32 | protected $styleInfoDataType = '';
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * @param GoogleCloudDocumentaiV1beta2DocumentPageTokenDetectedBreak
|
---|
36 | */
|
---|
37 | public function setDetectedBreak(GoogleCloudDocumentaiV1beta2DocumentPageTokenDetectedBreak $detectedBreak)
|
---|
38 | {
|
---|
39 | $this->detectedBreak = $detectedBreak;
|
---|
40 | }
|
---|
41 | /**
|
---|
42 | * @return GoogleCloudDocumentaiV1beta2DocumentPageTokenDetectedBreak
|
---|
43 | */
|
---|
44 | public function getDetectedBreak()
|
---|
45 | {
|
---|
46 | return $this->detectedBreak;
|
---|
47 | }
|
---|
48 | /**
|
---|
49 | * @param GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage[]
|
---|
50 | */
|
---|
51 | public function setDetectedLanguages($detectedLanguages)
|
---|
52 | {
|
---|
53 | $this->detectedLanguages = $detectedLanguages;
|
---|
54 | }
|
---|
55 | /**
|
---|
56 | * @return GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage[]
|
---|
57 | */
|
---|
58 | public function getDetectedLanguages()
|
---|
59 | {
|
---|
60 | return $this->detectedLanguages;
|
---|
61 | }
|
---|
62 | /**
|
---|
63 | * @param GoogleCloudDocumentaiV1beta2DocumentPageLayout
|
---|
64 | */
|
---|
65 | public function setLayout(GoogleCloudDocumentaiV1beta2DocumentPageLayout $layout)
|
---|
66 | {
|
---|
67 | $this->layout = $layout;
|
---|
68 | }
|
---|
69 | /**
|
---|
70 | * @return GoogleCloudDocumentaiV1beta2DocumentPageLayout
|
---|
71 | */
|
---|
72 | public function getLayout()
|
---|
73 | {
|
---|
74 | return $this->layout;
|
---|
75 | }
|
---|
76 | /**
|
---|
77 | * @param GoogleCloudDocumentaiV1beta2DocumentProvenance
|
---|
78 | */
|
---|
79 | public function setProvenance(GoogleCloudDocumentaiV1beta2DocumentProvenance $provenance)
|
---|
80 | {
|
---|
81 | $this->provenance = $provenance;
|
---|
82 | }
|
---|
83 | /**
|
---|
84 | * @return GoogleCloudDocumentaiV1beta2DocumentProvenance
|
---|
85 | */
|
---|
86 | public function getProvenance()
|
---|
87 | {
|
---|
88 | return $this->provenance;
|
---|
89 | }
|
---|
90 | /**
|
---|
91 | * @param GoogleCloudDocumentaiV1beta2DocumentPageTokenStyleInfo
|
---|
92 | */
|
---|
93 | public function setStyleInfo(GoogleCloudDocumentaiV1beta2DocumentPageTokenStyleInfo $styleInfo)
|
---|
94 | {
|
---|
95 | $this->styleInfo = $styleInfo;
|
---|
96 | }
|
---|
97 | /**
|
---|
98 | * @return GoogleCloudDocumentaiV1beta2DocumentPageTokenStyleInfo
|
---|
99 | */
|
---|
100 | public function getStyleInfo()
|
---|
101 | {
|
---|
102 | return $this->styleInfo;
|
---|
103 | }
|
---|
104 | }
|
---|
105 |
|
---|
106 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
107 | class_alias(GoogleCloudDocumentaiV1beta2DocumentPageToken::class, 'Google_Service_Document_GoogleCloudDocumentaiV1beta2DocumentPageToken');
|
---|