<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: grafeas/v1/slsa_provenance_zero_two.proto

namespace Grafeas\V1\SlsaProvenanceZeroTwo;

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

/**
 * Indicates that the builder claims certain fields in this message to be
 * complete.
 *
 * Generated from protobuf message <code>grafeas.v1.SlsaProvenanceZeroTwo.SlsaCompleteness</code>
 */
class SlsaCompleteness extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field <code>bool parameters = 1;</code>
     */
    private $parameters = false;
    /**
     * Generated from protobuf field <code>bool environment = 2;</code>
     */
    private $environment = false;
    /**
     * Generated from protobuf field <code>bool materials = 3;</code>
     */
    private $materials = false;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type bool $parameters
     *     @type bool $environment
     *     @type bool $materials
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Grafeas\V1\SlsaProvenanceZeroTwo::initOnce();
        parent::__construct($data);
    }

    /**
     * Generated from protobuf field <code>bool parameters = 1;</code>
     * @return bool
     */
    public function getParameters()
    {
        return $this->parameters;
    }

    /**
     * Generated from protobuf field <code>bool parameters = 1;</code>
     * @param bool $var
     * @return $this
     */
    public function setParameters($var)
    {
        GPBUtil::checkBool($var);
        $this->parameters = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>bool environment = 2;</code>
     * @return bool
     */
    public function getEnvironment()
    {
        return $this->environment;
    }

    /**
     * Generated from protobuf field <code>bool environment = 2;</code>
     * @param bool $var
     * @return $this
     */
    public function setEnvironment($var)
    {
        GPBUtil::checkBool($var);
        $this->environment = $var;

        return $this;
    }

    /**
     * Generated from protobuf field <code>bool materials = 3;</code>
     * @return bool
     */
    public function getMaterials()
    {
        return $this->materials;
    }

    /**
     * Generated from protobuf field <code>bool materials = 3;</code>
     * @param bool $var
     * @return $this
     */
    public function setMaterials($var)
    {
        GPBUtil::checkBool($var);
        $this->materials = $var;

        return $this;
    }

}


