Google_KeyPathElement
The Google Books Importer Google KeyPathElement class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DatastoreService.php
- class Google_KeyPathElement extends Google_Model {
- public $id;
- public $kind;
- public $name;
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- 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;
- }
- }