Google_Accounts
The Google Books Importer Google Accounts class.
Defined (3)
The class is defined in the following location(s).
- /src/contrib/Google_AdsensehostService.php
- class Google_Accounts extends Google_Model {
- public $etag;
- protected $__itemsType = 'Google_Account';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setEtag( $etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setItems(/** array(Google_Account) */ $items) {
- $this->assertIsArray($items, 'Google_Account', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }
- /src/contrib/Google_AdSenseService.php
- class Google_Accounts extends Google_Model {
- public $etag;
- protected $__itemsType = 'Google_Account';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $nextPageToken;
- public function setEtag( $etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setItems(/** array(Google_Account) */ $items) {
- $this->assertIsArray($items, 'Google_Account', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNextPageToken( $nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- }
- /src/contrib/Google_AnalyticsService.php
- class Google_Accounts extends Google_Model {
- protected $__itemsType = 'Google_Account';
- protected $__itemsDataType = 'array';
- public $items;
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
- public function setItems(/** array(Google_Account) */ $items) {
- $this->assertIsArray($items, 'Google_Account', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setItemsPerPage( $itemsPerPage) {
- $this->itemsPerPage = $itemsPerPage;
- }
- public function getItemsPerPage() {
- return $this->itemsPerPage;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNextLink( $nextLink) {
- $this->nextLink = $nextLink;
- }
- public function getNextLink() {
- return $this->nextLink;
- }
- public function setPreviousLink( $previousLink) {
- $this->previousLink = $previousLink;
- }
- public function getPreviousLink() {
- return $this->previousLink;
- }
- public function setStartIndex( $startIndex) {
- $this->startIndex = $startIndex;
- }
- public function getStartIndex() {
- return $this->startIndex;
- }
- public function setTotalResults( $totalResults) {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults() {
- return $this->totalResults;
- }
- public function setUsername( $username) {
- $this->username = $username;
- }
- public function getUsername() {
- return $this->username;
- }
- }