height = $height; } /** * @return string */ public function getHeight() { return $this->height; } /** * The size type of the ad slot. * * Accepted values: SIZE_TYPE_UNSPECIFIED, PIXEL, INTERSTITIAL, NATIVE, FLUID * * @param self::SIZE_TYPE_* $sizeType */ public function setSizeType($sizeType) { $this->sizeType = $sizeType; } /** * @return self::SIZE_TYPE_* */ public function getSizeType() { return $this->sizeType; } /** * The width of the ad slot in pixels. This field will be present only when * size type is `PIXEL`. * * @param string $width */ public function setWidth($width) { $this->width = $width; } /** * @return string */ public function getWidth() { return $this->width; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AdSize::class, 'Google_Service_AdExchangeBuyerII_AdSize');