google_Metadata
The Google Books Importer google Metadata class.
Defined (3)
The class is defined in the following location(s).
- /src/contrib/Google_AdExchangeSellerService.php
- class google_Metadata extends Google_Model {
- protected $__itemsType = 'Google_ReportingMetadataEntry';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setItems(/** array(google_ReportingMetadataEntry) */ $items) {
- $this->assertIsArray($items, 'google_ReportingMetadataEntry', __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_Metadata extends Google_Model {
- protected $__itemsType = 'Google_ReportingMetadataEntry';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setItems(/** array(Google_ReportingMetadataEntry) */ $items) {
- $this->assertIsArray($items, 'Google_ReportingMetadataEntry', __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_ComputeService.php
- class Google_Metadata extends Google_Model {
- public $fingerprint;
- protected $__itemsType = 'Google_MetadataItems';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setFingerprint( $fingerprint) {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint() {
- return $this->fingerprint;
- }
- public function setItems(/** array(Google_MetadataItems) */ $items) {
- $this->assertIsArray($items, 'Google_MetadataItems', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }