Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions
@@ -0,0 +1,77 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata extends \Google\Collection
{
protected $collection_key = 'individualAutoLabelStatuses';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
protected $individualAutoLabelStatusesType = GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus::class;
protected $individualAutoLabelStatusesDataType = 'array';
/**
* @var int
*/
public $totalDocumentCount;
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus[]
*/
public function setIndividualAutoLabelStatuses($individualAutoLabelStatuses)
{
$this->individualAutoLabelStatuses = $individualAutoLabelStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus[]
*/
public function getIndividualAutoLabelStatuses()
{
return $this->individualAutoLabelStatuses;
}
/**
* @param int
*/
public function setTotalDocumentCount($totalDocumentCount)
{
$this->totalDocumentCount = $totalDocumentCount;
}
/**
* @return int
*/
public function getTotalDocumentCount()
{
return $this->totalDocumentCount;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata');
@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus extends \Google\Model
{
protected $documentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $documentIdDataType = '';
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $documentId)
{
$this->documentId = $documentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getDocumentId()
{
return $this->documentId;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadataIndividualAutoLabelStatus');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsResponse');
@@ -0,0 +1,95 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadata extends \Google\Collection
{
protected $collection_key = 'individualBatchDeleteStatuses';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @var int
*/
public $errorDocumentCount;
protected $individualBatchDeleteStatusesType = GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::class;
protected $individualBatchDeleteStatusesDataType = 'array';
/**
* @var int
*/
public $totalDocumentCount;
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param int
*/
public function setErrorDocumentCount($errorDocumentCount)
{
$this->errorDocumentCount = $errorDocumentCount;
}
/**
* @return int
*/
public function getErrorDocumentCount()
{
return $this->errorDocumentCount;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus[]
*/
public function setIndividualBatchDeleteStatuses($individualBatchDeleteStatuses)
{
$this->individualBatchDeleteStatuses = $individualBatchDeleteStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus[]
*/
public function getIndividualBatchDeleteStatuses()
{
return $this->individualBatchDeleteStatuses;
}
/**
* @param int
*/
public function setTotalDocumentCount($totalDocumentCount)
{
$this->totalDocumentCount = $totalDocumentCount;
}
/**
* @return int
*/
public function getTotalDocumentCount()
{
return $this->totalDocumentCount;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadata');
@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus extends \Google\Model
{
protected $documentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $documentIdDataType = '';
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $documentId)
{
$this->documentId = $documentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getDocumentId()
{
return $this->documentId;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsResponse');
@@ -0,0 +1,95 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadata extends \Google\Collection
{
protected $collection_key = 'individualBatchMoveStatuses';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @var string
*/
public $destDatasetType;
/**
* @var string
*/
public $destSplitType;
protected $individualBatchMoveStatusesType = GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus::class;
protected $individualBatchMoveStatusesDataType = 'array';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param string
*/
public function setDestDatasetType($destDatasetType)
{
$this->destDatasetType = $destDatasetType;
}
/**
* @return string
*/
public function getDestDatasetType()
{
return $this->destDatasetType;
}
/**
* @param string
*/
public function setDestSplitType($destSplitType)
{
$this->destSplitType = $destSplitType;
}
/**
* @return string
*/
public function getDestSplitType()
{
return $this->destSplitType;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus[]
*/
public function setIndividualBatchMoveStatuses($individualBatchMoveStatuses)
{
$this->individualBatchMoveStatuses = $individualBatchMoveStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus[]
*/
public function getIndividualBatchMoveStatuses()
{
return $this->individualBatchMoveStatuses;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadata');
@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus extends \Google\Model
{
protected $documentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $documentIdDataType = '';
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $documentId)
{
$this->documentId = $documentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getDocumentId()
{
return $this->documentId;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsResponse');
@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadata extends \Google\Collection
{
protected $collection_key = 'individualBatchUpdateStatuses';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
protected $individualBatchUpdateStatusesType = GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus::class;
protected $individualBatchUpdateStatusesDataType = 'array';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus[]
*/
public function setIndividualBatchUpdateStatuses($individualBatchUpdateStatuses)
{
$this->individualBatchUpdateStatuses = $individualBatchUpdateStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus[]
*/
public function getIndividualBatchUpdateStatuses()
{
return $this->individualBatchUpdateStatuses;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadata');
@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus extends \Google\Model
{
protected $documentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $documentIdDataType = '';
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $documentId)
{
$this->documentId = $documentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getDocumentId()
{
return $this->documentId;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsResponse');
@@ -0,0 +1,116 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata extends \Google\Model
{
/**
* @var string
*/
public $createTime;
/**
* @var string
*/
public $resource;
/**
* @var string
*/
public $state;
/**
* @var string
*/
public $stateMessage;
/**
* @var string
*/
public $updateTime;
/**
* @param string
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* @param string
*/
public function setResource($resource)
{
$this->resource = $resource;
}
/**
* @return string
*/
public function getResource()
{
return $this->resource;
}
/**
* @param string
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @param string
*/
public function setStateMessage($stateMessage)
{
$this->stateMessage = $stateMessage;
}
/**
* @return string
*/
public function getStateMessage()
{
return $this->stateMessage;
}
/**
* @param string
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3CreateLabelerPoolOperationMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3CreateLabelerPoolOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3CreateLabelerPoolOperationMetadata');
@@ -0,0 +1,43 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DeleteDataLabelingJobOperationMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
public $commonMetadata;
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DeleteDataLabelingJobOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DeleteDataLabelingJobOperationMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DeleteLabelerPoolOperationMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DeleteLabelerPoolOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DeleteLabelerPoolOperationMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DeleteProcessorMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DeleteProcessorMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DeleteProcessorMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DeleteProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DeleteProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DeleteProcessorVersionMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DisableProcessorMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DisableProcessorMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DisableProcessorMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DisableProcessorResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DisableProcessorResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DisableProcessorResponse');
@@ -0,0 +1,74 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DocumentId extends \Google\Model
{
protected $gcsManagedDocIdType = GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId::class;
protected $gcsManagedDocIdDataType = '';
protected $revisionRefType = GoogleCloudDocumentaiUiv1beta3RevisionRef::class;
protected $revisionRefDataType = '';
protected $unmanagedDocIdType = GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId::class;
protected $unmanagedDocIdDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId
*/
public function setGcsManagedDocId(GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId $gcsManagedDocId)
{
$this->gcsManagedDocId = $gcsManagedDocId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId
*/
public function getGcsManagedDocId()
{
return $this->gcsManagedDocId;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3RevisionRef
*/
public function setRevisionRef(GoogleCloudDocumentaiUiv1beta3RevisionRef $revisionRef)
{
$this->revisionRef = $revisionRef;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3RevisionRef
*/
public function getRevisionRef()
{
return $this->revisionRef;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
*/
public function setUnmanagedDocId(GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId $unmanagedDocId)
{
$this->unmanagedDocId = $unmanagedDocId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
*/
public function getUnmanagedDocId()
{
return $this->unmanagedDocId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DocumentId::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DocumentId');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId extends \Google\Model
{
/**
* @var string
*/
public $cwDocId;
/**
* @var string
*/
public $gcsUri;
/**
* @param string
*/
public function setCwDocId($cwDocId)
{
$this->cwDocId = $cwDocId;
}
/**
* @return string
*/
public function getCwDocId()
{
return $this->cwDocId;
}
/**
* @param string
*/
public function setGcsUri($gcsUri)
{
$this->gcsUri = $gcsUri;
}
/**
* @return string
*/
public function getGcsUri()
{
return $this->gcsUri;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId extends \Google\Model
{
/**
* @var string
*/
public $docId;
/**
* @param string
*/
public function setDocId($docId)
{
$this->docId = $docId;
}
/**
* @return string
*/
public function getDocId()
{
return $this->docId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3EnableProcessorResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3EnableProcessorResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3EnableProcessorResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionMetadata');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionResponse extends \Google\Model
{
/**
* @var string
*/
public $evaluation;
/**
* @param string
*/
public function setEvaluation($evaluation)
{
$this->evaluation = $evaluation;
}
/**
* @return string
*/
public function getEvaluation()
{
return $this->evaluation;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionResponse');
@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata extends \Google\Collection
{
protected $collection_key = 'splitExportStats';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
protected $individualExportStatusesType = GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus::class;
protected $individualExportStatusesDataType = 'array';
protected $splitExportStatsType = GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat::class;
protected $splitExportStatsDataType = 'array';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus[]
*/
public function setIndividualExportStatuses($individualExportStatuses)
{
$this->individualExportStatuses = $individualExportStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus[]
*/
public function getIndividualExportStatuses()
{
return $this->individualExportStatuses;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat[]
*/
public function setSplitExportStats($splitExportStats)
{
$this->splitExportStats = $splitExportStats;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat[]
*/
public function getSplitExportStats()
{
return $this->splitExportStats;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata');
@@ -0,0 +1,76 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus extends \Google\Model
{
protected $documentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $documentIdDataType = '';
/**
* @var string
*/
public $outputGcsDestination;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $documentId)
{
$this->documentId = $documentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getDocumentId()
{
return $this->documentId;
}
/**
* @param string
*/
public function setOutputGcsDestination($outputGcsDestination)
{
$this->outputGcsDestination = $outputGcsDestination;
}
/**
* @return string
*/
public function getOutputGcsDestination()
{
return $this->outputGcsDestination;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat extends \Google\Model
{
/**
* @var string
*/
public $splitType;
/**
* @var int
*/
public $totalDocumentCount;
/**
* @param string
*/
public function setSplitType($splitType)
{
$this->splitType = $splitType;
}
/**
* @return string
*/
public function getSplitType()
{
return $this->splitType;
}
/**
* @param int
*/
public function setTotalDocumentCount($totalDocumentCount)
{
$this->totalDocumentCount = $totalDocumentCount;
}
/**
* @return int
*/
public function getTotalDocumentCount()
{
return $this->totalDocumentCount;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse extends \Google\Model
{
/**
* @var string
*/
public $gcsUri;
/**
* @param string
*/
public function setGcsUri($gcsUri)
{
$this->gcsUri = $gcsUri;
}
/**
* @return string
*/
public function getGcsUri()
{
return $this->gcsUri;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse');
@@ -0,0 +1,93 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadata extends \Google\Collection
{
protected $collection_key = 'individualImportStatuses';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
protected $importConfigValidationResultsType = GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::class;
protected $importConfigValidationResultsDataType = 'array';
protected $individualImportStatusesType = GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::class;
protected $individualImportStatusesDataType = 'array';
/**
* @var int
*/
public $totalDocumentCount;
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult[]
*/
public function setImportConfigValidationResults($importConfigValidationResults)
{
$this->importConfigValidationResults = $importConfigValidationResults;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult[]
*/
public function getImportConfigValidationResults()
{
return $this->importConfigValidationResults;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus[]
*/
public function setIndividualImportStatuses($individualImportStatuses)
{
$this->individualImportStatuses = $individualImportStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus[]
*/
public function getIndividualImportStatuses()
{
return $this->individualImportStatuses;
}
/**
* @param int
*/
public function setTotalDocumentCount($totalDocumentCount)
{
$this->totalDocumentCount = $totalDocumentCount;
}
/**
* @return int
*/
public function getTotalDocumentCount()
{
return $this->totalDocumentCount;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadata');
@@ -0,0 +1,60 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult extends \Google\Model
{
/**
* @var string
*/
public $inputGcsSource;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param string
*/
public function setInputGcsSource($inputGcsSource)
{
$this->inputGcsSource = $inputGcsSource;
}
/**
* @return string
*/
public function getInputGcsSource()
{
return $this->inputGcsSource;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult');
@@ -0,0 +1,94 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus extends \Google\Model
{
/**
* @var string
*/
public $inputGcsSource;
protected $outputDocumentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $outputDocumentIdDataType = '';
/**
* @var string
*/
public $outputGcsDestination;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param string
*/
public function setInputGcsSource($inputGcsSource)
{
$this->inputGcsSource = $inputGcsSource;
}
/**
* @return string
*/
public function getInputGcsSource()
{
return $this->inputGcsSource;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setOutputDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $outputDocumentId)
{
$this->outputDocumentId = $outputDocumentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getOutputDocumentId()
{
return $this->outputDocumentId;
}
/**
* @param string
*/
public function setOutputGcsDestination($outputGcsDestination)
{
$this->outputGcsDestination = $outputGcsDestination;
}
/**
* @return string
*/
public function getOutputGcsDestination()
{
return $this->outputGcsDestination;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ImportDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ImportDocumentsResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionMetadata');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionResponse extends \Google\Model
{
/**
* @var string
*/
public $processorVersion;
/**
* @param string
*/
public function setProcessorVersion($processorVersion)
{
$this->processorVersion = $processorVersion;
}
/**
* @return string
*/
public function getProcessorVersion()
{
return $this->processorVersion;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionResponse');
@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata extends \Google\Collection
{
protected $collection_key = 'individualDocumentResyncStatuses';
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
protected $datasetResyncStatusesType = GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::class;
protected $datasetResyncStatusesDataType = 'array';
protected $individualDocumentResyncStatusesType = GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::class;
protected $individualDocumentResyncStatusesDataType = 'array';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus[]
*/
public function setDatasetResyncStatuses($datasetResyncStatuses)
{
$this->datasetResyncStatuses = $datasetResyncStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus[]
*/
public function getDatasetResyncStatuses()
{
return $this->datasetResyncStatuses;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus[]
*/
public function setIndividualDocumentResyncStatuses($individualDocumentResyncStatuses)
{
$this->individualDocumentResyncStatuses = $individualDocumentResyncStatuses;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus[]
*/
public function getIndividualDocumentResyncStatuses()
{
return $this->individualDocumentResyncStatuses;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata');
@@ -0,0 +1,60 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus extends \Google\Model
{
/**
* @var string
*/
public $datasetInconsistencyType;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param string
*/
public function setDatasetInconsistencyType($datasetInconsistencyType)
{
$this->datasetInconsistencyType = $datasetInconsistencyType;
}
/**
* @return string
*/
public function getDatasetInconsistencyType()
{
return $this->datasetInconsistencyType;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus');
@@ -0,0 +1,76 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus extends \Google\Model
{
protected $documentIdType = GoogleCloudDocumentaiUiv1beta3DocumentId::class;
protected $documentIdDataType = '';
/**
* @var string
*/
public $documentInconsistencyType;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function setDocumentId(GoogleCloudDocumentaiUiv1beta3DocumentId $documentId)
{
$this->documentId = $documentId;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3DocumentId
*/
public function getDocumentId()
{
return $this->documentId;
}
/**
* @param string
*/
public function setDocumentInconsistencyType($documentInconsistencyType)
{
$this->documentInconsistencyType = $documentInconsistencyType;
}
/**
* @return string
*/
public function getDocumentInconsistencyType()
{
return $this->documentInconsistencyType;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus');
@@ -0,0 +1,78 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument extends \Google\Model
{
/**
* @var string
*/
public $destinationPrefix;
/**
* @var string
*/
public $sourcePrefix;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param string
*/
public function setDestinationPrefix($destinationPrefix)
{
$this->destinationPrefix = $destinationPrefix;
}
/**
* @return string
*/
public function getDestinationPrefix()
{
return $this->destinationPrefix;
}
/**
* @param string
*/
public function setSourcePrefix($sourcePrefix)
{
$this->sourcePrefix = $sourcePrefix;
}
/**
* @return string
*/
public function getSourcePrefix()
{
return $this->sourcePrefix;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse');
@@ -0,0 +1,80 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3RevisionRef extends \Google\Model
{
/**
* @var string
*/
public $latestProcessorVersion;
/**
* @var string
*/
public $revisionCase;
/**
* @var string
*/
public $revisionId;
/**
* @param string
*/
public function setLatestProcessorVersion($latestProcessorVersion)
{
$this->latestProcessorVersion = $latestProcessorVersion;
}
/**
* @return string
*/
public function getLatestProcessorVersion()
{
return $this->latestProcessorVersion;
}
/**
* @param string
*/
public function setRevisionCase($revisionCase)
{
$this->revisionCase = $revisionCase;
}
/**
* @return string
*/
public function getRevisionCase()
{
return $this->revisionCase;
}
/**
* @param string
*/
public function setRevisionId($revisionId)
{
$this->revisionId = $revisionId;
}
/**
* @return string
*/
public function getRevisionId()
{
return $this->revisionId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3RevisionRef::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3RevisionRef');
@@ -0,0 +1,80 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3RevisionReference extends \Google\Model
{
/**
* @var string
*/
public $latestProcessorVersion;
/**
* @var string
*/
public $revisionCase;
/**
* @var string
*/
public $revisionId;
/**
* @param string
*/
public function setLatestProcessorVersion($latestProcessorVersion)
{
$this->latestProcessorVersion = $latestProcessorVersion;
}
/**
* @return string
*/
public function getLatestProcessorVersion()
{
return $this->latestProcessorVersion;
}
/**
* @param string
*/
public function setRevisionCase($revisionCase)
{
$this->revisionCase = $revisionCase;
}
/**
* @return string
*/
public function getRevisionCase()
{
return $this->revisionCase;
}
/**
* @param string
*/
public function setRevisionId($revisionId)
{
$this->revisionId = $revisionId;
}
/**
* @return string
*/
public function getRevisionId()
{
return $this->revisionId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3RevisionReference::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3RevisionReference');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3SampleDocumentsMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3SampleDocumentsMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3SampleDocumentsMetadata');
@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponse extends \Google\Collection
{
protected $collection_key = 'selectedDocuments';
protected $sampleTestStatusType = GoogleRpcStatus::class;
protected $sampleTestStatusDataType = '';
protected $sampleTrainingStatusType = GoogleRpcStatus::class;
protected $sampleTrainingStatusDataType = '';
protected $selectedDocumentsType = GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument::class;
protected $selectedDocumentsDataType = 'array';
/**
* @param GoogleRpcStatus
*/
public function setSampleTestStatus(GoogleRpcStatus $sampleTestStatus)
{
$this->sampleTestStatus = $sampleTestStatus;
}
/**
* @return GoogleRpcStatus
*/
public function getSampleTestStatus()
{
return $this->sampleTestStatus;
}
/**
* @param GoogleRpcStatus
*/
public function setSampleTrainingStatus(GoogleRpcStatus $sampleTrainingStatus)
{
$this->sampleTrainingStatus = $sampleTrainingStatus;
}
/**
* @return GoogleRpcStatus
*/
public function getSampleTrainingStatus()
{
return $this->sampleTrainingStatus;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument[]
*/
public function setSelectedDocuments($selectedDocuments)
{
$this->selectedDocuments = $selectedDocuments;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument[]
*/
public function getSelectedDocuments()
{
return $this->selectedDocuments;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponse');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument extends \Google\Model
{
/**
* @var string
*/
public $documentId;
/**
* @param string
*/
public function setDocumentId($documentId)
{
$this->documentId = $documentId;
}
/**
* @return string
*/
public function getDocumentId()
{
return $this->documentId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionResponse');
@@ -0,0 +1,74 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
protected $testDatasetValidationType = GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation::class;
protected $testDatasetValidationDataType = '';
protected $trainingDatasetValidationType = GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation::class;
protected $trainingDatasetValidationDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation
*/
public function setTestDatasetValidation(GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation $testDatasetValidation)
{
$this->testDatasetValidation = $testDatasetValidation;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation
*/
public function getTestDatasetValidation()
{
return $this->testDatasetValidation;
}
/**
* @param GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation
*/
public function setTrainingDatasetValidation(GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation $trainingDatasetValidation)
{
$this->trainingDatasetValidation = $trainingDatasetValidation;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation
*/
public function getTrainingDatasetValidation()
{
return $this->trainingDatasetValidation;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadata');
@@ -0,0 +1,95 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation extends \Google\Collection
{
protected $collection_key = 'documentErrors';
/**
* @var int
*/
public $datasetErrorCount;
protected $datasetErrorsType = GoogleRpcStatus::class;
protected $datasetErrorsDataType = 'array';
/**
* @var int
*/
public $documentErrorCount;
protected $documentErrorsType = GoogleRpcStatus::class;
protected $documentErrorsDataType = 'array';
/**
* @param int
*/
public function setDatasetErrorCount($datasetErrorCount)
{
$this->datasetErrorCount = $datasetErrorCount;
}
/**
* @return int
*/
public function getDatasetErrorCount()
{
return $this->datasetErrorCount;
}
/**
* @param GoogleRpcStatus[]
*/
public function setDatasetErrors($datasetErrors)
{
$this->datasetErrors = $datasetErrors;
}
/**
* @return GoogleRpcStatus[]
*/
public function getDatasetErrors()
{
return $this->datasetErrors;
}
/**
* @param int
*/
public function setDocumentErrorCount($documentErrorCount)
{
$this->documentErrorCount = $documentErrorCount;
}
/**
* @return int
*/
public function getDocumentErrorCount()
{
return $this->documentErrorCount;
}
/**
* @param GoogleRpcStatus[]
*/
public function setDocumentErrors($documentErrors)
{
$this->documentErrors = $documentErrors;
}
/**
* @return GoogleRpcStatus[]
*/
public function getDocumentErrors()
{
return $this->documentErrors;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionResponse extends \Google\Model
{
/**
* @var string
*/
public $processorVersion;
/**
* @param string
*/
public function setProcessorVersion($processorVersion)
{
$this->processorVersion = $processorVersion;
}
/**
* @return string
*/
public function getProcessorVersion()
{
return $this->processorVersion;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3UpdateDatasetOperationMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3UpdateDatasetOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3UpdateDatasetOperationMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3UpdateHumanReviewConfigMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3UpdateHumanReviewConfigMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3UpdateHumanReviewConfigMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiUiv1beta3UpdateLabelerPoolOperationMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiUiv1beta3UpdateLabelerPoolOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiUiv1beta3UpdateLabelerPoolOperationMetadata');
@@ -0,0 +1,80 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1Barcode extends \Google\Model
{
/**
* @var string
*/
public $format;
/**
* @var string
*/
public $rawValue;
/**
* @var string
*/
public $valueFormat;
/**
* @param string
*/
public function setFormat($format)
{
$this->format = $format;
}
/**
* @return string
*/
public function getFormat()
{
return $this->format;
}
/**
* @param string
*/
public function setRawValue($rawValue)
{
$this->rawValue = $rawValue;
}
/**
* @return string
*/
public function getRawValue()
{
return $this->rawValue;
}
/**
* @param string
*/
public function setValueFormat($valueFormat)
{
$this->valueFormat = $valueFormat;
}
/**
* @return string
*/
public function getValueFormat()
{
return $this->valueFormat;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1Barcode::class, 'Google_Service_Document_GoogleCloudDocumentaiV1Barcode');
@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1BatchDocumentsInputConfig extends \Google\Model
{
protected $gcsDocumentsType = GoogleCloudDocumentaiV1GcsDocuments::class;
protected $gcsDocumentsDataType = '';
protected $gcsPrefixType = GoogleCloudDocumentaiV1GcsPrefix::class;
protected $gcsPrefixDataType = '';
/**
* @param GoogleCloudDocumentaiV1GcsDocuments
*/
public function setGcsDocuments(GoogleCloudDocumentaiV1GcsDocuments $gcsDocuments)
{
$this->gcsDocuments = $gcsDocuments;
}
/**
* @return GoogleCloudDocumentaiV1GcsDocuments
*/
public function getGcsDocuments()
{
return $this->gcsDocuments;
}
/**
* @param GoogleCloudDocumentaiV1GcsPrefix
*/
public function setGcsPrefix(GoogleCloudDocumentaiV1GcsPrefix $gcsPrefix)
{
$this->gcsPrefix = $gcsPrefix;
}
/**
* @return GoogleCloudDocumentaiV1GcsPrefix
*/
public function getGcsPrefix()
{
return $this->gcsPrefix;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1BatchDocumentsInputConfig::class, 'Google_Service_Document_GoogleCloudDocumentaiV1BatchDocumentsInputConfig');
@@ -0,0 +1,115 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1BatchProcessMetadata extends \Google\Collection
{
protected $collection_key = 'individualProcessStatuses';
/**
* @var string
*/
public $createTime;
protected $individualProcessStatusesType = GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus::class;
protected $individualProcessStatusesDataType = 'array';
/**
* @var string
*/
public $state;
/**
* @var string
*/
public $stateMessage;
/**
* @var string
*/
public $updateTime;
/**
* @param string
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* @param GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus[]
*/
public function setIndividualProcessStatuses($individualProcessStatuses)
{
$this->individualProcessStatuses = $individualProcessStatuses;
}
/**
* @return GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus[]
*/
public function getIndividualProcessStatuses()
{
return $this->individualProcessStatuses;
}
/**
* @param string
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @param string
*/
public function setStateMessage($stateMessage)
{
$this->stateMessage = $stateMessage;
}
/**
* @return string
*/
public function getStateMessage()
{
return $this->stateMessage;
}
/**
* @param string
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1BatchProcessMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiV1BatchProcessMetadata');
@@ -0,0 +1,94 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus extends \Google\Model
{
protected $humanReviewStatusType = GoogleCloudDocumentaiV1HumanReviewStatus::class;
protected $humanReviewStatusDataType = '';
/**
* @var string
*/
public $inputGcsSource;
/**
* @var string
*/
public $outputGcsDestination;
protected $statusType = GoogleRpcStatus::class;
protected $statusDataType = '';
/**
* @param GoogleCloudDocumentaiV1HumanReviewStatus
*/
public function setHumanReviewStatus(GoogleCloudDocumentaiV1HumanReviewStatus $humanReviewStatus)
{
$this->humanReviewStatus = $humanReviewStatus;
}
/**
* @return GoogleCloudDocumentaiV1HumanReviewStatus
*/
public function getHumanReviewStatus()
{
return $this->humanReviewStatus;
}
/**
* @param string
*/
public function setInputGcsSource($inputGcsSource)
{
$this->inputGcsSource = $inputGcsSource;
}
/**
* @return string
*/
public function getInputGcsSource()
{
return $this->inputGcsSource;
}
/**
* @param string
*/
public function setOutputGcsDestination($outputGcsDestination)
{
$this->outputGcsDestination = $outputGcsDestination;
}
/**
* @return string
*/
public function getOutputGcsDestination()
{
return $this->outputGcsDestination;
}
/**
* @param GoogleRpcStatus
*/
public function setStatus(GoogleRpcStatus $status)
{
$this->status = $status;
}
/**
* @return GoogleRpcStatus
*/
public function getStatus()
{
return $this->status;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus::class, 'Google_Service_Document_GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus');
@@ -0,0 +1,110 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1BatchProcessRequest extends \Google\Model
{
protected $documentOutputConfigType = GoogleCloudDocumentaiV1DocumentOutputConfig::class;
protected $documentOutputConfigDataType = '';
protected $inputDocumentsType = GoogleCloudDocumentaiV1BatchDocumentsInputConfig::class;
protected $inputDocumentsDataType = '';
/**
* @var string[]
*/
public $labels;
protected $processOptionsType = GoogleCloudDocumentaiV1ProcessOptions::class;
protected $processOptionsDataType = '';
/**
* @var bool
*/
public $skipHumanReview;
/**
* @param GoogleCloudDocumentaiV1DocumentOutputConfig
*/
public function setDocumentOutputConfig(GoogleCloudDocumentaiV1DocumentOutputConfig $documentOutputConfig)
{
$this->documentOutputConfig = $documentOutputConfig;
}
/**
* @return GoogleCloudDocumentaiV1DocumentOutputConfig
*/
public function getDocumentOutputConfig()
{
return $this->documentOutputConfig;
}
/**
* @param GoogleCloudDocumentaiV1BatchDocumentsInputConfig
*/
public function setInputDocuments(GoogleCloudDocumentaiV1BatchDocumentsInputConfig $inputDocuments)
{
$this->inputDocuments = $inputDocuments;
}
/**
* @return GoogleCloudDocumentaiV1BatchDocumentsInputConfig
*/
public function getInputDocuments()
{
return $this->inputDocuments;
}
/**
* @param string[]
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return string[]
*/
public function getLabels()
{
return $this->labels;
}
/**
* @param GoogleCloudDocumentaiV1ProcessOptions
*/
public function setProcessOptions(GoogleCloudDocumentaiV1ProcessOptions $processOptions)
{
$this->processOptions = $processOptions;
}
/**
* @return GoogleCloudDocumentaiV1ProcessOptions
*/
public function getProcessOptions()
{
return $this->processOptions;
}
/**
* @param bool
*/
public function setSkipHumanReview($skipHumanReview)
{
$this->skipHumanReview = $skipHumanReview;
}
/**
* @return bool
*/
public function getSkipHumanReview()
{
return $this->skipHumanReview;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1BatchProcessRequest::class, 'Google_Service_Document_GoogleCloudDocumentaiV1BatchProcessRequest');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1BatchProcessResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1BatchProcessResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiV1BatchProcessResponse');
@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1BoundingPoly extends \Google\Collection
{
protected $collection_key = 'vertices';
protected $normalizedVerticesType = GoogleCloudDocumentaiV1NormalizedVertex::class;
protected $normalizedVerticesDataType = 'array';
protected $verticesType = GoogleCloudDocumentaiV1Vertex::class;
protected $verticesDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1NormalizedVertex[]
*/
public function setNormalizedVertices($normalizedVertices)
{
$this->normalizedVertices = $normalizedVertices;
}
/**
* @return GoogleCloudDocumentaiV1NormalizedVertex[]
*/
public function getNormalizedVertices()
{
return $this->normalizedVertices;
}
/**
* @param GoogleCloudDocumentaiV1Vertex[]
*/
public function setVertices($vertices)
{
$this->vertices = $vertices;
}
/**
* @return GoogleCloudDocumentaiV1Vertex[]
*/
public function getVertices()
{
return $this->vertices;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1BoundingPoly::class, 'Google_Service_Document_GoogleCloudDocumentaiV1BoundingPoly');
@@ -0,0 +1,116 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1CommonOperationMetadata extends \Google\Model
{
/**
* @var string
*/
public $createTime;
/**
* @var string
*/
public $resource;
/**
* @var string
*/
public $state;
/**
* @var string
*/
public $stateMessage;
/**
* @var string
*/
public $updateTime;
/**
* @param string
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* @param string
*/
public function setResource($resource)
{
$this->resource = $resource;
}
/**
* @return string
*/
public function getResource()
{
return $this->resource;
}
/**
* @param string
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @param string
*/
public function setStateMessage($stateMessage)
{
$this->stateMessage = $stateMessage;
}
/**
* @return string
*/
public function getStateMessage()
{
return $this->stateMessage;
}
/**
* @param string
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1CommonOperationMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiV1CommonOperationMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DeleteProcessorMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiV1CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiV1CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DeleteProcessorMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DeleteProcessorMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DeleteProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiV1CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiV1CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DeleteProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DeleteProcessorVersionMetadata');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DeployProcessorVersionMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiV1CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiV1CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DeployProcessorVersionMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DeployProcessorVersionMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DeployProcessorVersionRequest extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DeployProcessorVersionRequest::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DeployProcessorVersionRequest');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DeployProcessorVersionResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DeployProcessorVersionResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DeployProcessorVersionResponse');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DisableProcessorMetadata extends \Google\Model
{
protected $commonMetadataType = GoogleCloudDocumentaiV1CommonOperationMetadata::class;
protected $commonMetadataDataType = '';
/**
* @param GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function setCommonMetadata(GoogleCloudDocumentaiV1CommonOperationMetadata $commonMetadata)
{
$this->commonMetadata = $commonMetadata;
}
/**
* @return GoogleCloudDocumentaiV1CommonOperationMetadata
*/
public function getCommonMetadata()
{
return $this->commonMetadata;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DisableProcessorMetadata::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DisableProcessorMetadata');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DisableProcessorRequest extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DisableProcessorRequest::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DisableProcessorRequest');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DisableProcessorResponse extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DisableProcessorResponse::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DisableProcessorResponse');
@@ -0,0 +1,259 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1Document extends \Google\Collection
{
protected $collection_key = 'textStyles';
protected $chunkedDocumentType = GoogleCloudDocumentaiV1DocumentChunkedDocument::class;
protected $chunkedDocumentDataType = '';
/**
* @var string
*/
public $content;
protected $documentLayoutType = GoogleCloudDocumentaiV1DocumentDocumentLayout::class;
protected $documentLayoutDataType = '';
protected $entitiesType = GoogleCloudDocumentaiV1DocumentEntity::class;
protected $entitiesDataType = 'array';
protected $entityRelationsType = GoogleCloudDocumentaiV1DocumentEntityRelation::class;
protected $entityRelationsDataType = 'array';
protected $errorType = GoogleRpcStatus::class;
protected $errorDataType = '';
/**
* @var string
*/
public $mimeType;
protected $pagesType = GoogleCloudDocumentaiV1DocumentPage::class;
protected $pagesDataType = 'array';
protected $revisionsType = GoogleCloudDocumentaiV1DocumentRevision::class;
protected $revisionsDataType = 'array';
protected $shardInfoType = GoogleCloudDocumentaiV1DocumentShardInfo::class;
protected $shardInfoDataType = '';
/**
* @var string
*/
public $text;
protected $textChangesType = GoogleCloudDocumentaiV1DocumentTextChange::class;
protected $textChangesDataType = 'array';
protected $textStylesType = GoogleCloudDocumentaiV1DocumentStyle::class;
protected $textStylesDataType = 'array';
/**
* @var string
*/
public $uri;
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocument
*/
public function setChunkedDocument(GoogleCloudDocumentaiV1DocumentChunkedDocument $chunkedDocument)
{
$this->chunkedDocument = $chunkedDocument;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocument
*/
public function getChunkedDocument()
{
return $this->chunkedDocument;
}
/**
* @param string
*/
public function setContent($content)
{
$this->content = $content;
}
/**
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayout
*/
public function setDocumentLayout(GoogleCloudDocumentaiV1DocumentDocumentLayout $documentLayout)
{
$this->documentLayout = $documentLayout;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayout
*/
public function getDocumentLayout()
{
return $this->documentLayout;
}
/**
* @param GoogleCloudDocumentaiV1DocumentEntity[]
*/
public function setEntities($entities)
{
$this->entities = $entities;
}
/**
* @return GoogleCloudDocumentaiV1DocumentEntity[]
*/
public function getEntities()
{
return $this->entities;
}
/**
* @param GoogleCloudDocumentaiV1DocumentEntityRelation[]
*/
public function setEntityRelations($entityRelations)
{
$this->entityRelations = $entityRelations;
}
/**
* @return GoogleCloudDocumentaiV1DocumentEntityRelation[]
*/
public function getEntityRelations()
{
return $this->entityRelations;
}
/**
* @param GoogleRpcStatus
*/
public function setError(GoogleRpcStatus $error)
{
$this->error = $error;
}
/**
* @return GoogleRpcStatus
*/
public function getError()
{
return $this->error;
}
/**
* @param string
*/
public function setMimeType($mimeType)
{
$this->mimeType = $mimeType;
}
/**
* @return string
*/
public function getMimeType()
{
return $this->mimeType;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPage[]
*/
public function setPages($pages)
{
$this->pages = $pages;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPage[]
*/
public function getPages()
{
return $this->pages;
}
/**
* @param GoogleCloudDocumentaiV1DocumentRevision[]
*/
public function setRevisions($revisions)
{
$this->revisions = $revisions;
}
/**
* @return GoogleCloudDocumentaiV1DocumentRevision[]
*/
public function getRevisions()
{
return $this->revisions;
}
/**
* @param GoogleCloudDocumentaiV1DocumentShardInfo
*/
public function setShardInfo(GoogleCloudDocumentaiV1DocumentShardInfo $shardInfo)
{
$this->shardInfo = $shardInfo;
}
/**
* @return GoogleCloudDocumentaiV1DocumentShardInfo
*/
public function getShardInfo()
{
return $this->shardInfo;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
/**
* @param GoogleCloudDocumentaiV1DocumentTextChange[]
*/
public function setTextChanges($textChanges)
{
$this->textChanges = $textChanges;
}
/**
* @return GoogleCloudDocumentaiV1DocumentTextChange[]
*/
public function getTextChanges()
{
return $this->textChanges;
}
/**
* @param GoogleCloudDocumentaiV1DocumentStyle[]
*/
public function setTextStyles($textStyles)
{
$this->textStyles = $textStyles;
}
/**
* @return GoogleCloudDocumentaiV1DocumentStyle[]
*/
public function getTextStyles()
{
return $this->textStyles;
}
/**
* @param string
*/
public function setUri($uri)
{
$this->uri = $uri;
}
/**
* @return string
*/
public function getUri()
{
return $this->uri;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1Document::class, 'Google_Service_Document_GoogleCloudDocumentaiV1Document');
@@ -0,0 +1,43 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentChunkedDocument extends \Google\Collection
{
protected $collection_key = 'chunks';
protected $chunksType = GoogleCloudDocumentaiV1DocumentChunkedDocumentChunk::class;
protected $chunksDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocumentChunk[]
*/
public function setChunks($chunks)
{
$this->chunks = $chunks;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocumentChunk[]
*/
public function getChunks()
{
return $this->chunks;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentChunkedDocument::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentChunkedDocument');
@@ -0,0 +1,129 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentChunkedDocumentChunk extends \Google\Collection
{
protected $collection_key = 'sourceBlockIds';
/**
* @var string
*/
public $chunkId;
/**
* @var string
*/
public $content;
protected $pageFootersType = GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter::class;
protected $pageFootersDataType = 'array';
protected $pageHeadersType = GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageHeader::class;
protected $pageHeadersDataType = 'array';
protected $pageSpanType = GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan::class;
protected $pageSpanDataType = '';
/**
* @var string[]
*/
public $sourceBlockIds;
/**
* @param string
*/
public function setChunkId($chunkId)
{
$this->chunkId = $chunkId;
}
/**
* @return string
*/
public function getChunkId()
{
return $this->chunkId;
}
/**
* @param string
*/
public function setContent($content)
{
$this->content = $content;
}
/**
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter[]
*/
public function setPageFooters($pageFooters)
{
$this->pageFooters = $pageFooters;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter[]
*/
public function getPageFooters()
{
return $this->pageFooters;
}
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageHeader[]
*/
public function setPageHeaders($pageHeaders)
{
$this->pageHeaders = $pageHeaders;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageHeader[]
*/
public function getPageHeaders()
{
return $this->pageHeaders;
}
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
*/
public function setPageSpan(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan $pageSpan)
{
$this->pageSpan = $pageSpan;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
*/
public function getPageSpan()
{
return $this->pageSpan;
}
/**
* @param string[]
*/
public function setSourceBlockIds($sourceBlockIds)
{
$this->sourceBlockIds = $sourceBlockIds;
}
/**
* @return string[]
*/
public function getSourceBlockIds()
{
return $this->sourceBlockIds;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunk::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentChunkedDocumentChunk');
@@ -0,0 +1,60 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter extends \Google\Model
{
protected $pageSpanType = GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan::class;
protected $pageSpanDataType = '';
/**
* @var string
*/
public $text;
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
*/
public function setPageSpan(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan $pageSpan)
{
$this->pageSpan = $pageSpan;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
*/
public function getPageSpan()
{
return $this->pageSpan;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter');
@@ -0,0 +1,60 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageHeader extends \Google\Model
{
protected $pageSpanType = GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan::class;
protected $pageSpanDataType = '';
/**
* @var string
*/
public $text;
/**
* @param GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
*/
public function setPageSpan(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan $pageSpan)
{
$this->pageSpan = $pageSpan;
}
/**
* @return GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
*/
public function getPageSpan()
{
return $this->pageSpan;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageHeader::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageHeader');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan extends \Google\Model
{
/**
* @var int
*/
public $pageEnd;
/**
* @var int
*/
public $pageStart;
/**
* @param int
*/
public function setPageEnd($pageEnd)
{
$this->pageEnd = $pageEnd;
}
/**
* @return int
*/
public function getPageEnd()
{
return $this->pageEnd;
}
/**
* @param int
*/
public function setPageStart($pageStart)
{
$this->pageStart = $pageStart;
}
/**
* @return int
*/
public function getPageStart()
{
return $this->pageStart;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan');
@@ -0,0 +1,43 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayout extends \Google\Collection
{
protected $collection_key = 'blocks';
protected $blocksType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock::class;
protected $blocksDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function setBlocks($blocks)
{
$this->blocks = $blocks;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function getBlocks()
{
return $this->blocks;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayout::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayout');
@@ -0,0 +1,108 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock extends \Google\Model
{
/**
* @var string
*/
public $blockId;
protected $listBlockType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock::class;
protected $listBlockDataType = '';
protected $pageSpanType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan::class;
protected $pageSpanDataType = '';
protected $tableBlockType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock::class;
protected $tableBlockDataType = '';
protected $textBlockType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock::class;
protected $textBlockDataType = '';
/**
* @param string
*/
public function setBlockId($blockId)
{
$this->blockId = $blockId;
}
/**
* @return string
*/
public function getBlockId()
{
return $this->blockId;
}
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock
*/
public function setListBlock(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock $listBlock)
{
$this->listBlock = $listBlock;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock
*/
public function getListBlock()
{
return $this->listBlock;
}
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan
*/
public function setPageSpan(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan $pageSpan)
{
$this->pageSpan = $pageSpan;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan
*/
public function getPageSpan()
{
return $this->pageSpan;
}
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock
*/
public function setTableBlock(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock $tableBlock)
{
$this->tableBlock = $tableBlock;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock
*/
public function getTableBlock()
{
return $this->tableBlock;
}
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock
*/
public function setTextBlock(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock $textBlock)
{
$this->textBlock = $textBlock;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock
*/
public function getTextBlock()
{
return $this->textBlock;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock');
@@ -0,0 +1,61 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock extends \Google\Collection
{
protected $collection_key = 'listEntries';
protected $listEntriesType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry::class;
protected $listEntriesDataType = 'array';
/**
* @var string
*/
public $type;
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry[]
*/
public function setListEntries($listEntries)
{
$this->listEntries = $listEntries;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry[]
*/
public function getListEntries()
{
return $this->listEntries;
}
/**
* @param string
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock');
@@ -0,0 +1,43 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry extends \Google\Collection
{
protected $collection_key = 'blocks';
protected $blocksType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock::class;
protected $blocksDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function setBlocks($blocks)
{
$this->blocks = $blocks;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function getBlocks()
{
return $this->blocks;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan extends \Google\Model
{
/**
* @var int
*/
public $pageEnd;
/**
* @var int
*/
public $pageStart;
/**
* @param int
*/
public function setPageEnd($pageEnd)
{
$this->pageEnd = $pageEnd;
}
/**
* @return int
*/
public function getPageEnd()
{
return $this->pageEnd;
}
/**
* @param int
*/
public function setPageStart($pageStart)
{
$this->pageStart = $pageStart;
}
/**
* @return int
*/
public function getPageStart()
{
return $this->pageStart;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan');
@@ -0,0 +1,77 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock extends \Google\Collection
{
protected $collection_key = 'headerRows';
protected $bodyRowsType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow::class;
protected $bodyRowsDataType = 'array';
/**
* @var string
*/
public $caption;
protected $headerRowsType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow::class;
protected $headerRowsDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow[]
*/
public function setBodyRows($bodyRows)
{
$this->bodyRows = $bodyRows;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow[]
*/
public function getBodyRows()
{
return $this->bodyRows;
}
/**
* @param string
*/
public function setCaption($caption)
{
$this->caption = $caption;
}
/**
* @return string
*/
public function getCaption()
{
return $this->caption;
}
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow[]
*/
public function setHeaderRows($headerRows)
{
$this->headerRows = $headerRows;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow[]
*/
public function getHeaderRows()
{
return $this->headerRows;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock');
@@ -0,0 +1,79 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell extends \Google\Collection
{
protected $collection_key = 'blocks';
protected $blocksType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock::class;
protected $blocksDataType = 'array';
/**
* @var int
*/
public $colSpan;
/**
* @var int
*/
public $rowSpan;
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function setBlocks($blocks)
{
$this->blocks = $blocks;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function getBlocks()
{
return $this->blocks;
}
/**
* @param int
*/
public function setColSpan($colSpan)
{
$this->colSpan = $colSpan;
}
/**
* @return int
*/
public function getColSpan()
{
return $this->colSpan;
}
/**
* @param int
*/
public function setRowSpan($rowSpan)
{
$this->rowSpan = $rowSpan;
}
/**
* @return int
*/
public function getRowSpan()
{
return $this->rowSpan;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell');
@@ -0,0 +1,43 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow extends \Google\Collection
{
protected $collection_key = 'cells';
protected $cellsType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell::class;
protected $cellsDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell[]
*/
public function setCells($cells)
{
$this->cells = $cells;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableCell[]
*/
public function getCells()
{
return $this->cells;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow');
@@ -0,0 +1,79 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock extends \Google\Collection
{
protected $collection_key = 'blocks';
protected $blocksType = GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock::class;
protected $blocksDataType = 'array';
/**
* @var string
*/
public $text;
/**
* @var string
*/
public $type;
/**
* @param GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function setBlocks($blocks)
{
$this->blocks = $blocks;
}
/**
* @return GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlock[]
*/
public function getBlocks()
{
return $this->blocks;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
/**
* @param string
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock');
@@ -0,0 +1,215 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentEntity extends \Google\Collection
{
protected $collection_key = 'properties';
/**
* @var float
*/
public $confidence;
/**
* @var string
*/
public $id;
/**
* @var string
*/
public $mentionId;
/**
* @var string
*/
public $mentionText;
protected $normalizedValueType = GoogleCloudDocumentaiV1DocumentEntityNormalizedValue::class;
protected $normalizedValueDataType = '';
protected $pageAnchorType = GoogleCloudDocumentaiV1DocumentPageAnchor::class;
protected $pageAnchorDataType = '';
protected $propertiesType = GoogleCloudDocumentaiV1DocumentEntity::class;
protected $propertiesDataType = 'array';
protected $provenanceType = GoogleCloudDocumentaiV1DocumentProvenance::class;
protected $provenanceDataType = '';
/**
* @var bool
*/
public $redacted;
protected $textAnchorType = GoogleCloudDocumentaiV1DocumentTextAnchor::class;
protected $textAnchorDataType = '';
/**
* @var string
*/
public $type;
/**
* @param float
*/
public function setConfidence($confidence)
{
$this->confidence = $confidence;
}
/**
* @return float
*/
public function getConfidence()
{
return $this->confidence;
}
/**
* @param string
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @param string
*/
public function setMentionId($mentionId)
{
$this->mentionId = $mentionId;
}
/**
* @return string
*/
public function getMentionId()
{
return $this->mentionId;
}
/**
* @param string
*/
public function setMentionText($mentionText)
{
$this->mentionText = $mentionText;
}
/**
* @return string
*/
public function getMentionText()
{
return $this->mentionText;
}
/**
* @param GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
*/
public function setNormalizedValue(GoogleCloudDocumentaiV1DocumentEntityNormalizedValue $normalizedValue)
{
$this->normalizedValue = $normalizedValue;
}
/**
* @return GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
*/
public function getNormalizedValue()
{
return $this->normalizedValue;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageAnchor
*/
public function setPageAnchor(GoogleCloudDocumentaiV1DocumentPageAnchor $pageAnchor)
{
$this->pageAnchor = $pageAnchor;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageAnchor
*/
public function getPageAnchor()
{
return $this->pageAnchor;
}
/**
* @param GoogleCloudDocumentaiV1DocumentEntity[]
*/
public function setProperties($properties)
{
$this->properties = $properties;
}
/**
* @return GoogleCloudDocumentaiV1DocumentEntity[]
*/
public function getProperties()
{
return $this->properties;
}
/**
* @param GoogleCloudDocumentaiV1DocumentProvenance
*/
public function setProvenance(GoogleCloudDocumentaiV1DocumentProvenance $provenance)
{
$this->provenance = $provenance;
}
/**
* @return GoogleCloudDocumentaiV1DocumentProvenance
*/
public function getProvenance()
{
return $this->provenance;
}
/**
* @param bool
*/
public function setRedacted($redacted)
{
$this->redacted = $redacted;
}
/**
* @return bool
*/
public function getRedacted()
{
return $this->redacted;
}
/**
* @param GoogleCloudDocumentaiV1DocumentTextAnchor
*/
public function setTextAnchor(GoogleCloudDocumentaiV1DocumentTextAnchor $textAnchor)
{
$this->textAnchor = $textAnchor;
}
/**
* @return GoogleCloudDocumentaiV1DocumentTextAnchor
*/
public function getTextAnchor()
{
return $this->textAnchor;
}
/**
* @param string
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentEntity::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentEntity');
@@ -0,0 +1,162 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentEntityNormalizedValue extends \Google\Model
{
protected $addressValueType = GoogleTypePostalAddress::class;
protected $addressValueDataType = '';
/**
* @var bool
*/
public $booleanValue;
protected $dateValueType = GoogleTypeDate::class;
protected $dateValueDataType = '';
protected $datetimeValueType = GoogleTypeDateTime::class;
protected $datetimeValueDataType = '';
/**
* @var float
*/
public $floatValue;
/**
* @var int
*/
public $integerValue;
protected $moneyValueType = GoogleTypeMoney::class;
protected $moneyValueDataType = '';
/**
* @var string
*/
public $text;
/**
* @param GoogleTypePostalAddress
*/
public function setAddressValue(GoogleTypePostalAddress $addressValue)
{
$this->addressValue = $addressValue;
}
/**
* @return GoogleTypePostalAddress
*/
public function getAddressValue()
{
return $this->addressValue;
}
/**
* @param bool
*/
public function setBooleanValue($booleanValue)
{
$this->booleanValue = $booleanValue;
}
/**
* @return bool
*/
public function getBooleanValue()
{
return $this->booleanValue;
}
/**
* @param GoogleTypeDate
*/
public function setDateValue(GoogleTypeDate $dateValue)
{
$this->dateValue = $dateValue;
}
/**
* @return GoogleTypeDate
*/
public function getDateValue()
{
return $this->dateValue;
}
/**
* @param GoogleTypeDateTime
*/
public function setDatetimeValue(GoogleTypeDateTime $datetimeValue)
{
$this->datetimeValue = $datetimeValue;
}
/**
* @return GoogleTypeDateTime
*/
public function getDatetimeValue()
{
return $this->datetimeValue;
}
/**
* @param float
*/
public function setFloatValue($floatValue)
{
$this->floatValue = $floatValue;
}
/**
* @return float
*/
public function getFloatValue()
{
return $this->floatValue;
}
/**
* @param int
*/
public function setIntegerValue($integerValue)
{
$this->integerValue = $integerValue;
}
/**
* @return int
*/
public function getIntegerValue()
{
return $this->integerValue;
}
/**
* @param GoogleTypeMoney
*/
public function setMoneyValue(GoogleTypeMoney $moneyValue)
{
$this->moneyValue = $moneyValue;
}
/**
* @return GoogleTypeMoney
*/
public function getMoneyValue()
{
return $this->moneyValue;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentEntityNormalizedValue::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentEntityNormalizedValue');
@@ -0,0 +1,80 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentEntityRelation extends \Google\Model
{
/**
* @var string
*/
public $objectId;
/**
* @var string
*/
public $relation;
/**
* @var string
*/
public $subjectId;
/**
* @param string
*/
public function setObjectId($objectId)
{
$this->objectId = $objectId;
}
/**
* @return string
*/
public function getObjectId()
{
return $this->objectId;
}
/**
* @param string
*/
public function setRelation($relation)
{
$this->relation = $relation;
}
/**
* @return string
*/
public function getRelation()
{
return $this->relation;
}
/**
* @param string
*/
public function setSubjectId($subjectId)
{
$this->subjectId = $subjectId;
}
/**
* @return string
*/
public function getSubjectId()
{
return $this->subjectId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentEntityRelation::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentEntityRelation');
@@ -0,0 +1,42 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentOutputConfig extends \Google\Model
{
protected $gcsOutputConfigType = GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig::class;
protected $gcsOutputConfigDataType = '';
/**
* @param GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig
*/
public function setGcsOutputConfig(GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig $gcsOutputConfig)
{
$this->gcsOutputConfig = $gcsOutputConfig;
}
/**
* @return GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig
*/
public function getGcsOutputConfig()
{
return $this->gcsOutputConfig;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentOutputConfig::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentOutputConfig');
@@ -0,0 +1,78 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig extends \Google\Model
{
/**
* @var string
*/
public $fieldMask;
/**
* @var string
*/
public $gcsUri;
protected $shardingConfigType = GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig::class;
protected $shardingConfigDataType = '';
/**
* @param string
*/
public function setFieldMask($fieldMask)
{
$this->fieldMask = $fieldMask;
}
/**
* @return string
*/
public function getFieldMask()
{
return $this->fieldMask;
}
/**
* @param string
*/
public function setGcsUri($gcsUri)
{
$this->gcsUri = $gcsUri;
}
/**
* @return string
*/
public function getGcsUri()
{
return $this->gcsUri;
}
/**
* @param GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig
*/
public function setShardingConfig(GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig $shardingConfig)
{
$this->shardingConfig = $shardingConfig;
}
/**
* @return GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig
*/
public function getShardingConfig()
{
return $this->shardingConfig;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig extends \Google\Model
{
/**
* @var int
*/
public $pagesOverlap;
/**
* @var int
*/
public $pagesPerShard;
/**
* @param int
*/
public function setPagesOverlap($pagesOverlap)
{
$this->pagesOverlap = $pagesOverlap;
}
/**
* @return int
*/
public function getPagesOverlap()
{
return $this->pagesOverlap;
}
/**
* @param int
*/
public function setPagesPerShard($pagesPerShard)
{
$this->pagesPerShard = $pagesPerShard;
}
/**
* @return int
*/
public function getPagesPerShard()
{
return $this->pagesPerShard;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig');
@@ -0,0 +1,301 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentPage extends \Google\Collection
{
protected $collection_key = 'visualElements';
protected $blocksType = GoogleCloudDocumentaiV1DocumentPageBlock::class;
protected $blocksDataType = 'array';
protected $detectedBarcodesType = GoogleCloudDocumentaiV1DocumentPageDetectedBarcode::class;
protected $detectedBarcodesDataType = 'array';
protected $detectedLanguagesType = GoogleCloudDocumentaiV1DocumentPageDetectedLanguage::class;
protected $detectedLanguagesDataType = 'array';
protected $dimensionType = GoogleCloudDocumentaiV1DocumentPageDimension::class;
protected $dimensionDataType = '';
protected $formFieldsType = GoogleCloudDocumentaiV1DocumentPageFormField::class;
protected $formFieldsDataType = 'array';
protected $imageType = GoogleCloudDocumentaiV1DocumentPageImage::class;
protected $imageDataType = '';
protected $imageQualityScoresType = GoogleCloudDocumentaiV1DocumentPageImageQualityScores::class;
protected $imageQualityScoresDataType = '';
protected $layoutType = GoogleCloudDocumentaiV1DocumentPageLayout::class;
protected $layoutDataType = '';
protected $linesType = GoogleCloudDocumentaiV1DocumentPageLine::class;
protected $linesDataType = 'array';
/**
* @var int
*/
public $pageNumber;
protected $paragraphsType = GoogleCloudDocumentaiV1DocumentPageParagraph::class;
protected $paragraphsDataType = 'array';
protected $provenanceType = GoogleCloudDocumentaiV1DocumentProvenance::class;
protected $provenanceDataType = '';
protected $symbolsType = GoogleCloudDocumentaiV1DocumentPageSymbol::class;
protected $symbolsDataType = 'array';
protected $tablesType = GoogleCloudDocumentaiV1DocumentPageTable::class;
protected $tablesDataType = 'array';
protected $tokensType = GoogleCloudDocumentaiV1DocumentPageToken::class;
protected $tokensDataType = 'array';
protected $transformsType = GoogleCloudDocumentaiV1DocumentPageMatrix::class;
protected $transformsDataType = 'array';
protected $visualElementsType = GoogleCloudDocumentaiV1DocumentPageVisualElement::class;
protected $visualElementsDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentPageBlock[]
*/
public function setBlocks($blocks)
{
$this->blocks = $blocks;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageBlock[]
*/
public function getBlocks()
{
return $this->blocks;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageDetectedBarcode[]
*/
public function setDetectedBarcodes($detectedBarcodes)
{
$this->detectedBarcodes = $detectedBarcodes;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageDetectedBarcode[]
*/
public function getDetectedBarcodes()
{
return $this->detectedBarcodes;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageDetectedLanguage[]
*/
public function setDetectedLanguages($detectedLanguages)
{
$this->detectedLanguages = $detectedLanguages;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageDetectedLanguage[]
*/
public function getDetectedLanguages()
{
return $this->detectedLanguages;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageDimension
*/
public function setDimension(GoogleCloudDocumentaiV1DocumentPageDimension $dimension)
{
$this->dimension = $dimension;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageDimension
*/
public function getDimension()
{
return $this->dimension;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageFormField[]
*/
public function setFormFields($formFields)
{
$this->formFields = $formFields;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageFormField[]
*/
public function getFormFields()
{
return $this->formFields;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageImage
*/
public function setImage(GoogleCloudDocumentaiV1DocumentPageImage $image)
{
$this->image = $image;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageImage
*/
public function getImage()
{
return $this->image;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageImageQualityScores
*/
public function setImageQualityScores(GoogleCloudDocumentaiV1DocumentPageImageQualityScores $imageQualityScores)
{
$this->imageQualityScores = $imageQualityScores;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageImageQualityScores
*/
public function getImageQualityScores()
{
return $this->imageQualityScores;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageLayout
*/
public function setLayout(GoogleCloudDocumentaiV1DocumentPageLayout $layout)
{
$this->layout = $layout;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageLayout
*/
public function getLayout()
{
return $this->layout;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageLine[]
*/
public function setLines($lines)
{
$this->lines = $lines;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageLine[]
*/
public function getLines()
{
return $this->lines;
}
/**
* @param int
*/
public function setPageNumber($pageNumber)
{
$this->pageNumber = $pageNumber;
}
/**
* @return int
*/
public function getPageNumber()
{
return $this->pageNumber;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageParagraph[]
*/
public function setParagraphs($paragraphs)
{
$this->paragraphs = $paragraphs;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageParagraph[]
*/
public function getParagraphs()
{
return $this->paragraphs;
}
/**
* @param GoogleCloudDocumentaiV1DocumentProvenance
*/
public function setProvenance(GoogleCloudDocumentaiV1DocumentProvenance $provenance)
{
$this->provenance = $provenance;
}
/**
* @return GoogleCloudDocumentaiV1DocumentProvenance
*/
public function getProvenance()
{
return $this->provenance;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageSymbol[]
*/
public function setSymbols($symbols)
{
$this->symbols = $symbols;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageSymbol[]
*/
public function getSymbols()
{
return $this->symbols;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageTable[]
*/
public function setTables($tables)
{
$this->tables = $tables;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageTable[]
*/
public function getTables()
{
return $this->tables;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageToken[]
*/
public function setTokens($tokens)
{
$this->tokens = $tokens;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageToken[]
*/
public function getTokens()
{
return $this->tokens;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageMatrix[]
*/
public function setTransforms($transforms)
{
$this->transforms = $transforms;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageMatrix[]
*/
public function getTransforms()
{
return $this->transforms;
}
/**
* @param GoogleCloudDocumentaiV1DocumentPageVisualElement[]
*/
public function setVisualElements($visualElements)
{
$this->visualElements = $visualElements;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageVisualElement[]
*/
public function getVisualElements()
{
return $this->visualElements;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentPage::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentPage');
@@ -0,0 +1,43 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Document;
class GoogleCloudDocumentaiV1DocumentPageAnchor extends \Google\Collection
{
protected $collection_key = 'pageRefs';
protected $pageRefsType = GoogleCloudDocumentaiV1DocumentPageAnchorPageRef::class;
protected $pageRefsDataType = 'array';
/**
* @param GoogleCloudDocumentaiV1DocumentPageAnchorPageRef[]
*/
public function setPageRefs($pageRefs)
{
$this->pageRefs = $pageRefs;
}
/**
* @return GoogleCloudDocumentaiV1DocumentPageAnchorPageRef[]
*/
public function getPageRefs()
{
return $this->pageRefs;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1DocumentPageAnchor::class, 'Google_Service_Document_GoogleCloudDocumentaiV1DocumentPageAnchor');

Some files were not shown because too many files have changed in this diff Show More