Google_Place
The Google Books Importer Google Place class.
Defined (2)
The class is defined in the following location(s).
- /src/contrib/Google_PlusDomainsService.php
- class Google_Place extends Google_Model {
- protected $__addressType = 'Google_PlaceAddress';
- protected $__addressDataType = '';
- public $address;
- public $displayName;
- public $kind;
- protected $__positionType = 'Google_PlacePosition';
- protected $__positionDataType = '';
- public $position;
- public function setAddress(Google_PlaceAddress $address) {
- $this->address = $address;
- }
- public function getAddress() {
- return $this->address;
- }
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPosition(Google_PlacePosition $position) {
- $this->position = $position;
- }
- public function getPosition() {
- return $this->position;
- }
- }
- /src/contrib/Google_PlusService.php
- class Google_Place extends Google_Model {
- protected $__addressType = 'Google_PlaceAddress';
- protected $__addressDataType = '';
- public $address;
- public $displayName;
- public $kind;
- protected $__positionType = 'Google_PlacePosition';
- protected $__positionDataType = '';
- public $position;
- public function setAddress(Google_PlaceAddress $address) {
- $this->address = $address;
- }
- public function getAddress() {
- return $this->address;
- }
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPosition(Google_PlacePosition $position) {
- $this->position = $position;
- }
- public function getPosition() {
- return $this->position;
- }
- }