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

namespace Google\Cloud\Dlp\V2\PrivacyMetric;

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

/**
 * Compute numerical stats over an individual column, including
 * min, max, and quantiles.
 *
 * Generated from protobuf message <code>google.privacy.dlp.v2.PrivacyMetric.NumericalStatsConfig</code>
 */
class NumericalStatsConfig extends \Google\Protobuf\Internal\Message
{
    /**
     * Field to compute numerical stats on. Supported types are
     * integer, float, date, datetime, timestamp, time.
     *
     * Generated from protobuf field <code>.google.privacy.dlp.v2.FieldId field = 1;</code>
     */
    private $field = null;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type \Google\Cloud\Dlp\V2\FieldId $field
     *           Field to compute numerical stats on. Supported types are
     *           integer, float, date, datetime, timestamp, time.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Privacy\Dlp\V2\Dlp::initOnce();
        parent::__construct($data);
    }

    /**
     * Field to compute numerical stats on. Supported types are
     * integer, float, date, datetime, timestamp, time.
     *
     * Generated from protobuf field <code>.google.privacy.dlp.v2.FieldId field = 1;</code>
     * @return \Google\Cloud\Dlp\V2\FieldId|null
     */
    public function getField()
    {
        return $this->field;
    }

    public function hasField()
    {
        return isset($this->field);
    }

    public function clearField()
    {
        unset($this->field);
    }

    /**
     * Field to compute numerical stats on. Supported types are
     * integer, float, date, datetime, timestamp, time.
     *
     * Generated from protobuf field <code>.google.privacy.dlp.v2.FieldId field = 1;</code>
     * @param \Google\Cloud\Dlp\V2\FieldId $var
     * @return $this
     */
    public function setField($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\FieldId::class);
        $this->field = $var;

        return $this;
    }

}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NumericalStatsConfig::class, \Google\Cloud\Dlp\V2\PrivacyMetric_NumericalStatsConfig::class);

