google_MetadataDimensionsServiceResource
The "dimensions" collection of methods.
Defined (2)
The class is defined in the following location(s).
- /src/contrib/Google_AdExchangeSellerService.php
- class google_MetadataDimensionsServiceResource extends Google_ServiceResource {
- /**
- * List the metadata for the dimensions available to this AdExchange account.
- * (dimensions.list)
- *
- * @param array $optParams Optional parameters.
- * @return google_Metadata
- */
- public function listMetadataDimensions($optParams = array()) {
- $params = array();
- $params = array_merge($params, $optParams);
- $data = $this->__call('list', array($params));
- if ($this->useObjects()) {
- return new google_Metadata($data);
- } else {
- return $data;
- }
- }
- }
- /src/contrib/Google_AdSenseService.php
- class Google_MetadataDimensionsServiceResource extends Google_ServiceResource {
- /**
- * List the metadata for the dimensions available to this AdSense account. (dimensions.list)
- *
- * @param array $optParams Optional parameters.
- * @return Google_Metadata
- */
- public function listMetadataDimensions($optParams = array()) {
- $params = array();
- $params = array_merge($params, $optParams);
- $data = $this->__call('list', array($params));
- if ($this->useObjects()) {
- return new Google_Metadata($data);
- } else {
- return $data;
- }
- }
- }