Google_Moment
The Google Books Importer Google Moment class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_PlusService.php
- class Google_Moment extends Google_Model {
- public $id;
- public $kind;
- protected $__resultType = 'Google_ItemScope';
- protected $__resultDataType = '';
- public $result;
- public $startDate;
- protected $__targetType = 'Google_ItemScope';
- protected $__targetDataType = '';
- public $target;
- public $type;
- 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 setResult(Google_ItemScope $result) {
- $this->result = $result;
- }
- public function getResult() {
- return $this->result;
- }
- public function setStartDate( $startDate) {
- $this->startDate = $startDate;
- }
- public function getStartDate() {
- return $this->startDate;
- }
- public function setTarget(Google_ItemScope $target) {
- $this->target = $target;
- }
- public function getTarget() {
- return $this->target;
- }
- public function setType( $type) {
- $this->type = $type;
- }
- public function getType() {
- return $this->type;
- }
- }