Google_MenuValue
The Google Books Importer Google MenuValue class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_MirrorService.php
- class Google_MenuValue extends Google_Model {
- public $displayName;
- public $iconUrl;
- public $state;
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setIconUrl( $iconUrl) {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl() {
- return $this->iconUrl;
- }
- public function setState( $state) {
- $this->state = $state;
- }
- public function getState() {
- return $this->state;
- }
- }