<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/automl/v1beta1/data_items.proto

namespace Google\Cloud\AutoMl\V1beta1;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Example data used for training or prediction.
 *
 * Generated from protobuf message <code>google.cloud.automl.v1beta1.ExamplePayload</code>
 */
class ExamplePayload extends \Google\Protobuf\Internal\Message
{
    protected $payload;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type \Google\Cloud\AutoMl\V1beta1\Image $image
     *           Example image.
     *     @type \Google\Cloud\AutoMl\V1beta1\TextSnippet $text_snippet
     *           Example text.
     *     @type \Google\Cloud\AutoMl\V1beta1\Document $document
     *           Example document.
     *     @type \Google\Cloud\AutoMl\V1beta1\Row $row
     *           Example relational table row.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Automl\V1Beta1\DataItems::initOnce();
        parent::__construct($data);
    }

    /**
     * Example image.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.Image image = 1;</code>
     * @return \Google\Cloud\AutoMl\V1beta1\Image|null
     */
    public function getImage()
    {
        return $this->readOneof(1);
    }

    public function hasImage()
    {
        return $this->hasOneof(1);
    }

    /**
     * Example image.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.Image image = 1;</code>
     * @param \Google\Cloud\AutoMl\V1beta1\Image $var
     * @return $this
     */
    public function setImage($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\AutoMl\V1beta1\Image::class);
        $this->writeOneof(1, $var);

        return $this;
    }

    /**
     * Example text.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.TextSnippet text_snippet = 2;</code>
     * @return \Google\Cloud\AutoMl\V1beta1\TextSnippet|null
     */
    public function getTextSnippet()
    {
        return $this->readOneof(2);
    }

    public function hasTextSnippet()
    {
        return $this->hasOneof(2);
    }

    /**
     * Example text.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.TextSnippet text_snippet = 2;</code>
     * @param \Google\Cloud\AutoMl\V1beta1\TextSnippet $var
     * @return $this
     */
    public function setTextSnippet($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\AutoMl\V1beta1\TextSnippet::class);
        $this->writeOneof(2, $var);

        return $this;
    }

    /**
     * Example document.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.Document document = 4;</code>
     * @return \Google\Cloud\AutoMl\V1beta1\Document|null
     */
    public function getDocument()
    {
        return $this->readOneof(4);
    }

    public function hasDocument()
    {
        return $this->hasOneof(4);
    }

    /**
     * Example document.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.Document document = 4;</code>
     * @param \Google\Cloud\AutoMl\V1beta1\Document $var
     * @return $this
     */
    public function setDocument($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\AutoMl\V1beta1\Document::class);
        $this->writeOneof(4, $var);

        return $this;
    }

    /**
     * Example relational table row.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.Row row = 3;</code>
     * @return \Google\Cloud\AutoMl\V1beta1\Row|null
     */
    public function getRow()
    {
        return $this->readOneof(3);
    }

    public function hasRow()
    {
        return $this->hasOneof(3);
    }

    /**
     * Example relational table row.
     *
     * Generated from protobuf field <code>.google.cloud.automl.v1beta1.Row row = 3;</code>
     * @param \Google\Cloud\AutoMl\V1beta1\Row $var
     * @return $this
     */
    public function setRow($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\AutoMl\V1beta1\Row::class);
        $this->writeOneof(3, $var);

        return $this;
    }

    /**
     * @return string
     */
    public function getPayload()
    {
        return $this->whichOneof("payload");
    }

}

