Google_Kernel
The Google Books Importer Google Kernel class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_ComputeService.php
- class Google_Kernel extends Google_Model {
- public $creationTimestamp;
- protected $__deprecatedType = 'Google_DeprecationStatus';
- protected $__deprecatedDataType = '';
- public $deprecated;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $selfLink;
- public function setCreationTimestamp( $creationTimestamp) {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp() {
- return $this->creationTimestamp;
- }
- public function setDeprecated(Google_DeprecationStatus $deprecated) {
- $this->deprecated = $deprecated;
- }
- public function getDeprecated() {
- return $this->deprecated;
- }
- public function setDescription( $description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- 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;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- }