<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/logging/v2/log_entry.proto

namespace Google\Cloud\Logging\V2;

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

/**
 * Additional information about a potentially long-running operation with which
 * a log entry is associated.
 *
 * Generated from protobuf message <code>google.logging.v2.LogEntryOperation</code>
 */
class LogEntryOperation extends \Google\Protobuf\Internal\Message
{
    /**
     * Optional. An arbitrary operation identifier. Log entries with the same
     * identifier are assumed to be part of the same operation.
     *
     * Generated from protobuf field <code>string id = 1 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $id = '';
    /**
     * Optional. An arbitrary producer identifier. The combination of `id` and
     * `producer` must be globally unique. Examples for `producer`:
     * `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.
     *
     * Generated from protobuf field <code>string producer = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $producer = '';
    /**
     * Optional. Set this to True if this is the first log entry in the operation.
     *
     * Generated from protobuf field <code>bool first = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $first = false;
    /**
     * Optional. Set this to True if this is the last log entry in the operation.
     *
     * Generated from protobuf field <code>bool last = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $last = false;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $id
     *           Optional. An arbitrary operation identifier. Log entries with the same
     *           identifier are assumed to be part of the same operation.
     *     @type string $producer
     *           Optional. An arbitrary producer identifier. The combination of `id` and
     *           `producer` must be globally unique. Examples for `producer`:
     *           `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.
     *     @type bool $first
     *           Optional. Set this to True if this is the first log entry in the operation.
     *     @type bool $last
     *           Optional. Set this to True if this is the last log entry in the operation.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Logging\V2\LogEntry::initOnce();
        parent::__construct($data);
    }

    /**
     * Optional. An arbitrary operation identifier. Log entries with the same
     * identifier are assumed to be part of the same operation.
     *
     * Generated from protobuf field <code>string id = 1 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return string
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Optional. An arbitrary operation identifier. Log entries with the same
     * identifier are assumed to be part of the same operation.
     *
     * Generated from protobuf field <code>string id = 1 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param string $var
     * @return $this
     */
    public function setId($var)
    {
        GPBUtil::checkString($var, True);
        $this->id = $var;

        return $this;
    }

    /**
     * Optional. An arbitrary producer identifier. The combination of `id` and
     * `producer` must be globally unique. Examples for `producer`:
     * `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.
     *
     * Generated from protobuf field <code>string producer = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return string
     */
    public function getProducer()
    {
        return $this->producer;
    }

    /**
     * Optional. An arbitrary producer identifier. The combination of `id` and
     * `producer` must be globally unique. Examples for `producer`:
     * `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.
     *
     * Generated from protobuf field <code>string producer = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param string $var
     * @return $this
     */
    public function setProducer($var)
    {
        GPBUtil::checkString($var, True);
        $this->producer = $var;

        return $this;
    }

    /**
     * Optional. Set this to True if this is the first log entry in the operation.
     *
     * Generated from protobuf field <code>bool first = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return bool
     */
    public function getFirst()
    {
        return $this->first;
    }

    /**
     * Optional. Set this to True if this is the first log entry in the operation.
     *
     * Generated from protobuf field <code>bool first = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param bool $var
     * @return $this
     */
    public function setFirst($var)
    {
        GPBUtil::checkBool($var);
        $this->first = $var;

        return $this;
    }

    /**
     * Optional. Set this to True if this is the last log entry in the operation.
     *
     * Generated from protobuf field <code>bool last = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return bool
     */
    public function getLast()
    {
        return $this->last;
    }

    /**
     * Optional. Set this to True if this is the last log entry in the operation.
     *
     * Generated from protobuf field <code>bool last = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param bool $var
     * @return $this
     */
    public function setLast($var)
    {
        GPBUtil::checkBool($var);
        $this->last = $var;

        return $this;
    }

}

