opentelemetry.proto.common.v1.KeyValueList */ class KeyValueList extends \Google\Protobuf\Internal\Message { /** * A collection of key/value pairs of key-value pairs. The list may be empty (may * contain 0 elements). * The keys MUST be unique (it is not allowed to have more than one * value with the same key). * * Generated from protobuf field repeated .opentelemetry.proto.common.v1.KeyValue values = 1; */ private $values; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Opentelemetry\Proto\Common\V1\KeyValue[]|\Google\Protobuf\Internal\RepeatedField $values * A collection of key/value pairs of key-value pairs. The list may be empty (may * contain 0 elements). * The keys MUST be unique (it is not allowed to have more than one * value with the same key). * } */ public function __construct($data = NULL) { \GPBMetadata\Opentelemetry\Proto\Common\V1\Common::initOnce(); parent::__construct($data); } /** * A collection of key/value pairs of key-value pairs. The list may be empty (may * contain 0 elements). * The keys MUST be unique (it is not allowed to have more than one * value with the same key). * * Generated from protobuf field repeated .opentelemetry.proto.common.v1.KeyValue values = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getValues() { return $this->values; } /** * A collection of key/value pairs of key-value pairs. The list may be empty (may * contain 0 elements). * The keys MUST be unique (it is not allowed to have more than one * value with the same key). * * Generated from protobuf field repeated .opentelemetry.proto.common.v1.KeyValue values = 1; * @param \Opentelemetry\Proto\Common\V1\KeyValue[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setValues($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Common\V1\KeyValue::class); $this->values = $arr; return $this; } }