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\Contentwarehouse;
|
---|
19 |
|
---|
20 | class GoogleCloudContentwarehouseV1RunPipelineMetadata extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'individualDocumentStatuses';
|
---|
23 | protected $exportToCdwPipelineMetadataType = GoogleCloudContentwarehouseV1RunPipelineMetadataExportToCdwPipelineMetadata::class;
|
---|
24 | protected $exportToCdwPipelineMetadataDataType = '';
|
---|
25 | /**
|
---|
26 | * @var int
|
---|
27 | */
|
---|
28 | public $failedFileCount;
|
---|
29 | protected $gcsIngestPipelineMetadataType = GoogleCloudContentwarehouseV1RunPipelineMetadataGcsIngestPipelineMetadata::class;
|
---|
30 | protected $gcsIngestPipelineMetadataDataType = '';
|
---|
31 | protected $individualDocumentStatusesType = GoogleCloudContentwarehouseV1RunPipelineMetadataIndividualDocumentStatus::class;
|
---|
32 | protected $individualDocumentStatusesDataType = 'array';
|
---|
33 | protected $processWithDocAiPipelineMetadataType = GoogleCloudContentwarehouseV1RunPipelineMetadataProcessWithDocAiPipelineMetadata::class;
|
---|
34 | protected $processWithDocAiPipelineMetadataDataType = '';
|
---|
35 | /**
|
---|
36 | * @var int
|
---|
37 | */
|
---|
38 | public $totalFileCount;
|
---|
39 | protected $userInfoType = GoogleCloudContentwarehouseV1UserInfo::class;
|
---|
40 | protected $userInfoDataType = '';
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * @param GoogleCloudContentwarehouseV1RunPipelineMetadataExportToCdwPipelineMetadata
|
---|
44 | */
|
---|
45 | public function setExportToCdwPipelineMetadata(GoogleCloudContentwarehouseV1RunPipelineMetadataExportToCdwPipelineMetadata $exportToCdwPipelineMetadata)
|
---|
46 | {
|
---|
47 | $this->exportToCdwPipelineMetadata = $exportToCdwPipelineMetadata;
|
---|
48 | }
|
---|
49 | /**
|
---|
50 | * @return GoogleCloudContentwarehouseV1RunPipelineMetadataExportToCdwPipelineMetadata
|
---|
51 | */
|
---|
52 | public function getExportToCdwPipelineMetadata()
|
---|
53 | {
|
---|
54 | return $this->exportToCdwPipelineMetadata;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * @param int
|
---|
58 | */
|
---|
59 | public function setFailedFileCount($failedFileCount)
|
---|
60 | {
|
---|
61 | $this->failedFileCount = $failedFileCount;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * @return int
|
---|
65 | */
|
---|
66 | public function getFailedFileCount()
|
---|
67 | {
|
---|
68 | return $this->failedFileCount;
|
---|
69 | }
|
---|
70 | /**
|
---|
71 | * @param GoogleCloudContentwarehouseV1RunPipelineMetadataGcsIngestPipelineMetadata
|
---|
72 | */
|
---|
73 | public function setGcsIngestPipelineMetadata(GoogleCloudContentwarehouseV1RunPipelineMetadataGcsIngestPipelineMetadata $gcsIngestPipelineMetadata)
|
---|
74 | {
|
---|
75 | $this->gcsIngestPipelineMetadata = $gcsIngestPipelineMetadata;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @return GoogleCloudContentwarehouseV1RunPipelineMetadataGcsIngestPipelineMetadata
|
---|
79 | */
|
---|
80 | public function getGcsIngestPipelineMetadata()
|
---|
81 | {
|
---|
82 | return $this->gcsIngestPipelineMetadata;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @param GoogleCloudContentwarehouseV1RunPipelineMetadataIndividualDocumentStatus[]
|
---|
86 | */
|
---|
87 | public function setIndividualDocumentStatuses($individualDocumentStatuses)
|
---|
88 | {
|
---|
89 | $this->individualDocumentStatuses = $individualDocumentStatuses;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @return GoogleCloudContentwarehouseV1RunPipelineMetadataIndividualDocumentStatus[]
|
---|
93 | */
|
---|
94 | public function getIndividualDocumentStatuses()
|
---|
95 | {
|
---|
96 | return $this->individualDocumentStatuses;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @param GoogleCloudContentwarehouseV1RunPipelineMetadataProcessWithDocAiPipelineMetadata
|
---|
100 | */
|
---|
101 | public function setProcessWithDocAiPipelineMetadata(GoogleCloudContentwarehouseV1RunPipelineMetadataProcessWithDocAiPipelineMetadata $processWithDocAiPipelineMetadata)
|
---|
102 | {
|
---|
103 | $this->processWithDocAiPipelineMetadata = $processWithDocAiPipelineMetadata;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @return GoogleCloudContentwarehouseV1RunPipelineMetadataProcessWithDocAiPipelineMetadata
|
---|
107 | */
|
---|
108 | public function getProcessWithDocAiPipelineMetadata()
|
---|
109 | {
|
---|
110 | return $this->processWithDocAiPipelineMetadata;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @param int
|
---|
114 | */
|
---|
115 | public function setTotalFileCount($totalFileCount)
|
---|
116 | {
|
---|
117 | $this->totalFileCount = $totalFileCount;
|
---|
118 | }
|
---|
119 | /**
|
---|
120 | * @return int
|
---|
121 | */
|
---|
122 | public function getTotalFileCount()
|
---|
123 | {
|
---|
124 | return $this->totalFileCount;
|
---|
125 | }
|
---|
126 | /**
|
---|
127 | * @param GoogleCloudContentwarehouseV1UserInfo
|
---|
128 | */
|
---|
129 | public function setUserInfo(GoogleCloudContentwarehouseV1UserInfo $userInfo)
|
---|
130 | {
|
---|
131 | $this->userInfo = $userInfo;
|
---|
132 | }
|
---|
133 | /**
|
---|
134 | * @return GoogleCloudContentwarehouseV1UserInfo
|
---|
135 | */
|
---|
136 | public function getUserInfo()
|
---|
137 | {
|
---|
138 | return $this->userInfo;
|
---|
139 | }
|
---|
140 | }
|
---|
141 |
|
---|
142 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
143 | class_alias(GoogleCloudContentwarehouseV1RunPipelineMetadata::class, 'Google_Service_Contentwarehouse_GoogleCloudContentwarehouseV1RunPipelineMetadata');
|
---|