opentelemetry.proto.metrics.v1.SummaryDataPoint.ValueAtQuantile */ class ValueAtQuantile extends \Google\Protobuf\Internal\Message { /** * The quantile of a distribution. Must be in the interval * [0.0, 1.0]. * * Generated from protobuf field double quantile = 1; */ protected $quantile = 0.0; /** * The value at the given quantile of a distribution. * Quantile values must NOT be negative. * * Generated from protobuf field double value = 2; */ protected $value = 0.0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type float $quantile * The quantile of a distribution. Must be in the interval * [0.0, 1.0]. * @type float $value * The value at the given quantile of a distribution. * Quantile values must NOT be negative. * } */ public function __construct($data = NULL) { \GPBMetadata\Opentelemetry\Proto\Metrics\V1\Metrics::initOnce(); parent::__construct($data); } /** * The quantile of a distribution. Must be in the interval * [0.0, 1.0]. * * Generated from protobuf field double quantile = 1; * @return float */ public function getQuantile() { return $this->quantile; } /** * The quantile of a distribution. Must be in the interval * [0.0, 1.0]. * * Generated from protobuf field double quantile = 1; * @param float $var * @return $this */ public function setQuantile($var) { GPBUtil::checkDouble($var); $this->quantile = $var; return $this; } /** * The value at the given quantile of a distribution. * Quantile values must NOT be negative. * * Generated from protobuf field double value = 2; * @return float */ public function getValue() { return $this->value; } /** * The value at the given quantile of a distribution. * Quantile values must NOT be negative. * * Generated from protobuf field double value = 2; * @param float $var * @return $this */ public function setValue($var) { GPBUtil::checkDouble($var); $this->value = $var; return $this; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ValueAtQuantile::class, \Opentelemetry\Proto\Metrics\V1\SummaryDataPoint_ValueAtQuantile::class);