name = $name; $this->value = $value; } /** * Get dimension name * * @return string * @since 101.0.6 */ public function getName(): string { return $this->name; } /** * Get dimension value * * @return string * @since 101.0.6 */ public function getValue(): string { return $this->value; } }