JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "GoogleCloudDocumentaiV1GenerateSchemaVersionRequest.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Document/GoogleCloudDocumentaiV1GenerateSchemaVersionRequest.php
File size: 4.49 KB
MIME-type: text/x-php
Charset: utf-8

<?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 GoogleCloudDocumentaiV1GenerateSchemaVersionRequest extends \Google\Model
{
  /**
   * The base schema version name to use for the schema generation. Format: `pro
   * jects/{project}/locations/{location}/schemas/{schema}/schemaVersions/{schem
   * a_version}`
   *
   * @var string
   */
  public $baseSchemaVersion;
  protected $gcsDocumentsType = GoogleCloudDocumentaiV1GcsDocuments::class;
  protected $gcsDocumentsDataType = '';
  protected $gcsPrefixType = GoogleCloudDocumentaiV1GcsPrefix::class;
  protected $gcsPrefixDataType = '';
  protected $generateSchemaVersionParamsType = GoogleCloudDocumentaiV1GenerateSchemaVersionRequestGenerateSchemaVersionParams::class;
  protected $generateSchemaVersionParamsDataType = '';
  protected $inlineDocumentsType = GoogleCloudDocumentaiV1Documents::class;
  protected $inlineDocumentsDataType = '';
  protected $rawDocumentsType = GoogleCloudDocumentaiV1RawDocuments::class;
  protected $rawDocumentsDataType = '';

  /**
   * The base schema version name to use for the schema generation. Format: `pro
   * jects/{project}/locations/{location}/schemas/{schema}/schemaVersions/{schem
   * a_version}`
   *
   * @param string $baseSchemaVersion
   */
  public function setBaseSchemaVersion($baseSchemaVersion)
  {
    $this->baseSchemaVersion = $baseSchemaVersion;
  }
  /**
   * @return string
   */
  public function getBaseSchemaVersion()
  {
    return $this->baseSchemaVersion;
  }
  /**
   * The set of documents placed on Cloud Storage.
   *
   * @param GoogleCloudDocumentaiV1GcsDocuments $gcsDocuments
   */
  public function setGcsDocuments(GoogleCloudDocumentaiV1GcsDocuments $gcsDocuments)
  {
    $this->gcsDocuments = $gcsDocuments;
  }
  /**
   * @return GoogleCloudDocumentaiV1GcsDocuments
   */
  public function getGcsDocuments()
  {
    return $this->gcsDocuments;
  }
  /**
   * The common prefix of documents placed on Cloud Storage.
   *
   * @param GoogleCloudDocumentaiV1GcsPrefix $gcsPrefix
   */
  public function setGcsPrefix(GoogleCloudDocumentaiV1GcsPrefix $gcsPrefix)
  {
    $this->gcsPrefix = $gcsPrefix;
  }
  /**
   * @return GoogleCloudDocumentaiV1GcsPrefix
   */
  public function getGcsPrefix()
  {
    return $this->gcsPrefix;
  }
  /**
   * Optional. User specified parameters for the schema generation.
   *
   * @param GoogleCloudDocumentaiV1GenerateSchemaVersionRequestGenerateSchemaVersionParams $generateSchemaVersionParams
   */
  public function setGenerateSchemaVersionParams(GoogleCloudDocumentaiV1GenerateSchemaVersionRequestGenerateSchemaVersionParams $generateSchemaVersionParams)
  {
    $this->generateSchemaVersionParams = $generateSchemaVersionParams;
  }
  /**
   * @return GoogleCloudDocumentaiV1GenerateSchemaVersionRequestGenerateSchemaVersionParams
   */
  public function getGenerateSchemaVersionParams()
  {
    return $this->generateSchemaVersionParams;
  }
  /**
   * The set of documents specified inline. For each document, its `uri` or
   * `content` field must be set.
   *
   * @param GoogleCloudDocumentaiV1Documents $inlineDocuments
   */
  public function setInlineDocuments(GoogleCloudDocumentaiV1Documents $inlineDocuments)
  {
    $this->inlineDocuments = $inlineDocuments;
  }
  /**
   * @return GoogleCloudDocumentaiV1Documents
   */
  public function getInlineDocuments()
  {
    return $this->inlineDocuments;
  }
  /**
   * The set of raw documents.
   *
   * @param GoogleCloudDocumentaiV1RawDocuments $rawDocuments
   */
  public function setRawDocuments(GoogleCloudDocumentaiV1RawDocuments $rawDocuments)
  {
    $this->rawDocuments = $rawDocuments;
  }
  /**
   * @return GoogleCloudDocumentaiV1RawDocuments
   */
  public function getRawDocuments()
  {
    return $this->rawDocuments;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDocumentaiV1GenerateSchemaVersionRequest::class, 'Google_Service_Document_GoogleCloudDocumentaiV1GenerateSchemaVersionRequest');