left = $left; } /** * @return int */ public function getLeft() { return $this->left; } /** * Position in the browser where the window will open. * * Accepted values: CENTERED, DISTANCE_FROM_TOP_LEFT_CORNER * * @param self::POSITION_OPTION_* $positionOption */ public function setPositionOption($positionOption) { $this->positionOption = $positionOption; } /** * @return self::POSITION_OPTION_* */ public function getPositionOption() { return $this->positionOption; } /** * Distance from the top of the browser. Applicable when positionOption is * DISTANCE_FROM_TOP_LEFT_CORNER. * * @param int $top */ public function setTop($top) { $this->top = $top; } /** * @return int */ public function getTop() { return $this->top; } /** * Height of the window. * * @param int $windowHeight */ public function setWindowHeight($windowHeight) { $this->windowHeight = $windowHeight; } /** * @return int */ public function getWindowHeight() { return $this->windowHeight; } /** * Width of the window. * * @param int $windowWidth */ public function setWindowWidth($windowWidth) { $this->windowWidth = $windowWidth; } /** * @return int */ public function getWindowWidth() { return $this->windowWidth; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FsCommand::class, 'Google_Service_Dfareporting_FsCommand');