Google_AppIcons
The Google Books Importer Google AppIcons class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DriveService.php
- class Google_AppIcons extends Google_Model {
- public $category;
- public $iconUrl;
- public $size;
- public function setCategory( $category) {
- $this->category = $category;
- }
- public function getCategory() {
- return $this->category;
- }
- public function setIconUrl( $iconUrl) {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl() {
- return $this->iconUrl;
- }
- public function setSize( $size) {
- $this->size = $size;
- }
- public function getSize() {
- return $this->size;
- }
- }