Google_ImageAsset
The Google Pagespeed Insights Google ImageAsset class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_ImageAsset extends Google_Model {
- public $height;
- public $kind;
- public $name;
- public $url;
- public $width;
- public function setHeight($height) {
- $this->height = $height;
- }
- public function getHeight() {
- return $this->height;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setUrl($url) {
- $this->url = $url;
- }
- public function getUrl() {
- return $this->url;
- }
- public function setWidth($width) {
- $this->width = $width;
- }
- public function getWidth() {
- return $this->width;
- }
- }