From f449518d6463ba60f5dcca72695074952e3bdefb Mon Sep 17 00:00:00 2001
From: yehudah
\n";
- }
-
-```
-
-## Frequently Asked Questions ##
-
-### What do I do if something isn't working? ###
-
-For support with the library the best place to ask is via the google-api-php-client tag on StackOverflow: http://stackoverflow.com/questions/tagged/google-api-php-client
-
-If there is a specific bug with the library, please file a issue in the Github issues tracker, including a (minimal) example of the failing code and any specific errors retrieved. Feature requests can also be filed, as long as they are core library requests, and not-API specific: for those, refer to the documentation for the individual APIs for the best place to file requests. Please try to provide a clear statement of the problem that the feature would address.
-
-### How do I contribute? ###
-
-We accept contributions via Github Pull Requests, but all contributors need to be covered by the standard Google Contributor License Agreement. You can find links, and more instructions, in the documentation: https://developers.google.com/api-client-library/php/contribute
-
-### Why do you still support 5.2? ###
-
-When we started working on the 1.0.0 branch we knew there were several fundamental issues to fix with the 0.6 releases of the library. At that time we looked at the usage of the library, and other related projects, and determined that there was still a large and active base of PHP 5.2 installs. You can see this in statistics such as the PHP versions chart in the WordPress stats: http://wordpress.org/about/stats/. We will keep looking at the types of usage we see, and try to take advantage of newer PHP features where possible.
-
-### Why does Postman_Google_..._Service have weird names? ###
-
-The _Service classes are generally automatically generated from the API discovery documents: https://developers.google.com/discovery/. Sometimes new features are added to APIs with unusual names, which can cause some unexpected or non-standard style naming in the PHP classes.
-
-### How do I deal with non-JSON response types? ###
-
-Some services return XML or similar by default, rather than JSON, which is what the library supports. You can request a JSON response by adding an 'alt' argument to optional params that is normally the last argument to a method call:
-
-```
-$opt_params = array(
- 'alt' => "json"
-);
-```
-
-## Code Quality ##
-
-Copy the ruleset.xml in style/ into a new directory named GAPI/ in your
-/usr/share/php/PHP/CodeSniffer/Standards (or appropriate equivalent directory),
-and run code sniffs with:
-
- phpcs --standard=GAPI src/
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/autoload.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/autoload.php
deleted file mode 100644
index 63e9b0c..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/autoload.php
+++ /dev/null
@@ -1,41 +0,0 @@
-trace ( 'Autoloading ' . $className );
- $classPath = explode ( '_', $className );
- // @jason: make sure the first segment of the classname is 'Postman'
- if (empty ( $classPath [0] ) || empty ( $classPath [1] )) {
- return;
- }
- if ($classPath [0] != 'Postman' && $classPath [1] != 'Google') {
- return;
- } else {
- // @jason: get rid of the first segment of the classname
- $classPath = array_slice ( $classPath, 1 );
- }
- if (count ( $classPath ) > 3) {
- // Maximum class file path depth in this project is 3.
- $classPath = array_slice ( $classPath, 1, 4 );
- }
- $filePath = dirname ( __FILE__ ) . '/src/' . implode ( '/', $classPath ) . '.php';
- if (file_exists ( $filePath )) {
- require_once ($filePath);
- }
-}
-
-spl_autoload_register ( 'postman_google_api_php_client_autoload' );
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/phpunit.xml.dist b/Postman/Postman-Mail/google-api-php-client-1.1.2/phpunit.xml.dist
deleted file mode 100644
index bb8e834..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/phpunit.xml.dist
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
- * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_AdExchangeBuyer extends Postman_Google_Service -{ - /** Manage your Ad Exchange buyer account configuration. */ - const ADEXCHANGE_BUYER = - "https://www.googleapis.com/auth/adexchange.buyer"; - - public $accounts; - public $billingInfo; - public $creatives; - public $directDeals; - public $performanceReport; - public $pretargetingConfig; - - - /** - * Constructs the internal representation of the AdExchangeBuyer service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'adexchangebuyer/v1.3/'; - $this->version = 'v1.3'; - $this->serviceName = 'adexchangebuyer'; - - $this->accounts = new Postman_Google_Service_AdExchangeBuyer_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'accounts/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->billingInfo = new Postman_Google_Service_AdExchangeBuyer_BillingInfo_Resource( - $this, - $this->serviceName, - 'billingInfo', - array( - 'methods' => array( - 'get' => array( - 'path' => 'billinginfo/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'billinginfo', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->creatives = new Postman_Google_Service_AdExchangeBuyer_Creatives_Resource( - $this, - $this->serviceName, - 'creatives', - array( - 'methods' => array( - 'get' => array( - 'path' => 'creatives/{accountId}/{buyerCreativeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'buyerCreativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'creatives', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'creatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'statusFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'buyerCreativeId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'accountId' => array( - 'location' => 'query', - 'type' => 'integer', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->directDeals = new Postman_Google_Service_AdExchangeBuyer_DirectDeals_Resource( - $this, - $this->serviceName, - 'directDeals', - array( - 'methods' => array( - 'get' => array( - 'path' => 'directdeals/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'directdeals', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->performanceReport = new Postman_Google_Service_AdExchangeBuyer_PerformanceReport_Resource( - $this, - $this->serviceName, - 'performanceReport', - array( - 'methods' => array( - 'list' => array( - 'path' => 'performancereport', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDateTime' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'startDateTime' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->pretargetingConfig = new Postman_Google_Service_AdExchangeBuyer_PretargetingConfig_Resource( - $this, - $this->serviceName, - 'pretargetingConfig', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'pretargetingconfigs/{accountId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'pretargetingconfigs/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $adexchangebuyerService = new Postman_Google_Service_AdExchangeBuyer(...);
- * $accounts = $adexchangebuyerService->accounts;
- *
- */
-class Postman_Google_Service_AdExchangeBuyer_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one account by ID. (accounts.get)
- *
- * @param int $id The account id
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_Account
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeBuyer_Account");
- }
-
- /**
- * Retrieves the authenticated user's list of accounts. (accounts.listAccounts)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_AccountsList
- */
- public function listAccounts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeBuyer_AccountsList");
- }
-
- /**
- * Updates an existing account. This method supports patch semantics.
- * (accounts.patch)
- *
- * @param int $id The account id
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_Account
- */
- public function patch($id, Postman_Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AdExchangeBuyer_Account");
- }
-
- /**
- * Updates an existing account. (accounts.update)
- *
- * @param int $id The account id
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_Account
- */
- public function update($id, Postman_Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AdExchangeBuyer_Account");
- }
-}
-
-/**
- * The "billingInfo" collection of methods.
- * Typical usage is:
- *
- * $adexchangebuyerService = new Postman_Google_Service_AdExchangeBuyer(...);
- * $billingInfo = $adexchangebuyerService->billingInfo;
- *
- */
-class Postman_Google_Service_AdExchangeBuyer_BillingInfo_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the billing information for one account specified by account ID.
- * (billingInfo.get)
- *
- * @param int $accountId The account id.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_BillingInfo
- */
- public function get($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeBuyer_BillingInfo");
- }
-
- /**
- * Retrieves a list of billing information for all accounts of the authenticated
- * user. (billingInfo.listBillingInfo)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_BillingInfoList
- */
- public function listBillingInfo($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeBuyer_BillingInfoList");
- }
-}
-
-/**
- * The "creatives" collection of methods.
- * Typical usage is:
- *
- * $adexchangebuyerService = new Postman_Google_Service_AdExchangeBuyer(...);
- * $creatives = $adexchangebuyerService->creatives;
- *
- */
-class Postman_Google_Service_AdExchangeBuyer_Creatives_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the status for a single creative. A creative will be available 30-40
- * minutes after submission. (creatives.get)
- *
- * @param int $accountId The id for the account that will serve this creative.
- * @param string $buyerCreativeId The buyer-specific id for this creative.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_Creative
- */
- public function get($accountId, $buyerCreativeId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeBuyer_Creative");
- }
-
- /**
- * Submit a new creative. (creatives.insert)
- *
- * @param Postman_Google_Creative $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_Creative
- */
- public function insert(Postman_Google_Service_AdExchangeBuyer_Creative $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AdExchangeBuyer_Creative");
- }
-
- /**
- * Retrieves a list of the authenticated user's active creatives. A creative
- * will be available 30-40 minutes after submission. (creatives.listCreatives)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string statusFilter When specified, only creatives having the
- * given status are returned.
- * @opt_param string pageToken A continuation token, used to page through ad
- * clients. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response. Optional.
- * @opt_param string maxResults Maximum number of entries returned on one result
- * page. If not set, the default is 100. Optional.
- * @opt_param string buyerCreativeId When specified, only creatives for the
- * given buyer creative ids are returned.
- * @opt_param int accountId When specified, only creatives for the given account
- * ids are returned.
- * @return Postman_Google_Service_AdExchangeBuyer_CreativesList
- */
- public function listCreatives($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeBuyer_CreativesList");
- }
-}
-
-/**
- * The "directDeals" collection of methods.
- * Typical usage is:
- *
- * $adexchangebuyerService = new Postman_Google_Service_AdExchangeBuyer(...);
- * $directDeals = $adexchangebuyerService->directDeals;
- *
- */
-class Postman_Google_Service_AdExchangeBuyer_DirectDeals_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one direct deal by ID. (directDeals.get)
- *
- * @param string $id The direct deal id
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_DirectDeal
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeBuyer_DirectDeal");
- }
-
- /**
- * Retrieves the authenticated user's list of direct deals.
- * (directDeals.listDirectDeals)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_DirectDealsList
- */
- public function listDirectDeals($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeBuyer_DirectDealsList");
- }
-}
-
-/**
- * The "performanceReport" collection of methods.
- * Typical usage is:
- *
- * $adexchangebuyerService = new Postman_Google_Service_AdExchangeBuyer(...);
- * $performanceReport = $adexchangebuyerService->performanceReport;
- *
- */
-class Postman_Google_Service_AdExchangeBuyer_PerformanceReport_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the authenticated user's list of performance metrics.
- * (performanceReport.listPerformanceReport)
- *
- * @param string $accountId The account id to get the reports.
- * @param string $endDateTime The end time of the report in ISO 8601 timestamp
- * format using UTC.
- * @param string $startDateTime The start time of the report in ISO 8601
- * timestamp format using UTC.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through
- * performance reports. To retrieve the next page, set this parameter to the
- * value of "nextPageToken" from the previous response. Optional.
- * @opt_param string maxResults Maximum number of entries returned on one result
- * page. If not set, the default is 100. Optional.
- * @return Postman_Google_Service_AdExchangeBuyer_PerformanceReportList
- */
- public function listPerformanceReport($accountId, $endDateTime, $startDateTime, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'endDateTime' => $endDateTime, 'startDateTime' => $startDateTime);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeBuyer_PerformanceReportList");
- }
-}
-
-/**
- * The "pretargetingConfig" collection of methods.
- * Typical usage is:
- *
- * $adexchangebuyerService = new Postman_Google_Service_AdExchangeBuyer(...);
- * $pretargetingConfig = $adexchangebuyerService->pretargetingConfig;
- *
- */
-class Postman_Google_Service_AdExchangeBuyer_PretargetingConfig_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an existing pretargeting config. (pretargetingConfig.delete)
- *
- * @param string $accountId The account id to delete the pretargeting config
- * for.
- * @param string $configId The specific id of the configuration to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $configId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'configId' => $configId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a specific pretargeting configuration (pretargetingConfig.get)
- *
- * @param string $accountId The account id to get the pretargeting config for.
- * @param string $configId The specific id of the configuration to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_PretargetingConfig
- */
- public function get($accountId, $configId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'configId' => $configId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeBuyer_PretargetingConfig");
- }
-
- /**
- * Inserts a new pretargeting configuration. (pretargetingConfig.insert)
- *
- * @param string $accountId The account id to insert the pretargeting config
- * for.
- * @param Postman_Google_PretargetingConfig $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_PretargetingConfig
- */
- public function insert($accountId, Postman_Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AdExchangeBuyer_PretargetingConfig");
- }
-
- /**
- * Retrieves a list of the authenticated user's pretargeting configurations.
- * (pretargetingConfig.listPretargetingConfig)
- *
- * @param string $accountId The account id to get the pretargeting configs for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_PretargetingConfigList
- */
- public function listPretargetingConfig($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeBuyer_PretargetingConfigList");
- }
-
- /**
- * Updates an existing pretargeting config. This method supports patch
- * semantics. (pretargetingConfig.patch)
- *
- * @param string $accountId The account id to update the pretargeting config
- * for.
- * @param string $configId The specific id of the configuration to update.
- * @param Postman_Google_PretargetingConfig $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_PretargetingConfig
- */
- public function patch($accountId, $configId, Postman_Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AdExchangeBuyer_PretargetingConfig");
- }
-
- /**
- * Updates an existing pretargeting config. (pretargetingConfig.update)
- *
- * @param string $accountId The account id to update the pretargeting config
- * for.
- * @param string $configId The specific id of the configuration to update.
- * @param Postman_Google_PretargetingConfig $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeBuyer_PretargetingConfig
- */
- public function update($accountId, $configId, Postman_Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AdExchangeBuyer_PretargetingConfig");
- }
-}
-
-
-
-
-class Postman_Google_Service_AdExchangeBuyer_Account extends Postman_Google_Collection
-{
- protected $collection_key = 'bidderLocation';
- protected $internal_gapi_mappings = array(
- );
- protected $bidderLocationType = 'Postman_Google_Service_AdExchangeBuyer_AccountBidderLocation';
- protected $bidderLocationDataType = 'array';
- public $cookieMatchingNid;
- public $cookieMatchingUrl;
- public $id;
- public $kind;
- public $maximumActiveCreatives;
- public $maximumTotalQps;
- public $numberActiveCreatives;
-
-
- public function setBidderLocation($bidderLocation)
- {
- $this->bidderLocation = $bidderLocation;
- }
- public function getBidderLocation()
- {
- return $this->bidderLocation;
- }
- public function setCookieMatchingNid($cookieMatchingNid)
- {
- $this->cookieMatchingNid = $cookieMatchingNid;
- }
- public function getCookieMatchingNid()
- {
- return $this->cookieMatchingNid;
- }
- public function setCookieMatchingUrl($cookieMatchingUrl)
- {
- $this->cookieMatchingUrl = $cookieMatchingUrl;
- }
- public function getCookieMatchingUrl()
- {
- return $this->cookieMatchingUrl;
- }
- 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 setMaximumActiveCreatives($maximumActiveCreatives)
- {
- $this->maximumActiveCreatives = $maximumActiveCreatives;
- }
- public function getMaximumActiveCreatives()
- {
- return $this->maximumActiveCreatives;
- }
- public function setMaximumTotalQps($maximumTotalQps)
- {
- $this->maximumTotalQps = $maximumTotalQps;
- }
- public function getMaximumTotalQps()
- {
- return $this->maximumTotalQps;
- }
- public function setNumberActiveCreatives($numberActiveCreatives)
- {
- $this->numberActiveCreatives = $numberActiveCreatives;
- }
- public function getNumberActiveCreatives()
- {
- return $this->numberActiveCreatives;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_AccountBidderLocation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $maximumQps;
- public $region;
- public $url;
-
-
- public function setMaximumQps($maximumQps)
- {
- $this->maximumQps = $maximumQps;
- }
- public function getMaximumQps()
- {
- return $this->maximumQps;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_AccountsList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeBuyer_Account';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_BillingInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'billingId';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $accountName;
- public $billingId;
- public $kind;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAccountName($accountName)
- {
- $this->accountName = $accountName;
- }
- public function getAccountName()
- {
- return $this->accountName;
- }
- public function setBillingId($billingId)
- {
- $this->billingId = $billingId;
- }
- public function getBillingId()
- {
- return $this->billingId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_BillingInfoList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeBuyer_BillingInfo';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_Creative extends Postman_Google_Collection
-{
- protected $collection_key = 'vendorType';
- protected $internal_gapi_mappings = array(
- "hTMLSnippet" => "HTMLSnippet",
- );
- public $hTMLSnippet;
- public $accountId;
- public $advertiserId;
- public $advertiserName;
- public $agencyId;
- public $attribute;
- public $buyerCreativeId;
- public $clickThroughUrl;
- protected $correctionsType = 'Postman_Google_Service_AdExchangeBuyer_CreativeCorrections';
- protected $correctionsDataType = 'array';
- protected $disapprovalReasonsType = 'Postman_Google_Service_AdExchangeBuyer_CreativeDisapprovalReasons';
- protected $disapprovalReasonsDataType = 'array';
- protected $filteringReasonsType = 'Postman_Google_Service_AdExchangeBuyer_CreativeFilteringReasons';
- protected $filteringReasonsDataType = '';
- public $height;
- public $kind;
- public $productCategories;
- public $restrictedCategories;
- public $sensitiveCategories;
- public $status;
- public $vendorType;
- public $videoURL;
- public $width;
-
-
- public function setHTMLSnippet($hTMLSnippet)
- {
- $this->hTMLSnippet = $hTMLSnippet;
- }
- public function getHTMLSnippet()
- {
- return $this->hTMLSnippet;
- }
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAdvertiserId($advertiserId)
- {
- $this->advertiserId = $advertiserId;
- }
- public function getAdvertiserId()
- {
- return $this->advertiserId;
- }
- public function setAdvertiserName($advertiserName)
- {
- $this->advertiserName = $advertiserName;
- }
- public function getAdvertiserName()
- {
- return $this->advertiserName;
- }
- public function setAgencyId($agencyId)
- {
- $this->agencyId = $agencyId;
- }
- public function getAgencyId()
- {
- return $this->agencyId;
- }
- public function setAttribute($attribute)
- {
- $this->attribute = $attribute;
- }
- public function getAttribute()
- {
- return $this->attribute;
- }
- public function setBuyerCreativeId($buyerCreativeId)
- {
- $this->buyerCreativeId = $buyerCreativeId;
- }
- public function getBuyerCreativeId()
- {
- return $this->buyerCreativeId;
- }
- public function setClickThroughUrl($clickThroughUrl)
- {
- $this->clickThroughUrl = $clickThroughUrl;
- }
- public function getClickThroughUrl()
- {
- return $this->clickThroughUrl;
- }
- public function setCorrections($corrections)
- {
- $this->corrections = $corrections;
- }
- public function getCorrections()
- {
- return $this->corrections;
- }
- public function setDisapprovalReasons($disapprovalReasons)
- {
- $this->disapprovalReasons = $disapprovalReasons;
- }
- public function getDisapprovalReasons()
- {
- return $this->disapprovalReasons;
- }
- public function setFilteringReasons(Postman_Google_Service_AdExchangeBuyer_CreativeFilteringReasons $filteringReasons)
- {
- $this->filteringReasons = $filteringReasons;
- }
- public function getFilteringReasons()
- {
- return $this->filteringReasons;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProductCategories($productCategories)
- {
- $this->productCategories = $productCategories;
- }
- public function getProductCategories()
- {
- return $this->productCategories;
- }
- public function setRestrictedCategories($restrictedCategories)
- {
- $this->restrictedCategories = $restrictedCategories;
- }
- public function getRestrictedCategories()
- {
- return $this->restrictedCategories;
- }
- public function setSensitiveCategories($sensitiveCategories)
- {
- $this->sensitiveCategories = $sensitiveCategories;
- }
- public function getSensitiveCategories()
- {
- return $this->sensitiveCategories;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setVendorType($vendorType)
- {
- $this->vendorType = $vendorType;
- }
- public function getVendorType()
- {
- return $this->vendorType;
- }
- public function setVideoURL($videoURL)
- {
- $this->videoURL = $videoURL;
- }
- public function getVideoURL()
- {
- return $this->videoURL;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_CreativeCorrections extends Postman_Google_Collection
-{
- protected $collection_key = 'details';
- protected $internal_gapi_mappings = array(
- );
- public $details;
- public $reason;
-
-
- public function setDetails($details)
- {
- $this->details = $details;
- }
- public function getDetails()
- {
- return $this->details;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_CreativeDisapprovalReasons extends Postman_Google_Collection
-{
- protected $collection_key = 'details';
- protected $internal_gapi_mappings = array(
- );
- public $details;
- public $reason;
-
-
- public function setDetails($details)
- {
- $this->details = $details;
- }
- public function getDetails()
- {
- return $this->details;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_CreativeFilteringReasons extends Postman_Google_Collection
-{
- protected $collection_key = 'reasons';
- protected $internal_gapi_mappings = array(
- );
- public $date;
- protected $reasonsType = 'Postman_Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons';
- protected $reasonsDataType = 'array';
-
-
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setReasons($reasons)
- {
- $this->reasons = $reasons;
- }
- public function getReasons()
- {
- return $this->reasons;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $filteringCount;
- public $filteringStatus;
-
-
- public function setFilteringCount($filteringCount)
- {
- $this->filteringCount = $filteringCount;
- }
- public function getFilteringCount()
- {
- return $this->filteringCount;
- }
- public function setFilteringStatus($filteringStatus)
- {
- $this->filteringStatus = $filteringStatus;
- }
- public function getFilteringStatus()
- {
- return $this->filteringStatus;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_CreativesList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeBuyer_Creative';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_DirectDeal extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $advertiser;
- public $currencyCode;
- public $endTime;
- public $fixedCpm;
- public $id;
- public $kind;
- public $name;
- public $privateExchangeMinCpm;
- public $publisherBlocksOverriden;
- public $sellerNetwork;
- public $startTime;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAdvertiser($advertiser)
- {
- $this->advertiser = $advertiser;
- }
- public function getAdvertiser()
- {
- return $this->advertiser;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setFixedCpm($fixedCpm)
- {
- $this->fixedCpm = $fixedCpm;
- }
- public function getFixedCpm()
- {
- return $this->fixedCpm;
- }
- 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 setPrivateExchangeMinCpm($privateExchangeMinCpm)
- {
- $this->privateExchangeMinCpm = $privateExchangeMinCpm;
- }
- public function getPrivateExchangeMinCpm()
- {
- return $this->privateExchangeMinCpm;
- }
- public function setPublisherBlocksOverriden($publisherBlocksOverriden)
- {
- $this->publisherBlocksOverriden = $publisherBlocksOverriden;
- }
- public function getPublisherBlocksOverriden()
- {
- return $this->publisherBlocksOverriden;
- }
- public function setSellerNetwork($sellerNetwork)
- {
- $this->sellerNetwork = $sellerNetwork;
- }
- public function getSellerNetwork()
- {
- return $this->sellerNetwork;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_DirectDealsList extends Postman_Google_Collection
-{
- protected $collection_key = 'directDeals';
- protected $internal_gapi_mappings = array(
- );
- protected $directDealsType = 'Postman_Google_Service_AdExchangeBuyer_DirectDeal';
- protected $directDealsDataType = 'array';
- public $kind;
-
-
- public function setDirectDeals($directDeals)
- {
- $this->directDeals = $directDeals;
- }
- public function getDirectDeals()
- {
- return $this->directDeals;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PerformanceReport extends Postman_Google_Collection
-{
- protected $collection_key = 'hostedMatchStatusRate';
- protected $internal_gapi_mappings = array(
- );
- public $calloutStatusRate;
- public $cookieMatcherStatusRate;
- public $creativeStatusRate;
- public $hostedMatchStatusRate;
- public $kind;
- public $latency50thPercentile;
- public $latency85thPercentile;
- public $latency95thPercentile;
- public $noQuotaInRegion;
- public $outOfQuota;
- public $pixelMatchRequests;
- public $pixelMatchResponses;
- public $quotaConfiguredLimit;
- public $quotaThrottledLimit;
- public $region;
- public $timestamp;
-
-
- public function setCalloutStatusRate($calloutStatusRate)
- {
- $this->calloutStatusRate = $calloutStatusRate;
- }
- public function getCalloutStatusRate()
- {
- return $this->calloutStatusRate;
- }
- public function setCookieMatcherStatusRate($cookieMatcherStatusRate)
- {
- $this->cookieMatcherStatusRate = $cookieMatcherStatusRate;
- }
- public function getCookieMatcherStatusRate()
- {
- return $this->cookieMatcherStatusRate;
- }
- public function setCreativeStatusRate($creativeStatusRate)
- {
- $this->creativeStatusRate = $creativeStatusRate;
- }
- public function getCreativeStatusRate()
- {
- return $this->creativeStatusRate;
- }
- public function setHostedMatchStatusRate($hostedMatchStatusRate)
- {
- $this->hostedMatchStatusRate = $hostedMatchStatusRate;
- }
- public function getHostedMatchStatusRate()
- {
- return $this->hostedMatchStatusRate;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLatency50thPercentile($latency50thPercentile)
- {
- $this->latency50thPercentile = $latency50thPercentile;
- }
- public function getLatency50thPercentile()
- {
- return $this->latency50thPercentile;
- }
- public function setLatency85thPercentile($latency85thPercentile)
- {
- $this->latency85thPercentile = $latency85thPercentile;
- }
- public function getLatency85thPercentile()
- {
- return $this->latency85thPercentile;
- }
- public function setLatency95thPercentile($latency95thPercentile)
- {
- $this->latency95thPercentile = $latency95thPercentile;
- }
- public function getLatency95thPercentile()
- {
- return $this->latency95thPercentile;
- }
- public function setNoQuotaInRegion($noQuotaInRegion)
- {
- $this->noQuotaInRegion = $noQuotaInRegion;
- }
- public function getNoQuotaInRegion()
- {
- return $this->noQuotaInRegion;
- }
- public function setOutOfQuota($outOfQuota)
- {
- $this->outOfQuota = $outOfQuota;
- }
- public function getOutOfQuota()
- {
- return $this->outOfQuota;
- }
- public function setPixelMatchRequests($pixelMatchRequests)
- {
- $this->pixelMatchRequests = $pixelMatchRequests;
- }
- public function getPixelMatchRequests()
- {
- return $this->pixelMatchRequests;
- }
- public function setPixelMatchResponses($pixelMatchResponses)
- {
- $this->pixelMatchResponses = $pixelMatchResponses;
- }
- public function getPixelMatchResponses()
- {
- return $this->pixelMatchResponses;
- }
- public function setQuotaConfiguredLimit($quotaConfiguredLimit)
- {
- $this->quotaConfiguredLimit = $quotaConfiguredLimit;
- }
- public function getQuotaConfiguredLimit()
- {
- return $this->quotaConfiguredLimit;
- }
- public function setQuotaThrottledLimit($quotaThrottledLimit)
- {
- $this->quotaThrottledLimit = $quotaThrottledLimit;
- }
- public function getQuotaThrottledLimit()
- {
- return $this->quotaThrottledLimit;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PerformanceReportList extends Postman_Google_Collection
-{
- protected $collection_key = 'performanceReport';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $performanceReportType = 'Postman_Google_Service_AdExchangeBuyer_PerformanceReport';
- protected $performanceReportDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPerformanceReport($performanceReport)
- {
- $this->performanceReport = $performanceReport;
- }
- public function getPerformanceReport()
- {
- return $this->performanceReport;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PretargetingConfig extends Postman_Google_Collection
-{
- protected $collection_key = 'verticals';
- protected $internal_gapi_mappings = array(
- );
- public $billingId;
- public $configId;
- public $configName;
- public $creativeType;
- protected $dimensionsType = 'Postman_Google_Service_AdExchangeBuyer_PretargetingConfigDimensions';
- protected $dimensionsDataType = 'array';
- public $excludedContentLabels;
- public $excludedGeoCriteriaIds;
- protected $excludedPlacementsType = 'Postman_Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements';
- protected $excludedPlacementsDataType = 'array';
- public $excludedUserLists;
- public $excludedVerticals;
- public $geoCriteriaIds;
- public $isActive;
- public $kind;
- public $languages;
- public $mobileCarriers;
- public $mobileDevices;
- public $mobileOperatingSystemVersions;
- protected $placementsType = 'Postman_Google_Service_AdExchangeBuyer_PretargetingConfigPlacements';
- protected $placementsDataType = 'array';
- public $platforms;
- public $supportedCreativeAttributes;
- public $userLists;
- public $vendorTypes;
- public $verticals;
-
-
- public function setBillingId($billingId)
- {
- $this->billingId = $billingId;
- }
- public function getBillingId()
- {
- return $this->billingId;
- }
- public function setConfigId($configId)
- {
- $this->configId = $configId;
- }
- public function getConfigId()
- {
- return $this->configId;
- }
- public function setConfigName($configName)
- {
- $this->configName = $configName;
- }
- public function getConfigName()
- {
- return $this->configName;
- }
- public function setCreativeType($creativeType)
- {
- $this->creativeType = $creativeType;
- }
- public function getCreativeType()
- {
- return $this->creativeType;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setExcludedContentLabels($excludedContentLabels)
- {
- $this->excludedContentLabels = $excludedContentLabels;
- }
- public function getExcludedContentLabels()
- {
- return $this->excludedContentLabels;
- }
- public function setExcludedGeoCriteriaIds($excludedGeoCriteriaIds)
- {
- $this->excludedGeoCriteriaIds = $excludedGeoCriteriaIds;
- }
- public function getExcludedGeoCriteriaIds()
- {
- return $this->excludedGeoCriteriaIds;
- }
- public function setExcludedPlacements($excludedPlacements)
- {
- $this->excludedPlacements = $excludedPlacements;
- }
- public function getExcludedPlacements()
- {
- return $this->excludedPlacements;
- }
- public function setExcludedUserLists($excludedUserLists)
- {
- $this->excludedUserLists = $excludedUserLists;
- }
- public function getExcludedUserLists()
- {
- return $this->excludedUserLists;
- }
- public function setExcludedVerticals($excludedVerticals)
- {
- $this->excludedVerticals = $excludedVerticals;
- }
- public function getExcludedVerticals()
- {
- return $this->excludedVerticals;
- }
- public function setGeoCriteriaIds($geoCriteriaIds)
- {
- $this->geoCriteriaIds = $geoCriteriaIds;
- }
- public function getGeoCriteriaIds()
- {
- return $this->geoCriteriaIds;
- }
- public function setIsActive($isActive)
- {
- $this->isActive = $isActive;
- }
- public function getIsActive()
- {
- return $this->isActive;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLanguages($languages)
- {
- $this->languages = $languages;
- }
- public function getLanguages()
- {
- return $this->languages;
- }
- public function setMobileCarriers($mobileCarriers)
- {
- $this->mobileCarriers = $mobileCarriers;
- }
- public function getMobileCarriers()
- {
- return $this->mobileCarriers;
- }
- public function setMobileDevices($mobileDevices)
- {
- $this->mobileDevices = $mobileDevices;
- }
- public function getMobileDevices()
- {
- return $this->mobileDevices;
- }
- public function setMobileOperatingSystemVersions($mobileOperatingSystemVersions)
- {
- $this->mobileOperatingSystemVersions = $mobileOperatingSystemVersions;
- }
- public function getMobileOperatingSystemVersions()
- {
- return $this->mobileOperatingSystemVersions;
- }
- public function setPlacements($placements)
- {
- $this->placements = $placements;
- }
- public function getPlacements()
- {
- return $this->placements;
- }
- public function setPlatforms($platforms)
- {
- $this->platforms = $platforms;
- }
- public function getPlatforms()
- {
- return $this->platforms;
- }
- public function setSupportedCreativeAttributes($supportedCreativeAttributes)
- {
- $this->supportedCreativeAttributes = $supportedCreativeAttributes;
- }
- public function getSupportedCreativeAttributes()
- {
- return $this->supportedCreativeAttributes;
- }
- public function setUserLists($userLists)
- {
- $this->userLists = $userLists;
- }
- public function getUserLists()
- {
- return $this->userLists;
- }
- public function setVendorTypes($vendorTypes)
- {
- $this->vendorTypes = $vendorTypes;
- }
- public function getVendorTypes()
- {
- return $this->vendorTypes;
- }
- public function setVerticals($verticals)
- {
- $this->verticals = $verticals;
- }
- public function getVerticals()
- {
- return $this->verticals;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PretargetingConfigDimensions extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $token;
- public $type;
-
-
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PretargetingConfigList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeBuyer_PretargetingConfig';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeBuyer_PretargetingConfigPlacements extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $token;
- public $type;
-
-
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdExchangeSeller.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdExchangeSeller.php
deleted file mode 100644
index 6331269..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdExchangeSeller.php
+++ /dev/null
@@ -1,1712 +0,0 @@
-
- * Gives Ad Exchange seller users access to their inventory and the ability to
- * generate reports
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_AdExchangeSeller extends Postman_Google_Service -{ - /** View and manage your Ad Exchange data. */ - const ADEXCHANGE_SELLER = - "https://www.googleapis.com/auth/adexchange.seller"; - /** View your Ad Exchange data. */ - const ADEXCHANGE_SELLER_READONLY = - "https://www.googleapis.com/auth/adexchange.seller.readonly"; - - public $accounts; - public $accounts_adclients; - public $accounts_alerts; - public $accounts_customchannels; - public $accounts_metadata_dimensions; - public $accounts_metadata_metrics; - public $accounts_preferreddeals; - public $accounts_reports; - public $accounts_reports_saved; - public $accounts_urlchannels; - - - /** - * Constructs the internal representation of the AdExchangeSeller service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'adexchangeseller/v2.0/'; - $this->version = 'v2.0'; - $this->serviceName = 'adexchangeseller'; - - $this->accounts = new Postman_Google_Service_AdExchangeSeller_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_adclients = new Postman_Google_Service_AdExchangeSeller_AccountsAdclients_Resource( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_alerts = new Postman_Google_Service_AdExchangeSeller_AccountsAlerts_Resource( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_customchannels = new Postman_Google_Service_AdExchangeSeller_AccountsCustomchannels_Resource( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_metadata_dimensions = new Postman_Google_Service_AdExchangeSeller_AccountsMetadataDimensions_Resource( - $this, - $this->serviceName, - 'dimensions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/metadata/dimensions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_metadata_metrics = new Postman_Google_Service_AdExchangeSeller_AccountsMetadataMetrics_Resource( - $this, - $this->serviceName, - 'metrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/metadata/metrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_preferreddeals = new Postman_Google_Service_AdExchangeSeller_AccountsPreferreddeals_Resource( - $this, - $this->serviceName, - 'preferreddeals', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/preferreddeals/{dealId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dealId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/preferreddeals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports = new Postman_Google_Service_AdExchangeSeller_AccountsReports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports_saved = new Postman_Google_Service_AdExchangeSeller_AccountsReportsSaved_Resource( - $this, - $this->serviceName, - 'saved', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports/{savedReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/reports/saved', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_urlchannels = new Postman_Google_Service_AdExchangeSeller_AccountsUrlchannels_Resource( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $accounts = $adexchangesellerService->accounts;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get information about the selected Ad Exchange account. (accounts.get)
- *
- * @param string $accountId Account to get information about. Tip: 'myaccount'
- * is a valid ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeSeller_Account
- */
- public function get($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeSeller_Account");
- }
-
- /**
- * List all accounts available to this Ad Exchange account.
- * (accounts.listAccounts)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through
- * accounts. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of accounts to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdExchangeSeller_Accounts
- */
- public function listAccounts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_Accounts");
- }
-}
-
-/**
- * The "adclients" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $adclients = $adexchangesellerService->adclients;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsAdclients_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all ad clients in this Ad Exchange account.
- * (adclients.listAccountsAdclients)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through ad
- * clients. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of ad clients to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdExchangeSeller_AdClients
- */
- public function listAccountsAdclients($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_AdClients");
- }
-}
-/**
- * The "alerts" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $alerts = $adexchangesellerService->alerts;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsAlerts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the alerts for this Ad Exchange account. (alerts.listAccountsAlerts)
- *
- * @param string $accountId Account owning the alerts.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale The locale to use for translating alert messages.
- * The account locale will be used if this is not supplied. The AdSense default
- * (English) will be used if the supplied locale is invalid or unsupported.
- * @return Postman_Google_Service_AdExchangeSeller_Alerts
- */
- public function listAccountsAlerts($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_Alerts");
- }
-}
-/**
- * The "customchannels" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $customchannels = $adexchangesellerService->customchannels;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsCustomchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get the specified custom channel from the specified ad client.
- * (customchannels.get)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client which contains the custom channel.
- * @param string $customChannelId Custom channel to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeSeller_CustomChannel
- */
- public function get($accountId, $adClientId, $customChannelId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeSeller_CustomChannel");
- }
-
- /**
- * List all custom channels in the specified ad client for this Ad Exchange
- * account. (customchannels.listAccountsCustomchannels)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client for which to list custom channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through custom
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of custom channels to include
- * in the response, used for paging.
- * @return Postman_Google_Service_AdExchangeSeller_CustomChannels
- */
- public function listAccountsCustomchannels($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_CustomChannels");
- }
-}
-/**
- * The "metadata" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $metadata = $adexchangesellerService->metadata;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsMetadata_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "dimensions" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $dimensions = $adexchangesellerService->dimensions;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsMetadataDimensions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the metadata for the dimensions available to this AdExchange account.
- * (dimensions.listAccountsMetadataDimensions)
- *
- * @param string $accountId Account with visibility to the dimensions.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeSeller_Metadata
- */
- public function listAccountsMetadataDimensions($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_Metadata");
- }
-}
-/**
- * The "metrics" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $metrics = $adexchangesellerService->metrics;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsMetadataMetrics_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the metadata for the metrics available to this AdExchange account.
- * (metrics.listAccountsMetadataMetrics)
- *
- * @param string $accountId Account with visibility to the metrics.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeSeller_Metadata
- */
- public function listAccountsMetadataMetrics($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_Metadata");
- }
-}
-/**
- * The "preferreddeals" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $preferreddeals = $adexchangesellerService->preferreddeals;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsPreferreddeals_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get information about the selected Ad Exchange Preferred Deal.
- * (preferreddeals.get)
- *
- * @param string $accountId Account owning the deal.
- * @param string $dealId Preferred deal to get information about.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeSeller_PreferredDeal
- */
- public function get($accountId, $dealId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'dealId' => $dealId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdExchangeSeller_PreferredDeal");
- }
-
- /**
- * List the preferred deals for this Ad Exchange account.
- * (preferreddeals.listAccountsPreferreddeals)
- *
- * @param string $accountId Account owning the deals.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdExchangeSeller_PreferredDeals
- */
- public function listAccountsPreferreddeals($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_PreferredDeals");
- }
-}
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $reports = $adexchangesellerService->reports;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsReports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an Ad Exchange report based on the report request sent in the query
- * parameters. Returns the result as JSON; to retrieve output in CSV format
- * specify "alt=csv" as a query parameter. (reports.generate)
- *
- * @param string $accountId Account which owns the generated report.
- * @param string $startDate Start of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param string $endDate End of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort The name of a dimension or metric to sort the
- * resulting report on, optionally prefixed with "+" to sort ascending or "-" to
- * sort descending. If no prefix is specified, the column is sorted ascending.
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param string metric Numeric columns to include in the report.
- * @opt_param string maxResults The maximum number of rows of report data to
- * return.
- * @opt_param string filter Filters to be run on the report.
- * @opt_param string startIndex Index of the first row of report data to return.
- * @opt_param string dimension Dimensions to base the report on.
- * @return Postman_Google_Service_AdExchangeSeller_Report
- */
- public function generate($accountId, $startDate, $endDate, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdExchangeSeller_Report");
- }
-}
-
-/**
- * The "saved" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $saved = $adexchangesellerService->saved;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsReportsSaved_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an Ad Exchange report based on the saved report ID sent in the query
- * parameters. (saved.generate)
- *
- * @param string $accountId Account owning the saved report.
- * @param string $savedReportId The saved report to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param int startIndex Index of the first row of report data to return.
- * @opt_param int maxResults The maximum number of rows of report data to
- * return.
- * @return Postman_Google_Service_AdExchangeSeller_Report
- */
- public function generate($accountId, $savedReportId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdExchangeSeller_Report");
- }
-
- /**
- * List all saved reports in this Ad Exchange account.
- * (saved.listAccountsReportsSaved)
- *
- * @param string $accountId Account owning the saved reports.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through saved
- * reports. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of saved reports to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdExchangeSeller_SavedReports
- */
- public function listAccountsReportsSaved($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_SavedReports");
- }
-}
-/**
- * The "urlchannels" collection of methods.
- * Typical usage is:
- *
- * $adexchangesellerService = new Postman_Google_Service_AdExchangeSeller(...);
- * $urlchannels = $adexchangesellerService->urlchannels;
- *
- */
-class Postman_Google_Service_AdExchangeSeller_AccountsUrlchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all URL channels in the specified ad client for this Ad Exchange
- * account. (urlchannels.listAccountsUrlchannels)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client for which to list URL channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through URL
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of URL channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdExchangeSeller_UrlChannels
- */
- public function listAccountsUrlchannels($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdExchangeSeller_UrlChannels");
- }
-}
-
-
-
-
-class Postman_Google_Service_AdExchangeSeller_Account extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_Accounts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_Account';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_AdClient extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $arcOptIn;
- public $id;
- public $kind;
- public $productCode;
- public $supportsReporting;
-
-
- public function setArcOptIn($arcOptIn)
- {
- $this->arcOptIn = $arcOptIn;
- }
- public function getArcOptIn()
- {
- return $this->arcOptIn;
- }
- 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 setProductCode($productCode)
- {
- $this->productCode = $productCode;
- }
- public function getProductCode()
- {
- return $this->productCode;
- }
- public function setSupportsReporting($supportsReporting)
- {
- $this->supportsReporting = $supportsReporting;
- }
- public function getSupportsReporting()
- {
- return $this->supportsReporting;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_AdClients extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_AdClient';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_Alert extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $message;
- public $severity;
- 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 setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setSeverity($severity)
- {
- $this->severity = $severity;
- }
- public function getSeverity()
- {
- return $this->severity;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_Alerts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_Alert';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_CustomChannel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $id;
- public $kind;
- public $name;
- protected $targetingInfoType = 'Postman_Google_Service_AdExchangeSeller_CustomChannelTargetingInfo';
- protected $targetingInfoDataType = '';
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- 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 setTargetingInfo(Postman_Google_Service_AdExchangeSeller_CustomChannelTargetingInfo $targetingInfo)
- {
- $this->targetingInfo = $targetingInfo;
- }
- public function getTargetingInfo()
- {
- return $this->targetingInfo;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_CustomChannelTargetingInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adsAppearOn;
- public $description;
- public $location;
- public $siteLanguage;
-
-
- public function setAdsAppearOn($adsAppearOn)
- {
- $this->adsAppearOn = $adsAppearOn;
- }
- public function getAdsAppearOn()
- {
- return $this->adsAppearOn;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setSiteLanguage($siteLanguage)
- {
- $this->siteLanguage = $siteLanguage;
- }
- public function getSiteLanguage()
- {
- return $this->siteLanguage;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_CustomChannels extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_CustomChannel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_Metadata extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_ReportingMetadataEntry';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_PreferredDeal extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $advertiserName;
- public $buyerNetworkName;
- public $currencyCode;
- public $endTime;
- public $fixedCpm;
- public $id;
- public $kind;
- public $startTime;
-
-
- public function setAdvertiserName($advertiserName)
- {
- $this->advertiserName = $advertiserName;
- }
- public function getAdvertiserName()
- {
- return $this->advertiserName;
- }
- public function setBuyerNetworkName($buyerNetworkName)
- {
- $this->buyerNetworkName = $buyerNetworkName;
- }
- public function getBuyerNetworkName()
- {
- return $this->buyerNetworkName;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setFixedCpm($fixedCpm)
- {
- $this->fixedCpm = $fixedCpm;
- }
- public function getFixedCpm()
- {
- return $this->fixedCpm;
- }
- 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 setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_PreferredDeals extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_PreferredDeal';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_Report extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $averages;
- protected $headersType = 'Postman_Google_Service_AdExchangeSeller_ReportHeaders';
- protected $headersDataType = 'array';
- public $kind;
- public $rows;
- public $totalMatchedRows;
- public $totals;
- public $warnings;
-
-
- public function setAverages($averages)
- {
- $this->averages = $averages;
- }
- public function getAverages()
- {
- return $this->averages;
- }
- public function setHeaders($headers)
- {
- $this->headers = $headers;
- }
- public function getHeaders()
- {
- return $this->headers;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setTotalMatchedRows($totalMatchedRows)
- {
- $this->totalMatchedRows = $totalMatchedRows;
- }
- public function getTotalMatchedRows()
- {
- return $this->totalMatchedRows;
- }
- public function setTotals($totals)
- {
- $this->totals = $totals;
- }
- public function getTotals()
- {
- return $this->totals;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_ReportHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currency;
- public $name;
- public $type;
-
-
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- }
- public function getCurrency()
- {
- return $this->currency;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_ReportingMetadataEntry extends Postman_Google_Collection
-{
- protected $collection_key = 'supportedProducts';
- protected $internal_gapi_mappings = array(
- );
- public $compatibleDimensions;
- public $compatibleMetrics;
- public $id;
- public $kind;
- public $requiredDimensions;
- public $requiredMetrics;
- public $supportedProducts;
-
-
- public function setCompatibleDimensions($compatibleDimensions)
- {
- $this->compatibleDimensions = $compatibleDimensions;
- }
- public function getCompatibleDimensions()
- {
- return $this->compatibleDimensions;
- }
- public function setCompatibleMetrics($compatibleMetrics)
- {
- $this->compatibleMetrics = $compatibleMetrics;
- }
- public function getCompatibleMetrics()
- {
- return $this->compatibleMetrics;
- }
- 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 setRequiredDimensions($requiredDimensions)
- {
- $this->requiredDimensions = $requiredDimensions;
- }
- public function getRequiredDimensions()
- {
- return $this->requiredDimensions;
- }
- public function setRequiredMetrics($requiredMetrics)
- {
- $this->requiredMetrics = $requiredMetrics;
- }
- public function getRequiredMetrics()
- {
- return $this->requiredMetrics;
- }
- public function setSupportedProducts($supportedProducts)
- {
- $this->supportedProducts = $supportedProducts;
- }
- public function getSupportedProducts()
- {
- return $this->supportedProducts;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_SavedReport extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_SavedReports extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_SavedReport';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_UrlChannel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $urlPattern;
-
-
- 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 setUrlPattern($urlPattern)
- {
- $this->urlPattern = $urlPattern;
- }
- public function getUrlPattern()
- {
- return $this->urlPattern;
- }
-}
-
-class Postman_Google_Service_AdExchangeSeller_UrlChannels extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdExchangeSeller_UrlChannel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdSense.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdSense.php
deleted file mode 100644
index d744467..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdSense.php
+++ /dev/null
@@ -1,3585 +0,0 @@
-
- * Gives AdSense publishers access to their inventory and the ability to
- * generate reports
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_AdSense extends Postman_Google_Service -{ - /** View and manage your AdSense data. */ - const ADSENSE = - "https://www.googleapis.com/auth/adsense"; - /** View your AdSense data. */ - const ADSENSE_READONLY = - "https://www.googleapis.com/auth/adsense.readonly"; - - public $accounts; - public $accounts_adclients; - public $accounts_adunits; - public $accounts_adunits_customchannels; - public $accounts_alerts; - public $accounts_customchannels; - public $accounts_customchannels_adunits; - public $accounts_payments; - public $accounts_reports; - public $accounts_reports_saved; - public $accounts_savedadstyles; - public $accounts_urlchannels; - public $adclients; - public $adunits; - public $adunits_customchannels; - public $alerts; - public $customchannels; - public $customchannels_adunits; - public $metadata_dimensions; - public $metadata_metrics; - public $payments; - public $reports; - public $reports_saved; - public $savedadstyles; - public $urlchannels; - - - /** - * Constructs the internal representation of the AdSense service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'adsense/v1.4/'; - $this->version = 'v1.4'; - $this->serviceName = 'adsense'; - - $this->accounts = new Postman_Google_Service_AdSense_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tree' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_adclients = new Postman_Google_Service_AdSense_AccountsAdclients_Resource( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_adunits = new Postman_Google_Service_AdSense_AccountsAdunits_Resource( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdCode' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_adunits_customchannels = new Postman_Google_Service_AdSense_AccountsAdunitsCustomchannels_Resource( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_alerts = new Postman_Google_Service_AdSense_AccountsAlerts_Resource( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'accounts/{accountId}/alerts/{alertId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_customchannels = new Postman_Google_Service_AdSense_AccountsCustomchannels_Resource( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_customchannels_adunits = new Postman_Google_Service_AdSense_AccountsCustomchannelsAdunits_Resource( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_payments = new Postman_Google_Service_AdSense_AccountsPayments_Resource( - $this, - $this->serviceName, - 'payments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/payments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports = new Postman_Google_Service_AdSense_AccountsReports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'currency' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'useTimezoneReporting' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports_saved = new Postman_Google_Service_AdSense_AccountsReportsSaved_Resource( - $this, - $this->serviceName, - 'saved', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports/{savedReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/reports/saved', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_savedadstyles = new Postman_Google_Service_AdSense_AccountsSavedadstyles_Resource( - $this, - $this->serviceName, - 'savedadstyles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/savedadstyles/{savedAdStyleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedAdStyleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/savedadstyles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_urlchannels = new Postman_Google_Service_AdSense_AccountsUrlchannels_Resource( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->adclients = new Postman_Google_Service_AdSense_Adclients_Resource( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->adunits = new Postman_Google_Service_AdSense_Adunits_Resource( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'get' => array( - 'path' => 'adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdCode' => array( - 'path' => 'adclients/{adClientId}/adunits/{adUnitId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->adunits_customchannels = new Postman_Google_Service_AdSense_AdunitsCustomchannels_Resource( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients/{adClientId}/adunits/{adUnitId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->alerts = new Postman_Google_Service_AdSense_Alerts_Resource( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'alerts/{alertId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customchannels = new Postman_Google_Service_AdSense_Customchannels_Resource( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->customchannels_adunits = new Postman_Google_Service_AdSense_CustomchannelsAdunits_Resource( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->metadata_dimensions = new Postman_Google_Service_AdSense_MetadataDimensions_Resource( - $this, - $this->serviceName, - 'dimensions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'metadata/dimensions', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->metadata_metrics = new Postman_Google_Service_AdSense_MetadataMetrics_Resource( - $this, - $this->serviceName, - 'metrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'metadata/metrics', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->payments = new Postman_Google_Service_AdSense_Payments_Resource( - $this, - $this->serviceName, - 'payments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'payments', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->reports = new Postman_Google_Service_AdSense_Reports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'currency' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'useTimezoneReporting' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'accountId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->reports_saved = new Postman_Google_Service_AdSense_ReportsSaved_Resource( - $this, - $this->serviceName, - 'saved', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports/{savedReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'savedReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'reports/saved', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->savedadstyles = new Postman_Google_Service_AdSense_Savedadstyles_Resource( - $this, - $this->serviceName, - 'savedadstyles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'savedadstyles/{savedAdStyleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'savedAdStyleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'savedadstyles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->urlchannels = new Postman_Google_Service_AdSense_Urlchannels_Resource( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $accounts = $adsenseService->accounts;
- *
- */
-class Postman_Google_Service_AdSense_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get information about the selected AdSense account. (accounts.get)
- *
- * @param string $accountId Account to get information about.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool tree Whether the tree of sub accounts should be returned.
- * @return Postman_Google_Service_AdSense_Account
- */
- public function get($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_Account");
- }
-
- /**
- * List all accounts available to this AdSense account. (accounts.listAccounts)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through
- * accounts. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of accounts to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSense_Accounts
- */
- public function listAccounts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Accounts");
- }
-}
-
-/**
- * The "adclients" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $adclients = $adsenseService->adclients;
- *
- */
-class Postman_Google_Service_AdSense_AccountsAdclients_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all ad clients in the specified account.
- * (adclients.listAccountsAdclients)
- *
- * @param string $accountId Account for which to list ad clients.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through ad
- * clients. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of ad clients to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSense_AdClients
- */
- public function listAccountsAdclients($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_AdClients");
- }
-}
-/**
- * The "adunits" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $adunits = $adsenseService->adunits;
- *
- */
-class Postman_Google_Service_AdSense_AccountsAdunits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the specified ad unit in the specified ad client for the specified
- * account. (adunits.get)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client for which to get the ad unit.
- * @param string $adUnitId Ad unit to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_AdUnit
- */
- public function get($accountId, $adClientId, $adUnitId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_AdUnit");
- }
-
- /**
- * Get ad code for the specified ad unit. (adunits.getAdCode)
- *
- * @param string $accountId Account which contains the ad client.
- * @param string $adClientId Ad client with contains the ad unit.
- * @param string $adUnitId Ad unit to get the code for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_AdCode
- */
- public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('getAdCode', array($params), "Postman_Google_Service_AdSense_AdCode");
- }
-
- /**
- * List all ad units in the specified ad client for the specified account.
- * (adunits.listAccountsAdunits)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client for which to list ad units.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeInactive Whether to include inactive ad units.
- * Default: true.
- * @opt_param string pageToken A continuation token, used to page through ad
- * units. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of ad units to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSense_AdUnits
- */
- public function listAccountsAdunits($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_AdUnits");
- }
-}
-
-/**
- * The "customchannels" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $customchannels = $adsenseService->customchannels;
- *
- */
-class Postman_Google_Service_AdSense_AccountsAdunitsCustomchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all custom channels which the specified ad unit belongs to.
- * (customchannels.listAccountsAdunitsCustomchannels)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client which contains the ad unit.
- * @param string $adUnitId Ad unit for which to list custom channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through custom
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of custom channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_CustomChannels
- */
- public function listAccountsAdunitsCustomchannels($accountId, $adClientId, $adUnitId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_CustomChannels");
- }
-}
-/**
- * The "alerts" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $alerts = $adsenseService->alerts;
- *
- */
-class Postman_Google_Service_AdSense_AccountsAlerts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Dismiss (delete) the specified alert from the specified publisher AdSense
- * account. (alerts.delete)
- *
- * @param string $accountId Account which contains the ad unit.
- * @param string $alertId Alert to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $alertId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'alertId' => $alertId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * List the alerts for the specified AdSense account.
- * (alerts.listAccountsAlerts)
- *
- * @param string $accountId Account for which to retrieve the alerts.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale The locale to use for translating alert messages.
- * The account locale will be used if this is not supplied. The AdSense default
- * (English) will be used if the supplied locale is invalid or unsupported.
- * @return Postman_Google_Service_AdSense_Alerts
- */
- public function listAccountsAlerts($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Alerts");
- }
-}
-/**
- * The "customchannels" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $customchannels = $adsenseService->customchannels;
- *
- */
-class Postman_Google_Service_AdSense_AccountsCustomchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get the specified custom channel from the specified ad client for the
- * specified account. (customchannels.get)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client which contains the custom channel.
- * @param string $customChannelId Custom channel to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_CustomChannel
- */
- public function get($accountId, $adClientId, $customChannelId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_CustomChannel");
- }
-
- /**
- * List all custom channels in the specified ad client for the specified
- * account. (customchannels.listAccountsCustomchannels)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client for which to list custom channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through custom
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of custom channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_CustomChannels
- */
- public function listAccountsCustomchannels($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_CustomChannels");
- }
-}
-
-/**
- * The "adunits" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $adunits = $adsenseService->adunits;
- *
- */
-class Postman_Google_Service_AdSense_AccountsCustomchannelsAdunits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all ad units in the specified custom channel.
- * (adunits.listAccountsCustomchannelsAdunits)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client which contains the custom channel.
- * @param string $customChannelId Custom channel for which to list ad units.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeInactive Whether to include inactive ad units.
- * Default: true.
- * @opt_param int maxResults The maximum number of ad units to include in the
- * response, used for paging.
- * @opt_param string pageToken A continuation token, used to page through ad
- * units. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @return Postman_Google_Service_AdSense_AdUnits
- */
- public function listAccountsCustomchannelsAdunits($accountId, $adClientId, $customChannelId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_AdUnits");
- }
-}
-/**
- * The "payments" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $payments = $adsenseService->payments;
- *
- */
-class Postman_Google_Service_AdSense_AccountsPayments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the payments for the specified AdSense account.
- * (payments.listAccountsPayments)
- *
- * @param string $accountId Account for which to retrieve the payments.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_Payments
- */
- public function listAccountsPayments($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Payments");
- }
-}
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $reports = $adsenseService->reports;
- *
- */
-class Postman_Google_Service_AdSense_AccountsReports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an AdSense report based on the report request sent in the query
- * parameters. Returns the result as JSON; to retrieve output in CSV format
- * specify "alt=csv" as a query parameter. (reports.generate)
- *
- * @param string $accountId Account upon which to report.
- * @param string $startDate Start of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param string $endDate End of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort The name of a dimension or metric to sort the
- * resulting report on, optionally prefixed with "+" to sort ascending or "-" to
- * sort descending. If no prefix is specified, the column is sorted ascending.
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param string metric Numeric columns to include in the report.
- * @opt_param int maxResults The maximum number of rows of report data to
- * return.
- * @opt_param string filter Filters to be run on the report.
- * @opt_param string currency Optional currency to use when reporting on
- * monetary metrics. Defaults to the account's currency if not set.
- * @opt_param int startIndex Index of the first row of report data to return.
- * @opt_param bool useTimezoneReporting Whether the report should be generated
- * in the AdSense account's local timezone. If false default PST/PDT timezone
- * will be used.
- * @opt_param string dimension Dimensions to base the report on.
- * @return Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse
- */
- public function generate($accountId, $startDate, $endDate, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse");
- }
-}
-
-/**
- * The "saved" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $saved = $adsenseService->saved;
- *
- */
-class Postman_Google_Service_AdSense_AccountsReportsSaved_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an AdSense report based on the saved report ID sent in the query
- * parameters. (saved.generate)
- *
- * @param string $accountId Account to which the saved reports belong.
- * @param string $savedReportId The saved report to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param int startIndex Index of the first row of report data to return.
- * @opt_param int maxResults The maximum number of rows of report data to
- * return.
- * @return Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse
- */
- public function generate($accountId, $savedReportId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse");
- }
-
- /**
- * List all saved reports in the specified AdSense account.
- * (saved.listAccountsReportsSaved)
- *
- * @param string $accountId Account to which the saved reports belong.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through saved
- * reports. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of saved reports to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_SavedReports
- */
- public function listAccountsReportsSaved($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_SavedReports");
- }
-}
-/**
- * The "savedadstyles" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $savedadstyles = $adsenseService->savedadstyles;
- *
- */
-class Postman_Google_Service_AdSense_AccountsSavedadstyles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List a specific saved ad style for the specified account. (savedadstyles.get)
- *
- * @param string $accountId Account for which to get the saved ad style.
- * @param string $savedAdStyleId Saved ad style to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_SavedAdStyle
- */
- public function get($accountId, $savedAdStyleId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'savedAdStyleId' => $savedAdStyleId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_SavedAdStyle");
- }
-
- /**
- * List all saved ad styles in the specified account.
- * (savedadstyles.listAccountsSavedadstyles)
- *
- * @param string $accountId Account for which to list saved ad styles.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through saved
- * ad styles. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of saved ad styles to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_SavedAdStyles
- */
- public function listAccountsSavedadstyles($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_SavedAdStyles");
- }
-}
-/**
- * The "urlchannels" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $urlchannels = $adsenseService->urlchannels;
- *
- */
-class Postman_Google_Service_AdSense_AccountsUrlchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all URL channels in the specified ad client for the specified account.
- * (urlchannels.listAccountsUrlchannels)
- *
- * @param string $accountId Account to which the ad client belongs.
- * @param string $adClientId Ad client for which to list URL channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through URL
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of URL channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_UrlChannels
- */
- public function listAccountsUrlchannels($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_UrlChannels");
- }
-}
-
-/**
- * The "adclients" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $adclients = $adsenseService->adclients;
- *
- */
-class Postman_Google_Service_AdSense_Adclients_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all ad clients in this AdSense account. (adclients.listAdclients)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through ad
- * clients. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of ad clients to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSense_AdClients
- */
- public function listAdclients($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_AdClients");
- }
-}
-
-/**
- * The "adunits" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $adunits = $adsenseService->adunits;
- *
- */
-class Postman_Google_Service_AdSense_Adunits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the specified ad unit in the specified ad client. (adunits.get)
- *
- * @param string $adClientId Ad client for which to get the ad unit.
- * @param string $adUnitId Ad unit to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_AdUnit
- */
- public function get($adClientId, $adUnitId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_AdUnit");
- }
-
- /**
- * Get ad code for the specified ad unit. (adunits.getAdCode)
- *
- * @param string $adClientId Ad client with contains the ad unit.
- * @param string $adUnitId Ad unit to get the code for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_AdCode
- */
- public function getAdCode($adClientId, $adUnitId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('getAdCode', array($params), "Postman_Google_Service_AdSense_AdCode");
- }
-
- /**
- * List all ad units in the specified ad client for this AdSense account.
- * (adunits.listAdunits)
- *
- * @param string $adClientId Ad client for which to list ad units.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeInactive Whether to include inactive ad units.
- * Default: true.
- * @opt_param string pageToken A continuation token, used to page through ad
- * units. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of ad units to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSense_AdUnits
- */
- public function listAdunits($adClientId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_AdUnits");
- }
-}
-
-/**
- * The "customchannels" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $customchannels = $adsenseService->customchannels;
- *
- */
-class Postman_Google_Service_AdSense_AdunitsCustomchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all custom channels which the specified ad unit belongs to.
- * (customchannels.listAdunitsCustomchannels)
- *
- * @param string $adClientId Ad client which contains the ad unit.
- * @param string $adUnitId Ad unit for which to list custom channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through custom
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of custom channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_CustomChannels
- */
- public function listAdunitsCustomchannels($adClientId, $adUnitId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_CustomChannels");
- }
-}
-
-/**
- * The "alerts" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $alerts = $adsenseService->alerts;
- *
- */
-class Postman_Google_Service_AdSense_Alerts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Dismiss (delete) the specified alert from the publisher's AdSense account.
- * (alerts.delete)
- *
- * @param string $alertId Alert to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($alertId, $optParams = array())
- {
- $params = array('alertId' => $alertId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * List the alerts for this AdSense account. (alerts.listAlerts)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale The locale to use for translating alert messages.
- * The account locale will be used if this is not supplied. The AdSense default
- * (English) will be used if the supplied locale is invalid or unsupported.
- * @return Postman_Google_Service_AdSense_Alerts
- */
- public function listAlerts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Alerts");
- }
-}
-
-/**
- * The "customchannels" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $customchannels = $adsenseService->customchannels;
- *
- */
-class Postman_Google_Service_AdSense_Customchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get the specified custom channel from the specified ad client.
- * (customchannels.get)
- *
- * @param string $adClientId Ad client which contains the custom channel.
- * @param string $customChannelId Custom channel to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_CustomChannel
- */
- public function get($adClientId, $customChannelId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_CustomChannel");
- }
-
- /**
- * List all custom channels in the specified ad client for this AdSense account.
- * (customchannels.listCustomchannels)
- *
- * @param string $adClientId Ad client for which to list custom channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through custom
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of custom channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_CustomChannels
- */
- public function listCustomchannels($adClientId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_CustomChannels");
- }
-}
-
-/**
- * The "adunits" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $adunits = $adsenseService->adunits;
- *
- */
-class Postman_Google_Service_AdSense_CustomchannelsAdunits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all ad units in the specified custom channel.
- * (adunits.listCustomchannelsAdunits)
- *
- * @param string $adClientId Ad client which contains the custom channel.
- * @param string $customChannelId Custom channel for which to list ad units.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeInactive Whether to include inactive ad units.
- * Default: true.
- * @opt_param string pageToken A continuation token, used to page through ad
- * units. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of ad units to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSense_AdUnits
- */
- public function listCustomchannelsAdunits($adClientId, $customChannelId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_AdUnits");
- }
-}
-
-/**
- * The "metadata" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $metadata = $adsenseService->metadata;
- *
- */
-class Postman_Google_Service_AdSense_Metadata_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "dimensions" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $dimensions = $adsenseService->dimensions;
- *
- */
-class Postman_Google_Service_AdSense_MetadataDimensions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the metadata for the dimensions available to this AdSense account.
- * (dimensions.listMetadataDimensions)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_Metadata
- */
- public function listMetadataDimensions($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Metadata");
- }
-}
-/**
- * The "metrics" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $metrics = $adsenseService->metrics;
- *
- */
-class Postman_Google_Service_AdSense_MetadataMetrics_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the metadata for the metrics available to this AdSense account.
- * (metrics.listMetadataMetrics)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_Metadata
- */
- public function listMetadataMetrics($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Metadata");
- }
-}
-
-/**
- * The "payments" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $payments = $adsenseService->payments;
- *
- */
-class Postman_Google_Service_AdSense_Payments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the payments for this AdSense account. (payments.listPayments)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_Payments
- */
- public function listPayments($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_Payments");
- }
-}
-
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $reports = $adsenseService->reports;
- *
- */
-class Postman_Google_Service_AdSense_Reports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an AdSense report based on the report request sent in the query
- * parameters. Returns the result as JSON; to retrieve output in CSV format
- * specify "alt=csv" as a query parameter. (reports.generate)
- *
- * @param string $startDate Start of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param string $endDate End of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort The name of a dimension or metric to sort the
- * resulting report on, optionally prefixed with "+" to sort ascending or "-" to
- * sort descending. If no prefix is specified, the column is sorted ascending.
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param string metric Numeric columns to include in the report.
- * @opt_param int maxResults The maximum number of rows of report data to
- * return.
- * @opt_param string filter Filters to be run on the report.
- * @opt_param string currency Optional currency to use when reporting on
- * monetary metrics. Defaults to the account's currency if not set.
- * @opt_param int startIndex Index of the first row of report data to return.
- * @opt_param bool useTimezoneReporting Whether the report should be generated
- * in the AdSense account's local timezone. If false default PST/PDT timezone
- * will be used.
- * @opt_param string dimension Dimensions to base the report on.
- * @opt_param string accountId Accounts upon which to report.
- * @return Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse
- */
- public function generate($startDate, $endDate, $optParams = array())
- {
- $params = array('startDate' => $startDate, 'endDate' => $endDate);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse");
- }
-}
-
-/**
- * The "saved" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $saved = $adsenseService->saved;
- *
- */
-class Postman_Google_Service_AdSense_ReportsSaved_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an AdSense report based on the saved report ID sent in the query
- * parameters. (saved.generate)
- *
- * @param string $savedReportId The saved report to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param int startIndex Index of the first row of report data to return.
- * @opt_param int maxResults The maximum number of rows of report data to
- * return.
- * @return Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse
- */
- public function generate($savedReportId, $optParams = array())
- {
- $params = array('savedReportId' => $savedReportId);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse");
- }
-
- /**
- * List all saved reports in this AdSense account. (saved.listReportsSaved)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through saved
- * reports. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of saved reports to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_SavedReports
- */
- public function listReportsSaved($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_SavedReports");
- }
-}
-
-/**
- * The "savedadstyles" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $savedadstyles = $adsenseService->savedadstyles;
- *
- */
-class Postman_Google_Service_AdSense_Savedadstyles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get a specific saved ad style from the user's account. (savedadstyles.get)
- *
- * @param string $savedAdStyleId Saved ad style to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSense_SavedAdStyle
- */
- public function get($savedAdStyleId, $optParams = array())
- {
- $params = array('savedAdStyleId' => $savedAdStyleId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSense_SavedAdStyle");
- }
-
- /**
- * List all saved ad styles in the user's account.
- * (savedadstyles.listSavedadstyles)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through saved
- * ad styles. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of saved ad styles to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_SavedAdStyles
- */
- public function listSavedadstyles($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_SavedAdStyles");
- }
-}
-
-/**
- * The "urlchannels" collection of methods.
- * Typical usage is:
- *
- * $adsenseService = new Postman_Google_Service_AdSense(...);
- * $urlchannels = $adsenseService->urlchannels;
- *
- */
-class Postman_Google_Service_AdSense_Urlchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all URL channels in the specified ad client for this AdSense account.
- * (urlchannels.listUrlchannels)
- *
- * @param string $adClientId Ad client for which to list URL channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through URL
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param int maxResults The maximum number of URL channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSense_UrlChannels
- */
- public function listUrlchannels($adClientId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSense_UrlChannels");
- }
-}
-
-
-
-
-class Postman_Google_Service_AdSense_Account extends Postman_Google_Collection
-{
- protected $collection_key = 'subAccounts';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
- public $premium;
- protected $subAccountsType = 'Postman_Google_Service_AdSense_Account';
- protected $subAccountsDataType = 'array';
- public $timezone;
-
-
- 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 setPremium($premium)
- {
- $this->premium = $premium;
- }
- public function getPremium()
- {
- return $this->premium;
- }
- public function setSubAccounts($subAccounts)
- {
- $this->subAccounts = $subAccounts;
- }
- public function getSubAccounts()
- {
- return $this->subAccounts;
- }
- public function setTimezone($timezone)
- {
- $this->timezone = $timezone;
- }
- public function getTimezone()
- {
- return $this->timezone;
- }
-}
-
-class Postman_Google_Service_AdSense_Accounts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_Account';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSense_AdClient extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $arcOptIn;
- public $arcReviewMode;
- public $id;
- public $kind;
- public $productCode;
- public $supportsReporting;
-
-
- public function setArcOptIn($arcOptIn)
- {
- $this->arcOptIn = $arcOptIn;
- }
- public function getArcOptIn()
- {
- return $this->arcOptIn;
- }
- public function setArcReviewMode($arcReviewMode)
- {
- $this->arcReviewMode = $arcReviewMode;
- }
- public function getArcReviewMode()
- {
- return $this->arcReviewMode;
- }
- 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 setProductCode($productCode)
- {
- $this->productCode = $productCode;
- }
- public function getProductCode()
- {
- return $this->productCode;
- }
- public function setSupportsReporting($supportsReporting)
- {
- $this->supportsReporting = $supportsReporting;
- }
- public function getSupportsReporting()
- {
- return $this->supportsReporting;
- }
-}
-
-class Postman_Google_Service_AdSense_AdClients extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_AdClient';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSense_AdCode extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adCode;
- public $kind;
-
-
- public function setAdCode($adCode)
- {
- $this->adCode = $adCode;
- }
- public function getAdCode()
- {
- return $this->adCode;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSense_AdStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $colorsType = 'Postman_Google_Service_AdSense_AdStyleColors';
- protected $colorsDataType = '';
- public $corners;
- protected $fontType = 'Postman_Google_Service_AdSense_AdStyleFont';
- protected $fontDataType = '';
- public $kind;
-
-
- public function setColors(Postman_Google_Service_AdSense_AdStyleColors $colors)
- {
- $this->colors = $colors;
- }
- public function getColors()
- {
- return $this->colors;
- }
- public function setCorners($corners)
- {
- $this->corners = $corners;
- }
- public function getCorners()
- {
- return $this->corners;
- }
- public function setFont(Postman_Google_Service_AdSense_AdStyleFont $font)
- {
- $this->font = $font;
- }
- public function getFont()
- {
- return $this->font;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSense_AdStyleColors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $background;
- public $border;
- public $text;
- public $title;
- public $url;
-
-
- public function setBackground($background)
- {
- $this->background = $background;
- }
- public function getBackground()
- {
- return $this->background;
- }
- public function setBorder($border)
- {
- $this->border = $border;
- }
- public function getBorder()
- {
- return $this->border;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_AdSense_AdStyleFont extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $family;
- public $size;
-
-
- public function setFamily($family)
- {
- $this->family = $family;
- }
- public function getFamily()
- {
- return $this->family;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
-}
-
-class Postman_Google_Service_AdSense_AdUnit extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $contentAdsSettingsType = 'Postman_Google_Service_AdSense_AdUnitContentAdsSettings';
- protected $contentAdsSettingsDataType = '';
- protected $customStyleType = 'Postman_Google_Service_AdSense_AdStyle';
- protected $customStyleDataType = '';
- protected $feedAdsSettingsType = 'Postman_Google_Service_AdSense_AdUnitFeedAdsSettings';
- protected $feedAdsSettingsDataType = '';
- public $id;
- public $kind;
- protected $mobileContentAdsSettingsType = 'Postman_Google_Service_AdSense_AdUnitMobileContentAdsSettings';
- protected $mobileContentAdsSettingsDataType = '';
- public $name;
- public $savedStyleId;
- public $status;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setContentAdsSettings(Postman_Google_Service_AdSense_AdUnitContentAdsSettings $contentAdsSettings)
- {
- $this->contentAdsSettings = $contentAdsSettings;
- }
- public function getContentAdsSettings()
- {
- return $this->contentAdsSettings;
- }
- public function setCustomStyle(Postman_Google_Service_AdSense_AdStyle $customStyle)
- {
- $this->customStyle = $customStyle;
- }
- public function getCustomStyle()
- {
- return $this->customStyle;
- }
- public function setFeedAdsSettings(Postman_Google_Service_AdSense_AdUnitFeedAdsSettings $feedAdsSettings)
- {
- $this->feedAdsSettings = $feedAdsSettings;
- }
- public function getFeedAdsSettings()
- {
- return $this->feedAdsSettings;
- }
- 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 setMobileContentAdsSettings(Postman_Google_Service_AdSense_AdUnitMobileContentAdsSettings $mobileContentAdsSettings)
- {
- $this->mobileContentAdsSettings = $mobileContentAdsSettings;
- }
- public function getMobileContentAdsSettings()
- {
- return $this->mobileContentAdsSettings;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setSavedStyleId($savedStyleId)
- {
- $this->savedStyleId = $savedStyleId;
- }
- public function getSavedStyleId()
- {
- return $this->savedStyleId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_AdSense_AdUnitContentAdsSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $backupOptionType = 'Postman_Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption';
- protected $backupOptionDataType = '';
- public $size;
- public $type;
-
-
- public function setBackupOption(Postman_Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption $backupOption)
- {
- $this->backupOption = $backupOption;
- }
- public function getBackupOption()
- {
- return $this->backupOption;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $type;
- public $url;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_AdSense_AdUnitFeedAdsSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adPosition;
- public $frequency;
- public $minimumWordCount;
- public $type;
-
-
- public function setAdPosition($adPosition)
- {
- $this->adPosition = $adPosition;
- }
- public function getAdPosition()
- {
- return $this->adPosition;
- }
- public function setFrequency($frequency)
- {
- $this->frequency = $frequency;
- }
- public function getFrequency()
- {
- return $this->frequency;
- }
- public function setMinimumWordCount($minimumWordCount)
- {
- $this->minimumWordCount = $minimumWordCount;
- }
- public function getMinimumWordCount()
- {
- return $this->minimumWordCount;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSense_AdUnitMobileContentAdsSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $markupLanguage;
- public $scriptingLanguage;
- public $size;
- public $type;
-
-
- public function setMarkupLanguage($markupLanguage)
- {
- $this->markupLanguage = $markupLanguage;
- }
- public function getMarkupLanguage()
- {
- return $this->markupLanguage;
- }
- public function setScriptingLanguage($scriptingLanguage)
- {
- $this->scriptingLanguage = $scriptingLanguage;
- }
- public function getScriptingLanguage()
- {
- return $this->scriptingLanguage;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSense_AdUnits extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_AdUnit';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSense_AdsenseReportsGenerateResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $averages;
- public $endDate;
- protected $headersType = 'Postman_Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders';
- protected $headersDataType = 'array';
- public $kind;
- public $rows;
- public $startDate;
- public $totalMatchedRows;
- public $totals;
- public $warnings;
-
-
- public function setAverages($averages)
- {
- $this->averages = $averages;
- }
- public function getAverages()
- {
- return $this->averages;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setHeaders($headers)
- {
- $this->headers = $headers;
- }
- public function getHeaders()
- {
- return $this->headers;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setTotalMatchedRows($totalMatchedRows)
- {
- $this->totalMatchedRows = $totalMatchedRows;
- }
- public function getTotalMatchedRows()
- {
- return $this->totalMatchedRows;
- }
- public function setTotals($totals)
- {
- $this->totals = $totals;
- }
- public function getTotals()
- {
- return $this->totals;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currency;
- public $name;
- public $type;
-
-
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- }
- public function getCurrency()
- {
- return $this->currency;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSense_Alert extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $isDismissible;
- public $kind;
- public $message;
- public $severity;
- public $type;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsDismissible($isDismissible)
- {
- $this->isDismissible = $isDismissible;
- }
- public function getIsDismissible()
- {
- return $this->isDismissible;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setSeverity($severity)
- {
- $this->severity = $severity;
- }
- public function getSeverity()
- {
- return $this->severity;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSense_Alerts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdSense_Alert';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSense_CustomChannel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $id;
- public $kind;
- public $name;
- protected $targetingInfoType = 'Postman_Google_Service_AdSense_CustomChannelTargetingInfo';
- protected $targetingInfoDataType = '';
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- 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 setTargetingInfo(Postman_Google_Service_AdSense_CustomChannelTargetingInfo $targetingInfo)
- {
- $this->targetingInfo = $targetingInfo;
- }
- public function getTargetingInfo()
- {
- return $this->targetingInfo;
- }
-}
-
-class Postman_Google_Service_AdSense_CustomChannelTargetingInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adsAppearOn;
- public $description;
- public $location;
- public $siteLanguage;
-
-
- public function setAdsAppearOn($adsAppearOn)
- {
- $this->adsAppearOn = $adsAppearOn;
- }
- public function getAdsAppearOn()
- {
- return $this->adsAppearOn;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setSiteLanguage($siteLanguage)
- {
- $this->siteLanguage = $siteLanguage;
- }
- public function getSiteLanguage()
- {
- return $this->siteLanguage;
- }
-}
-
-class Postman_Google_Service_AdSense_CustomChannels extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_CustomChannel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSense_Metadata extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdSense_ReportingMetadataEntry';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSense_Payment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $paymentAmount;
- public $paymentAmountCurrencyCode;
- public $paymentDate;
-
-
- 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 setPaymentAmount($paymentAmount)
- {
- $this->paymentAmount = $paymentAmount;
- }
- public function getPaymentAmount()
- {
- return $this->paymentAmount;
- }
- public function setPaymentAmountCurrencyCode($paymentAmountCurrencyCode)
- {
- $this->paymentAmountCurrencyCode = $paymentAmountCurrencyCode;
- }
- public function getPaymentAmountCurrencyCode()
- {
- return $this->paymentAmountCurrencyCode;
- }
- public function setPaymentDate($paymentDate)
- {
- $this->paymentDate = $paymentDate;
- }
- public function getPaymentDate()
- {
- return $this->paymentDate;
- }
-}
-
-class Postman_Google_Service_AdSense_Payments extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AdSense_Payment';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSense_ReportingMetadataEntry extends Postman_Google_Collection
-{
- protected $collection_key = 'supportedProducts';
- protected $internal_gapi_mappings = array(
- );
- public $compatibleDimensions;
- public $compatibleMetrics;
- public $id;
- public $kind;
- public $requiredDimensions;
- public $requiredMetrics;
- public $supportedProducts;
-
-
- public function setCompatibleDimensions($compatibleDimensions)
- {
- $this->compatibleDimensions = $compatibleDimensions;
- }
- public function getCompatibleDimensions()
- {
- return $this->compatibleDimensions;
- }
- public function setCompatibleMetrics($compatibleMetrics)
- {
- $this->compatibleMetrics = $compatibleMetrics;
- }
- public function getCompatibleMetrics()
- {
- return $this->compatibleMetrics;
- }
- 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 setRequiredDimensions($requiredDimensions)
- {
- $this->requiredDimensions = $requiredDimensions;
- }
- public function getRequiredDimensions()
- {
- return $this->requiredDimensions;
- }
- public function setRequiredMetrics($requiredMetrics)
- {
- $this->requiredMetrics = $requiredMetrics;
- }
- public function getRequiredMetrics()
- {
- return $this->requiredMetrics;
- }
- public function setSupportedProducts($supportedProducts)
- {
- $this->supportedProducts = $supportedProducts;
- }
- public function getSupportedProducts()
- {
- return $this->supportedProducts;
- }
-}
-
-class Postman_Google_Service_AdSense_SavedAdStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $adStyleType = 'Postman_Google_Service_AdSense_AdStyle';
- protected $adStyleDataType = '';
- public $id;
- public $kind;
- public $name;
-
-
- public function setAdStyle(Postman_Google_Service_AdSense_AdStyle $adStyle)
- {
- $this->adStyle = $adStyle;
- }
- public function getAdStyle()
- {
- return $this->adStyle;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_AdSense_SavedAdStyles extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_SavedAdStyle';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSense_SavedReport extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_AdSense_SavedReports extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_SavedReport';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSense_UrlChannel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $urlPattern;
-
-
- 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 setUrlPattern($urlPattern)
- {
- $this->urlPattern = $urlPattern;
- }
- public function getUrlPattern()
- {
- return $this->urlPattern;
- }
-}
-
-class Postman_Google_Service_AdSense_UrlChannels extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSense_UrlChannel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdSenseHost.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdSenseHost.php
deleted file mode 100644
index decfb1f..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AdSenseHost.php
+++ /dev/null
@@ -1,2165 +0,0 @@
-
- * Gives AdSense Hosts access to report generation, ad code generation, and
- * publisher management capabilities.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_AdSenseHost extends Postman_Google_Service -{ - /** View and manage your AdSense host data and associated accounts. */ - const ADSENSEHOST = - "https://www.googleapis.com/auth/adsensehost"; - - public $accounts; - public $accounts_adclients; - public $accounts_adunits; - public $accounts_reports; - public $adclients; - public $associationsessions; - public $customchannels; - public $reports; - public $urlchannels; - - - /** - * Constructs the internal representation of the AdSenseHost service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'adsensehost/v4.1/'; - $this->version = 'v4.1'; - $this->serviceName = 'adsensehost'; - - $this->accounts = new Postman_Google_Service_AdSenseHost_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterAdClientId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_adclients = new Postman_Google_Service_AdSenseHost_AccountsAdclients_Resource( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_adunits = new Postman_Google_Service_AdSenseHost_AccountsAdunits_Resource( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdCode' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hostCustomChannelId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'insert' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports = new Postman_Google_Service_AdSenseHost_AccountsReports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->adclients = new Postman_Google_Service_AdSenseHost_Adclients_Resource( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'get' => array( - 'path' => 'adclients/{adClientId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->associationsessions = new Postman_Google_Service_AdSenseHost_Associationsessions_Resource( - $this, - $this->serviceName, - 'associationsessions', - array( - 'methods' => array( - 'start' => array( - 'path' => 'associationsessions/start', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productCode' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'websiteUrl' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'websiteLocale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userLocale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'verify' => array( - 'path' => 'associationsessions/verify', - 'httpMethod' => 'GET', - 'parameters' => array( - 'token' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->customchannels = new Postman_Google_Service_AdSenseHost_Customchannels_Resource( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports = new Postman_Google_Service_AdSenseHost_Reports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->urlchannels = new Postman_Google_Service_AdSenseHost_Urlchannels_Resource( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'adclients/{adClientId}/urlchannels/{urlChannelId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'adclients/{adClientId}/urlchannels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $accounts = $adsensehostService->accounts;
- *
- */
-class Postman_Google_Service_AdSenseHost_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get information about the selected associated AdSense account. (accounts.get)
- *
- * @param string $accountId Account to get information about.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_Account
- */
- public function get($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSenseHost_Account");
- }
-
- /**
- * List hosted accounts associated with this AdSense account by ad client id.
- * (accounts.listAccounts)
- *
- * @param string $filterAdClientId Ad clients to list accounts for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_Accounts
- */
- public function listAccounts($filterAdClientId, $optParams = array())
- {
- $params = array('filterAdClientId' => $filterAdClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSenseHost_Accounts");
- }
-}
-
-/**
- * The "adclients" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $adclients = $adsensehostService->adclients;
- *
- */
-class Postman_Google_Service_AdSenseHost_AccountsAdclients_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get information about one of the ad clients in the specified publisher's
- * AdSense account. (adclients.get)
- *
- * @param string $accountId Account which contains the ad client.
- * @param string $adClientId Ad client to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdClient
- */
- public function get($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSenseHost_AdClient");
- }
-
- /**
- * List all hosted ad clients in the specified hosted account.
- * (adclients.listAccountsAdclients)
- *
- * @param string $accountId Account for which to list ad clients.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through ad
- * clients. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of ad clients to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSenseHost_AdClients
- */
- public function listAccountsAdclients($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSenseHost_AdClients");
- }
-}
-/**
- * The "adunits" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $adunits = $adsensehostService->adunits;
- *
- */
-class Postman_Google_Service_AdSenseHost_AccountsAdunits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete the specified ad unit from the specified publisher AdSense account.
- * (adunits.delete)
- *
- * @param string $accountId Account which contains the ad unit.
- * @param string $adClientId Ad client for which to get ad unit.
- * @param string $adUnitId Ad unit to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdUnit
- */
- public function delete($accountId, $adClientId, $adUnitId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_AdSenseHost_AdUnit");
- }
-
- /**
- * Get the specified host ad unit in this AdSense account. (adunits.get)
- *
- * @param string $accountId Account which contains the ad unit.
- * @param string $adClientId Ad client for which to get ad unit.
- * @param string $adUnitId Ad unit to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdUnit
- */
- public function get($accountId, $adClientId, $adUnitId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSenseHost_AdUnit");
- }
-
- /**
- * Get ad code for the specified ad unit, attaching the specified host custom
- * channels. (adunits.getAdCode)
- *
- * @param string $accountId Account which contains the ad client.
- * @param string $adClientId Ad client with contains the ad unit.
- * @param string $adUnitId Ad unit to get the code for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string hostCustomChannelId Host custom channel to attach to the ad
- * code.
- * @return Postman_Google_Service_AdSenseHost_AdCode
- */
- public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
- $params = array_merge($params, $optParams);
- return $this->call('getAdCode', array($params), "Postman_Google_Service_AdSenseHost_AdCode");
- }
-
- /**
- * Insert the supplied ad unit into the specified publisher AdSense account.
- * (adunits.insert)
- *
- * @param string $accountId Account which will contain the ad unit.
- * @param string $adClientId Ad client into which to insert the ad unit.
- * @param Postman_Google_AdUnit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdUnit
- */
- public function insert($accountId, $adClientId, Postman_Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AdSenseHost_AdUnit");
- }
-
- /**
- * List all ad units in the specified publisher's AdSense account.
- * (adunits.listAccountsAdunits)
- *
- * @param string $accountId Account which contains the ad client.
- * @param string $adClientId Ad client for which to list ad units.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeInactive Whether to include inactive ad units.
- * Default: true.
- * @opt_param string pageToken A continuation token, used to page through ad
- * units. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of ad units to include in the
- * response, used for paging.
- * @return Postman_Google_Service_AdSenseHost_AdUnits
- */
- public function listAccountsAdunits($accountId, $adClientId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSenseHost_AdUnits");
- }
-
- /**
- * Update the supplied ad unit in the specified publisher AdSense account. This
- * method supports patch semantics. (adunits.patch)
- *
- * @param string $accountId Account which contains the ad client.
- * @param string $adClientId Ad client which contains the ad unit.
- * @param string $adUnitId Ad unit to get.
- * @param Postman_Google_AdUnit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdUnit
- */
- public function patch($accountId, $adClientId, $adUnitId, Postman_Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AdSenseHost_AdUnit");
- }
-
- /**
- * Update the supplied ad unit in the specified publisher AdSense account.
- * (adunits.update)
- *
- * @param string $accountId Account which contains the ad client.
- * @param string $adClientId Ad client which contains the ad unit.
- * @param Postman_Google_AdUnit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdUnit
- */
- public function update($accountId, $adClientId, Postman_Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AdSenseHost_AdUnit");
- }
-}
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $reports = $adsensehostService->reports;
- *
- */
-class Postman_Google_Service_AdSenseHost_AccountsReports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an AdSense report based on the report request sent in the query
- * parameters. Returns the result as JSON; to retrieve output in CSV format
- * specify "alt=csv" as a query parameter. (reports.generate)
- *
- * @param string $accountId Hosted account upon which to report.
- * @param string $startDate Start of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param string $endDate End of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort The name of a dimension or metric to sort the
- * resulting report on, optionally prefixed with "+" to sort ascending or "-" to
- * sort descending. If no prefix is specified, the column is sorted ascending.
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param string metric Numeric columns to include in the report.
- * @opt_param string maxResults The maximum number of rows of report data to
- * return.
- * @opt_param string filter Filters to be run on the report.
- * @opt_param string startIndex Index of the first row of report data to return.
- * @opt_param string dimension Dimensions to base the report on.
- * @return Postman_Google_Service_AdSenseHost_Report
- */
- public function generate($accountId, $startDate, $endDate, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdSenseHost_Report");
- }
-}
-
-/**
- * The "adclients" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $adclients = $adsensehostService->adclients;
- *
- */
-class Postman_Google_Service_AdSenseHost_Adclients_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get information about one of the ad clients in the Host AdSense account.
- * (adclients.get)
- *
- * @param string $adClientId Ad client to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AdClient
- */
- public function get($adClientId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSenseHost_AdClient");
- }
-
- /**
- * List all host ad clients in this AdSense account. (adclients.listAdclients)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through ad
- * clients. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of ad clients to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSenseHost_AdClients
- */
- public function listAdclients($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSenseHost_AdClients");
- }
-}
-
-/**
- * The "associationsessions" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $associationsessions = $adsensehostService->associationsessions;
- *
- */
-class Postman_Google_Service_AdSenseHost_Associationsessions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Create an association session for initiating an association with an AdSense
- * user. (associationsessions.start)
- *
- * @param string $productCode Products to associate with the user.
- * @param string $websiteUrl The URL of the user's hosted website.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string websiteLocale The locale of the user's hosted website.
- * @opt_param string userLocale The preferred locale of the user.
- * @return Postman_Google_Service_AdSenseHost_AssociationSession
- */
- public function start($productCode, $websiteUrl, $optParams = array())
- {
- $params = array('productCode' => $productCode, 'websiteUrl' => $websiteUrl);
- $params = array_merge($params, $optParams);
- return $this->call('start', array($params), "Postman_Google_Service_AdSenseHost_AssociationSession");
- }
-
- /**
- * Verify an association session after the association callback returns from
- * AdSense signup. (associationsessions.verify)
- *
- * @param string $token The token returned to the association callback URL.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_AssociationSession
- */
- public function verify($token, $optParams = array())
- {
- $params = array('token' => $token);
- $params = array_merge($params, $optParams);
- return $this->call('verify', array($params), "Postman_Google_Service_AdSenseHost_AssociationSession");
- }
-}
-
-/**
- * The "customchannels" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $customchannels = $adsensehostService->customchannels;
- *
- */
-class Postman_Google_Service_AdSenseHost_Customchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a specific custom channel from the host AdSense account.
- * (customchannels.delete)
- *
- * @param string $adClientId Ad client from which to delete the custom channel.
- * @param string $customChannelId Custom channel to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_CustomChannel
- */
- public function delete($adClientId, $customChannelId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_AdSenseHost_CustomChannel");
- }
-
- /**
- * Get a specific custom channel from the host AdSense account.
- * (customchannels.get)
- *
- * @param string $adClientId Ad client from which to get the custom channel.
- * @param string $customChannelId Custom channel to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_CustomChannel
- */
- public function get($adClientId, $customChannelId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AdSenseHost_CustomChannel");
- }
-
- /**
- * Add a new custom channel to the host AdSense account. (customchannels.insert)
- *
- * @param string $adClientId Ad client to which the new custom channel will be
- * added.
- * @param Postman_Google_CustomChannel $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_CustomChannel
- */
- public function insert($adClientId, Postman_Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AdSenseHost_CustomChannel");
- }
-
- /**
- * List all host custom channels in this AdSense account.
- * (customchannels.listCustomchannels)
- *
- * @param string $adClientId Ad client for which to list custom channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through custom
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of custom channels to include
- * in the response, used for paging.
- * @return Postman_Google_Service_AdSenseHost_CustomChannels
- */
- public function listCustomchannels($adClientId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSenseHost_CustomChannels");
- }
-
- /**
- * Update a custom channel in the host AdSense account. This method supports
- * patch semantics. (customchannels.patch)
- *
- * @param string $adClientId Ad client in which the custom channel will be
- * updated.
- * @param string $customChannelId Custom channel to get.
- * @param Postman_Google_CustomChannel $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_CustomChannel
- */
- public function patch($adClientId, $customChannelId, Postman_Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AdSenseHost_CustomChannel");
- }
-
- /**
- * Update a custom channel in the host AdSense account. (customchannels.update)
- *
- * @param string $adClientId Ad client in which the custom channel will be
- * updated.
- * @param Postman_Google_CustomChannel $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_CustomChannel
- */
- public function update($adClientId, Postman_Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AdSenseHost_CustomChannel");
- }
-}
-
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $reports = $adsensehostService->reports;
- *
- */
-class Postman_Google_Service_AdSenseHost_Reports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate an AdSense report based on the report request sent in the query
- * parameters. Returns the result as JSON; to retrieve output in CSV format
- * specify "alt=csv" as a query parameter. (reports.generate)
- *
- * @param string $startDate Start of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param string $endDate End of the date range to report on in "YYYY-MM-DD"
- * format, inclusive.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort The name of a dimension or metric to sort the
- * resulting report on, optionally prefixed with "+" to sort ascending or "-" to
- * sort descending. If no prefix is specified, the column is sorted ascending.
- * @opt_param string locale Optional locale to use for translating report output
- * to a local language. Defaults to "en_US" if not specified.
- * @opt_param string metric Numeric columns to include in the report.
- * @opt_param string maxResults The maximum number of rows of report data to
- * return.
- * @opt_param string filter Filters to be run on the report.
- * @opt_param string startIndex Index of the first row of report data to return.
- * @opt_param string dimension Dimensions to base the report on.
- * @return Postman_Google_Service_AdSenseHost_Report
- */
- public function generate($startDate, $endDate, $optParams = array())
- {
- $params = array('startDate' => $startDate, 'endDate' => $endDate);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_AdSenseHost_Report");
- }
-}
-
-/**
- * The "urlchannels" collection of methods.
- * Typical usage is:
- *
- * $adsensehostService = new Postman_Google_Service_AdSenseHost(...);
- * $urlchannels = $adsensehostService->urlchannels;
- *
- */
-class Postman_Google_Service_AdSenseHost_Urlchannels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a URL channel from the host AdSense account. (urlchannels.delete)
- *
- * @param string $adClientId Ad client from which to delete the URL channel.
- * @param string $urlChannelId URL channel to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_UrlChannel
- */
- public function delete($adClientId, $urlChannelId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'urlChannelId' => $urlChannelId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_AdSenseHost_UrlChannel");
- }
-
- /**
- * Add a new URL channel to the host AdSense account. (urlchannels.insert)
- *
- * @param string $adClientId Ad client to which the new URL channel will be
- * added.
- * @param Postman_Google_UrlChannel $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AdSenseHost_UrlChannel
- */
- public function insert($adClientId, Postman_Google_Service_AdSenseHost_UrlChannel $postBody, $optParams = array())
- {
- $params = array('adClientId' => $adClientId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AdSenseHost_UrlChannel");
- }
-
- /**
- * List all host URL channels in the host AdSense account.
- * (urlchannels.listUrlchannels)
- *
- * @param string $adClientId Ad client for which to list URL channels.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A continuation token, used to page through URL
- * channels. To retrieve the next page, set this parameter to the value of
- * "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of URL channels to include in
- * the response, used for paging.
- * @return Postman_Google_Service_AdSenseHost_UrlChannels
- */
- public function listUrlchannels($adClientId, $optParams = array())
- {
- $params = array('adClientId' => $adClientId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AdSenseHost_UrlChannels");
- }
-}
-
-
-
-
-class Postman_Google_Service_AdSenseHost_Account extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
- public $status;
-
-
- 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 setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_Accounts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSenseHost_Account';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdClient extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $arcOptIn;
- public $id;
- public $kind;
- public $productCode;
- public $supportsReporting;
-
-
- public function setArcOptIn($arcOptIn)
- {
- $this->arcOptIn = $arcOptIn;
- }
- public function getArcOptIn()
- {
- return $this->arcOptIn;
- }
- 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 setProductCode($productCode)
- {
- $this->productCode = $productCode;
- }
- public function getProductCode()
- {
- return $this->productCode;
- }
- public function setSupportsReporting($supportsReporting)
- {
- $this->supportsReporting = $supportsReporting;
- }
- public function getSupportsReporting()
- {
- return $this->supportsReporting;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdClients extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSenseHost_AdClient';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdCode extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adCode;
- public $kind;
-
-
- public function setAdCode($adCode)
- {
- $this->adCode = $adCode;
- }
- public function getAdCode()
- {
- return $this->adCode;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $colorsType = 'Postman_Google_Service_AdSenseHost_AdStyleColors';
- protected $colorsDataType = '';
- public $corners;
- protected $fontType = 'Postman_Google_Service_AdSenseHost_AdStyleFont';
- protected $fontDataType = '';
- public $kind;
-
-
- public function setColors(Postman_Google_Service_AdSenseHost_AdStyleColors $colors)
- {
- $this->colors = $colors;
- }
- public function getColors()
- {
- return $this->colors;
- }
- public function setCorners($corners)
- {
- $this->corners = $corners;
- }
- public function getCorners()
- {
- return $this->corners;
- }
- public function setFont(Postman_Google_Service_AdSenseHost_AdStyleFont $font)
- {
- $this->font = $font;
- }
- public function getFont()
- {
- return $this->font;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdStyleColors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $background;
- public $border;
- public $text;
- public $title;
- public $url;
-
-
- public function setBackground($background)
- {
- $this->background = $background;
- }
- public function getBackground()
- {
- return $this->background;
- }
- public function setBorder($border)
- {
- $this->border = $border;
- }
- public function getBorder()
- {
- return $this->border;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdStyleFont extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $family;
- public $size;
-
-
- public function setFamily($family)
- {
- $this->family = $family;
- }
- public function getFamily()
- {
- return $this->family;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdUnit extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $contentAdsSettingsType = 'Postman_Google_Service_AdSenseHost_AdUnitContentAdsSettings';
- protected $contentAdsSettingsDataType = '';
- protected $customStyleType = 'Postman_Google_Service_AdSenseHost_AdStyle';
- protected $customStyleDataType = '';
- public $id;
- public $kind;
- protected $mobileContentAdsSettingsType = 'Postman_Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings';
- protected $mobileContentAdsSettingsDataType = '';
- public $name;
- public $status;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setContentAdsSettings(Postman_Google_Service_AdSenseHost_AdUnitContentAdsSettings $contentAdsSettings)
- {
- $this->contentAdsSettings = $contentAdsSettings;
- }
- public function getContentAdsSettings()
- {
- return $this->contentAdsSettings;
- }
- public function setCustomStyle(Postman_Google_Service_AdSenseHost_AdStyle $customStyle)
- {
- $this->customStyle = $customStyle;
- }
- public function getCustomStyle()
- {
- return $this->customStyle;
- }
- 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 setMobileContentAdsSettings(Postman_Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings $mobileContentAdsSettings)
- {
- $this->mobileContentAdsSettings = $mobileContentAdsSettings;
- }
- public function getMobileContentAdsSettings()
- {
- return $this->mobileContentAdsSettings;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdUnitContentAdsSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $backupOptionType = 'Postman_Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption';
- protected $backupOptionDataType = '';
- public $size;
- public $type;
-
-
- public function setBackupOption(Postman_Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption $backupOption)
- {
- $this->backupOption = $backupOption;
- }
- public function getBackupOption()
- {
- return $this->backupOption;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $type;
- public $url;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $markupLanguage;
- public $scriptingLanguage;
- public $size;
- public $type;
-
-
- public function setMarkupLanguage($markupLanguage)
- {
- $this->markupLanguage = $markupLanguage;
- }
- public function getMarkupLanguage()
- {
- return $this->markupLanguage;
- }
- public function setScriptingLanguage($scriptingLanguage)
- {
- $this->scriptingLanguage = $scriptingLanguage;
- }
- public function getScriptingLanguage()
- {
- return $this->scriptingLanguage;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AdUnits extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSenseHost_AdUnit';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_AssociationSession extends Postman_Google_Collection
-{
- protected $collection_key = 'productCodes';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $id;
- public $kind;
- public $productCodes;
- public $redirectUrl;
- public $status;
- public $userLocale;
- public $websiteLocale;
- public $websiteUrl;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- 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 setProductCodes($productCodes)
- {
- $this->productCodes = $productCodes;
- }
- public function getProductCodes()
- {
- return $this->productCodes;
- }
- public function setRedirectUrl($redirectUrl)
- {
- $this->redirectUrl = $redirectUrl;
- }
- public function getRedirectUrl()
- {
- return $this->redirectUrl;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUserLocale($userLocale)
- {
- $this->userLocale = $userLocale;
- }
- public function getUserLocale()
- {
- return $this->userLocale;
- }
- public function setWebsiteLocale($websiteLocale)
- {
- $this->websiteLocale = $websiteLocale;
- }
- public function getWebsiteLocale()
- {
- return $this->websiteLocale;
- }
- public function setWebsiteUrl($websiteUrl)
- {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl()
- {
- return $this->websiteUrl;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_CustomChannel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $id;
- public $kind;
- public $name;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_CustomChannels extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSenseHost_CustomChannel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_Report extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $averages;
- protected $headersType = 'Postman_Google_Service_AdSenseHost_ReportHeaders';
- protected $headersDataType = 'array';
- public $kind;
- public $rows;
- public $totalMatchedRows;
- public $totals;
- public $warnings;
-
-
- public function setAverages($averages)
- {
- $this->averages = $averages;
- }
- public function getAverages()
- {
- return $this->averages;
- }
- public function setHeaders($headers)
- {
- $this->headers = $headers;
- }
- public function getHeaders()
- {
- return $this->headers;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setTotalMatchedRows($totalMatchedRows)
- {
- $this->totalMatchedRows = $totalMatchedRows;
- }
- public function getTotalMatchedRows()
- {
- return $this->totalMatchedRows;
- }
- public function setTotals($totals)
- {
- $this->totals = $totals;
- }
- public function getTotals()
- {
- return $this->totals;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_ReportHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currency;
- public $name;
- public $type;
-
-
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- }
- public function getCurrency()
- {
- return $this->currency;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_UrlChannel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $urlPattern;
-
-
- 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 setUrlPattern($urlPattern)
- {
- $this->urlPattern = $urlPattern;
- }
- public function getUrlPattern()
- {
- return $this->urlPattern;
- }
-}
-
-class Postman_Google_Service_AdSenseHost_UrlChannels extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_AdSenseHost_UrlChannel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Admin.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Admin.php
deleted file mode 100644
index e0e08e2..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Admin.php
+++ /dev/null
@@ -1,193 +0,0 @@
-
- * Email Migration API lets you migrate emails of users to Google backends.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Admin extends Postman_Google_Service -{ - /** Manage email messages of users on your domain. */ - const EMAIL_MIGRATION = - "https://www.googleapis.com/auth/email.migration"; - - public $mail; - - - /** - * Constructs the internal representation of the Admin service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'email/v2/users/'; - $this->version = 'email_migration_v2'; - $this->serviceName = 'admin'; - - $this->mail = new Postman_Google_Service_Admin_Mail_Resource( - $this, - $this->serviceName, - 'mail', - array( - 'methods' => array( - 'insert' => array( - 'path' => '{userKey}/mail', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "mail" collection of methods. - * Typical usage is: - *
- * $adminService = new Postman_Google_Service_Admin(...);
- * $mail = $adminService->mail;
- *
- */
-class Postman_Google_Service_Admin_Mail_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Insert Mail into Google's Gmail backends (mail.insert)
- *
- * @param string $userKey The email or immutable id of the user
- * @param Postman_Google_MailItem $postBody
- * @param array $optParams Optional parameters.
- */
- public function insert($userKey, Postman_Google_Service_Admin_MailItem $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params));
- }
-}
-
-
-
-
-class Postman_Google_Service_Admin_MailItem extends Postman_Google_Collection
-{
- protected $collection_key = 'labels';
- protected $internal_gapi_mappings = array(
- );
- public $isDeleted;
- public $isDraft;
- public $isInbox;
- public $isSent;
- public $isStarred;
- public $isTrash;
- public $isUnread;
- public $kind;
- public $labels;
-
-
- public function setIsDeleted($isDeleted)
- {
- $this->isDeleted = $isDeleted;
- }
- public function getIsDeleted()
- {
- return $this->isDeleted;
- }
- public function setIsDraft($isDraft)
- {
- $this->isDraft = $isDraft;
- }
- public function getIsDraft()
- {
- return $this->isDraft;
- }
- public function setIsInbox($isInbox)
- {
- $this->isInbox = $isInbox;
- }
- public function getIsInbox()
- {
- return $this->isInbox;
- }
- public function setIsSent($isSent)
- {
- $this->isSent = $isSent;
- }
- public function getIsSent()
- {
- return $this->isSent;
- }
- public function setIsStarred($isStarred)
- {
- $this->isStarred = $isStarred;
- }
- public function getIsStarred()
- {
- return $this->isStarred;
- }
- public function setIsTrash($isTrash)
- {
- $this->isTrash = $isTrash;
- }
- public function getIsTrash()
- {
- return $this->isTrash;
- }
- public function setIsUnread($isUnread)
- {
- $this->isUnread = $isUnread;
- }
- public function getIsUnread()
- {
- return $this->isUnread;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Analytics.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Analytics.php
deleted file mode 100644
index ec53e3b..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Analytics.php
+++ /dev/null
@@ -1,9447 +0,0 @@
-
- * View and manage your Google Analytics data
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Analytics extends Postman_Google_Service -{ - /** View and manage your Google Analytics data. */ - const ANALYTICS = - "https://www.googleapis.com/auth/analytics"; - /** Edit Google Analytics management entities. */ - const ANALYTICS_EDIT = - "https://www.googleapis.com/auth/analytics.edit"; - /** Manage Google Analytics Account users by email address. */ - const ANALYTICS_MANAGE_USERS = - "https://www.googleapis.com/auth/analytics.manage.users"; - /** View Google Analytics user permissions. */ - const ANALYTICS_MANAGE_USERS_READONLY = - "https://www.googleapis.com/auth/analytics.manage.users.readonly"; - /** Create a new Google Analytics account along with its default property and view. */ - const ANALYTICS_PROVISION = - "https://www.googleapis.com/auth/analytics.provision"; - /** View your Google Analytics data. */ - const ANALYTICS_READONLY = - "https://www.googleapis.com/auth/analytics.readonly"; - - public $data_ga; - public $data_mcf; - public $data_realtime; - public $management_accountSummaries; - public $management_accountUserLinks; - public $management_accounts; - public $management_customDataSources; - public $management_dailyUploads; - public $management_experiments; - public $management_filters; - public $management_goals; - public $management_profileFilterLinks; - public $management_profileUserLinks; - public $management_profiles; - public $management_segments; - public $management_unsampledReports; - public $management_uploads; - public $management_webPropertyAdWordsLinks; - public $management_webproperties; - public $management_webpropertyUserLinks; - public $metadata_columns; - public $provisioning; - - - /** - * Constructs the internal representation of the Analytics service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'analytics/v3/'; - $this->version = 'v3'; - $this->serviceName = 'analytics'; - - $this->data_ga = new Postman_Google_Service_Analytics_DataGa_Resource( - $this, - $this->serviceName, - 'ga', - array( - 'methods' => array( - 'get' => array( - 'path' => 'data/ga', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'start-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'end-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'segment' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'samplingLevel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'output' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->data_mcf = new Postman_Google_Service_Analytics_DataMcf_Resource( - $this, - $this->serviceName, - 'mcf', - array( - 'methods' => array( - 'get' => array( - 'path' => 'data/mcf', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'start-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'end-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'samplingLevel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->data_realtime = new Postman_Google_Service_Analytics_DataRealtime_Resource( - $this, - $this->serviceName, - 'realtime', - array( - 'methods' => array( - 'get' => array( - 'path' => 'data/realtime', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->management_accountSummaries = new Postman_Google_Service_Analytics_ManagementAccountSummaries_Resource( - $this, - $this->serviceName, - 'accountSummaries', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/accountSummaries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_accountUserLinks = new Postman_Google_Service_Analytics_ManagementAccountUserLinks_Resource( - $this, - $this->serviceName, - 'accountUserLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_accounts = new Postman_Google_Service_Analytics_ManagementAccounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_customDataSources = new Postman_Google_Service_Analytics_ManagementCustomDataSources_Resource( - $this, - $this->serviceName, - 'customDataSources', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_dailyUploads = new Postman_Google_Service_Analytics_ManagementDailyUploads_Resource( - $this, - $this->serviceName, - 'dailyUploads', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/dailyUploads/{date}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/dailyUploads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'start-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'end-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'upload' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/dailyUploads/{date}/uploads', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'appendNumber' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'reset' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->management_experiments = new Postman_Google_Service_Analytics_ManagementExperiments_Resource( - $this, - $this->serviceName, - 'experiments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_filters = new Postman_Google_Service_Analytics_ManagementFilters_Resource( - $this, - $this->serviceName, - 'filters', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/filters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/filters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_goals = new Postman_Google_Service_Analytics_ManagementGoals_Resource( - $this, - $this->serviceName, - 'goals', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'goalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'goalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'goalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_profileFilterLinks = new Postman_Google_Service_Analytics_ManagementProfileFilterLinks_Resource( - $this, - $this->serviceName, - 'profileFilterLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_profileUserLinks = new Postman_Google_Service_Analytics_ManagementProfileUserLinks_Resource( - $this, - $this->serviceName, - 'profileUserLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_profiles = new Postman_Google_Service_Analytics_ManagementProfiles_Resource( - $this, - $this->serviceName, - 'profiles', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_segments = new Postman_Google_Service_Analytics_ManagementSegments_Resource( - $this, - $this->serviceName, - 'segments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/segments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_unsampledReports = new Postman_Google_Service_Analytics_ManagementUnsampledReports_Resource( - $this, - $this->serviceName, - 'unsampledReports', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'unsampledReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_uploads = new Postman_Google_Service_Analytics_ManagementUploads_Resource( - $this, - $this->serviceName, - 'uploads', - array( - 'methods' => array( - 'deleteUploadData' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uploadId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'migrateDataImport' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/migrateDataImport', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'uploadData' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_webPropertyAdWordsLinks = new Postman_Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource( - $this, - $this->serviceName, - 'webPropertyAdWordsLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_webproperties = new Postman_Google_Service_Analytics_ManagementWebproperties_Resource( - $this, - $this->serviceName, - 'webproperties', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_webpropertyUserLinks = new Postman_Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource( - $this, - $this->serviceName, - 'webpropertyUserLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->metadata_columns = new Postman_Google_Service_Analytics_MetadataColumns_Resource( - $this, - $this->serviceName, - 'columns', - array( - 'methods' => array( - 'list' => array( - 'path' => 'metadata/{reportType}/columns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->provisioning = new Postman_Google_Service_Analytics_Provisioning_Resource( - $this, - $this->serviceName, - 'provisioning', - array( - 'methods' => array( - 'createAccountTicket' => array( - 'path' => 'provisioning/createAccountTicket', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "data" collection of methods. - * Typical usage is: - *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $data = $analyticsService->data;
- *
- */
-class Postman_Google_Service_Analytics_Data_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "ga" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $ga = $analyticsService->ga;
- *
- */
-class Postman_Google_Service_Analytics_DataGa_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns Analytics data for a view (profile). (ga.get)
- *
- * @param string $ids Unique table ID for retrieving Analytics data. Table ID is
- * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
- * @param string $startDate Start date for fetching Analytics data. Requests can
- * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g.,
- * today, yesterday, or 7daysAgo). The default value is 7daysAgo.
- * @param string $endDate End date for fetching Analytics data. Request can
- * should specify an end date formatted as YYYY-MM-DD, or as a relative date
- * (e.g., today, yesterday, or 7daysAgo). The default value is yesterday.
- * @param string $metrics A comma-separated list of Analytics metrics. E.g.,
- * 'ga:sessions,ga:pageviews'. At least one metric must be specified.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of entries to include in this
- * feed.
- * @opt_param string sort A comma-separated list of dimensions or metrics that
- * determine the sort order for Analytics data.
- * @opt_param string dimensions A comma-separated list of Analytics dimensions.
- * E.g., 'ga:browser,ga:city'.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @opt_param string segment An Analytics segment to be applied to data.
- * @opt_param string samplingLevel The desired sampling level.
- * @opt_param string filters A comma-separated list of dimension or metric
- * filters to be applied to Analytics data.
- * @opt_param string output The selected format for the response. Default format
- * is JSON.
- * @return Postman_Google_Service_Analytics_GaData
- */
- public function get($ids, $startDate, $endDate, $metrics, $optParams = array())
- {
- $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_GaData");
- }
-}
-/**
- * The "mcf" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $mcf = $analyticsService->mcf;
- *
- */
-class Postman_Google_Service_Analytics_DataMcf_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns Analytics Multi-Channel Funnels data for a view (profile). (mcf.get)
- *
- * @param string $ids Unique table ID for retrieving Analytics data. Table ID is
- * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
- * @param string $startDate Start date for fetching Analytics data. Requests can
- * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g.,
- * today, yesterday, or 7daysAgo). The default value is 7daysAgo.
- * @param string $endDate End date for fetching Analytics data. Requests can
- * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g.,
- * today, yesterday, or 7daysAgo). The default value is 7daysAgo.
- * @param string $metrics A comma-separated list of Multi-Channel Funnels
- * metrics. E.g., 'mcf:totalConversions,mcf:totalConversionValue'. At least one
- * metric must be specified.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of entries to include in this
- * feed.
- * @opt_param string sort A comma-separated list of dimensions or metrics that
- * determine the sort order for the Analytics data.
- * @opt_param string dimensions A comma-separated list of Multi-Channel Funnels
- * dimensions. E.g., 'mcf:source,mcf:medium'.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @opt_param string samplingLevel The desired sampling level.
- * @opt_param string filters A comma-separated list of dimension or metric
- * filters to be applied to the Analytics data.
- * @return Postman_Google_Service_Analytics_McfData
- */
- public function get($ids, $startDate, $endDate, $metrics, $optParams = array())
- {
- $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_McfData");
- }
-}
-/**
- * The "realtime" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $realtime = $analyticsService->realtime;
- *
- */
-class Postman_Google_Service_Analytics_DataRealtime_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns real time data for a view (profile). (realtime.get)
- *
- * @param string $ids Unique table ID for retrieving real time data. Table ID is
- * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
- * @param string $metrics A comma-separated list of real time metrics. E.g.,
- * 'rt:activeUsers'. At least one metric must be specified.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of entries to include in this
- * feed.
- * @opt_param string sort A comma-separated list of dimensions or metrics that
- * determine the sort order for real time data.
- * @opt_param string dimensions A comma-separated list of real time dimensions.
- * E.g., 'rt:medium,rt:city'.
- * @opt_param string filters A comma-separated list of dimension or metric
- * filters to be applied to real time data.
- * @return Postman_Google_Service_Analytics_RealtimeData
- */
- public function get($ids, $metrics, $optParams = array())
- {
- $params = array('ids' => $ids, 'metrics' => $metrics);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_RealtimeData");
- }
-}
-
-/**
- * The "management" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $management = $analyticsService->management;
- *
- */
-class Postman_Google_Service_Analytics_Management_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "accountSummaries" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $accountSummaries = $analyticsService->accountSummaries;
- *
- */
-class Postman_Google_Service_Analytics_ManagementAccountSummaries_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists account summaries (lightweight tree comprised of
- * accounts/properties/profiles) to which the user has access.
- * (accountSummaries.listManagementAccountSummaries)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of account summaries to include
- * in this response, where the largest acceptable value is 1000.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @return Postman_Google_Service_Analytics_AccountSummaries
- */
- public function listManagementAccountSummaries($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_AccountSummaries");
- }
-}
-/**
- * The "accountUserLinks" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $accountUserLinks = $analyticsService->accountUserLinks;
- *
- */
-class Postman_Google_Service_Analytics_ManagementAccountUserLinks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a user from the given account. (accountUserLinks.delete)
- *
- * @param string $accountId Account ID to delete the user link for.
- * @param string $linkId Link ID to delete the user link for.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $linkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'linkId' => $linkId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Adds a new user to the given account. (accountUserLinks.insert)
- *
- * @param string $accountId Account ID to create the user link for.
- * @param Postman_Google_EntityUserLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityUserLink
- */
- public function insert($accountId, Postman_Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_EntityUserLink");
- }
-
- /**
- * Lists account-user links for a given account.
- * (accountUserLinks.listManagementAccountUserLinks)
- *
- * @param string $accountId Account ID to retrieve the user links for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of account-user links to
- * include in this response.
- * @opt_param int start-index An index of the first account-user link to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_EntityUserLinks
- */
- public function listManagementAccountUserLinks($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_EntityUserLinks");
- }
-
- /**
- * Updates permissions for an existing user on the given account.
- * (accountUserLinks.update)
- *
- * @param string $accountId Account ID to update the account-user link for.
- * @param string $linkId Link ID to update the account-user link for.
- * @param Postman_Google_EntityUserLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityUserLink
- */
- public function update($accountId, $linkId, Postman_Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_EntityUserLink");
- }
-}
-/**
- * The "accounts" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $accounts = $analyticsService->accounts;
- *
- */
-class Postman_Google_Service_Analytics_ManagementAccounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists all accounts to which the user has access.
- * (accounts.listManagementAccounts)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of accounts to include in this
- * response.
- * @opt_param int start-index An index of the first account to retrieve. Use
- * this parameter as a pagination mechanism along with the max-results
- * parameter.
- * @return Postman_Google_Service_Analytics_Accounts
- */
- public function listManagementAccounts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Accounts");
- }
-}
-/**
- * The "customDataSources" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $customDataSources = $analyticsService->customDataSources;
- *
- */
-class Postman_Google_Service_Analytics_ManagementCustomDataSources_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List custom data sources to which the user has access.
- * (customDataSources.listManagementCustomDataSources)
- *
- * @param string $accountId Account Id for the custom data sources to retrieve.
- * @param string $webPropertyId Web property Id for the custom data sources to
- * retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of custom data sources to
- * include in this response.
- * @opt_param int start-index A 1-based index of the first custom data source to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_CustomDataSources
- */
- public function listManagementCustomDataSources($accountId, $webPropertyId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_CustomDataSources");
- }
-}
-/**
- * The "dailyUploads" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $dailyUploads = $analyticsService->dailyUploads;
- *
- */
-class Postman_Google_Service_Analytics_ManagementDailyUploads_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete uploaded data for the given date. (dailyUploads.delete)
- *
- * @param string $accountId Account Id associated with daily upload delete.
- * @param string $webPropertyId Web property Id associated with daily upload
- * delete.
- * @param string $customDataSourceId Custom data source Id associated with daily
- * upload delete.
- * @param string $date Date for which data is to be deleted. Date should be
- * formatted as YYYY-MM-DD.
- * @param string $type Type of data for this delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $customDataSourceId, $date, $type, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'date' => $date, 'type' => $type);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * List daily uploads to which the user has access.
- * (dailyUploads.listManagementDailyUploads)
- *
- * @param string $accountId Account Id for the daily uploads to retrieve.
- * @param string $webPropertyId Web property Id for the daily uploads to
- * retrieve.
- * @param string $customDataSourceId Custom data source Id for daily uploads to
- * retrieve.
- * @param string $startDate Start date of the form YYYY-MM-DD.
- * @param string $endDate End date of the form YYYY-MM-DD.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of custom data sources to
- * include in this response.
- * @opt_param int start-index A 1-based index of the first daily upload to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_DailyUploads
- */
- public function listManagementDailyUploads($accountId, $webPropertyId, $customDataSourceId, $startDate, $endDate, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'start-date' => $startDate, 'end-date' => $endDate);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_DailyUploads");
- }
-
- /**
- * Update/Overwrite data for a custom data source. (dailyUploads.upload)
- *
- * @param string $accountId Account Id associated with daily upload.
- * @param string $webPropertyId Web property Id associated with daily upload.
- * @param string $customDataSourceId Custom data source Id to which the data
- * being uploaded belongs.
- * @param string $date Date for which data is uploaded. Date should be formatted
- * as YYYY-MM-DD.
- * @param int $appendNumber Append number for this upload indexed from 1.
- * @param string $type Type of data for this upload.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool reset Reset/Overwrite all previous appends for this date and
- * start over with this file as the first upload.
- * @return Postman_Google_Service_Analytics_DailyUploadAppend
- */
- public function upload($accountId, $webPropertyId, $customDataSourceId, $date, $appendNumber, $type, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'date' => $date, 'appendNumber' => $appendNumber, 'type' => $type);
- $params = array_merge($params, $optParams);
- return $this->call('upload', array($params), "Postman_Google_Service_Analytics_DailyUploadAppend");
- }
-}
-/**
- * The "experiments" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $experiments = $analyticsService->experiments;
- *
- */
-class Postman_Google_Service_Analytics_ManagementExperiments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete an experiment. (experiments.delete)
- *
- * @param string $accountId Account ID to which the experiment belongs
- * @param string $webPropertyId Web property ID to which the experiment belongs
- * @param string $profileId View (Profile) ID to which the experiment belongs
- * @param string $experimentId ID of the experiment to delete
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns an experiment to which the user has access. (experiments.get)
- *
- * @param string $accountId Account ID to retrieve the experiment for.
- * @param string $webPropertyId Web property ID to retrieve the experiment for.
- * @param string $profileId View (Profile) ID to retrieve the experiment for.
- * @param string $experimentId Experiment ID to retrieve the experiment for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Experiment
- */
- public function get($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_Experiment");
- }
-
- /**
- * Create a new experiment. (experiments.insert)
- *
- * @param string $accountId Account ID to create the experiment for.
- * @param string $webPropertyId Web property ID to create the experiment for.
- * @param string $profileId View (Profile) ID to create the experiment for.
- * @param Postman_Google_Experiment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Experiment
- */
- public function insert($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_Experiment $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_Experiment");
- }
-
- /**
- * Lists experiments to which the user has access.
- * (experiments.listManagementExperiments)
- *
- * @param string $accountId Account ID to retrieve experiments for.
- * @param string $webPropertyId Web property ID to retrieve experiments for.
- * @param string $profileId View (Profile) ID to retrieve experiments for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of experiments to include in
- * this response.
- * @opt_param int start-index An index of the first experiment to retrieve. Use
- * this parameter as a pagination mechanism along with the max-results
- * parameter.
- * @return Postman_Google_Service_Analytics_Experiments
- */
- public function listManagementExperiments($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Experiments");
- }
-
- /**
- * Update an existing experiment. This method supports patch semantics.
- * (experiments.patch)
- *
- * @param string $accountId Account ID of the experiment to update.
- * @param string $webPropertyId Web property ID of the experiment to update.
- * @param string $profileId View (Profile) ID of the experiment to update.
- * @param string $experimentId Experiment ID of the experiment to update.
- * @param Postman_Google_Experiment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Experiment
- */
- public function patch($accountId, $webPropertyId, $profileId, $experimentId, Postman_Google_Service_Analytics_Experiment $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_Experiment");
- }
-
- /**
- * Update an existing experiment. (experiments.update)
- *
- * @param string $accountId Account ID of the experiment to update.
- * @param string $webPropertyId Web property ID of the experiment to update.
- * @param string $profileId View (Profile) ID of the experiment to update.
- * @param string $experimentId Experiment ID of the experiment to update.
- * @param Postman_Google_Experiment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Experiment
- */
- public function update($accountId, $webPropertyId, $profileId, $experimentId, Postman_Google_Service_Analytics_Experiment $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_Experiment");
- }
-}
-/**
- * The "filters" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $filters = $analyticsService->filters;
- *
- */
-class Postman_Google_Service_Analytics_ManagementFilters_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a filter. (filters.delete)
- *
- * @param string $accountId Account ID to delete the filter for.
- * @param string $filterId ID of the filter to be deleted.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Filter
- */
- public function delete($accountId, $filterId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'filterId' => $filterId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Analytics_Filter");
- }
-
- /**
- * Returns a filters to which the user has access. (filters.get)
- *
- * @param string $accountId Account ID to retrieve filters for.
- * @param string $filterId Filter ID to retrieve filters for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Filter
- */
- public function get($accountId, $filterId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'filterId' => $filterId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_Filter");
- }
-
- /**
- * Create a new filter. (filters.insert)
- *
- * @param string $accountId Account ID to create filter for.
- * @param Postman_Google_Filter $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Filter
- */
- public function insert($accountId, Postman_Google_Service_Analytics_Filter $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_Filter");
- }
-
- /**
- * Lists all filters for an account (filters.listManagementFilters)
- *
- * @param string $accountId Account ID to retrieve filters for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of filters to include in this
- * response.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @return Postman_Google_Service_Analytics_Filters
- */
- public function listManagementFilters($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Filters");
- }
-
- /**
- * Updates an existing filter. This method supports patch semantics.
- * (filters.patch)
- *
- * @param string $accountId Account ID to which the filter belongs.
- * @param string $filterId ID of the filter to be updated.
- * @param Postman_Google_Filter $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Filter
- */
- public function patch($accountId, $filterId, Postman_Google_Service_Analytics_Filter $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_Filter");
- }
-
- /**
- * Updates an existing filter. (filters.update)
- *
- * @param string $accountId Account ID to which the filter belongs.
- * @param string $filterId ID of the filter to be updated.
- * @param Postman_Google_Filter $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Filter
- */
- public function update($accountId, $filterId, Postman_Google_Service_Analytics_Filter $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_Filter");
- }
-}
-/**
- * The "goals" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $goals = $analyticsService->goals;
- *
- */
-class Postman_Google_Service_Analytics_ManagementGoals_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a goal to which the user has access. (goals.get)
- *
- * @param string $accountId Account ID to retrieve the goal for.
- * @param string $webPropertyId Web property ID to retrieve the goal for.
- * @param string $profileId View (Profile) ID to retrieve the goal for.
- * @param string $goalId Goal ID to retrieve the goal for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Goal
- */
- public function get($accountId, $webPropertyId, $profileId, $goalId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_Goal");
- }
-
- /**
- * Create a new goal. (goals.insert)
- *
- * @param string $accountId Account ID to create the goal for.
- * @param string $webPropertyId Web property ID to create the goal for.
- * @param string $profileId View (Profile) ID to create the goal for.
- * @param Postman_Google_Goal $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Goal
- */
- public function insert($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_Goal $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_Goal");
- }
-
- /**
- * Lists goals to which the user has access. (goals.listManagementGoals)
- *
- * @param string $accountId Account ID to retrieve goals for. Can either be a
- * specific account ID or '~all', which refers to all the accounts that user has
- * access to.
- * @param string $webPropertyId Web property ID to retrieve goals for. Can
- * either be a specific web property ID or '~all', which refers to all the web
- * properties that user has access to.
- * @param string $profileId View (Profile) ID to retrieve goals for. Can either
- * be a specific view (profile) ID or '~all', which refers to all the views
- * (profiles) that user has access to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of goals to include in this
- * response.
- * @opt_param int start-index An index of the first goal to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @return Postman_Google_Service_Analytics_Goals
- */
- public function listManagementGoals($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Goals");
- }
-
- /**
- * Updates an existing view (profile). This method supports patch semantics.
- * (goals.patch)
- *
- * @param string $accountId Account ID to update the goal.
- * @param string $webPropertyId Web property ID to update the goal.
- * @param string $profileId View (Profile) ID to update the goal.
- * @param string $goalId Index of the goal to be updated.
- * @param Postman_Google_Goal $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Goal
- */
- public function patch($accountId, $webPropertyId, $profileId, $goalId, Postman_Google_Service_Analytics_Goal $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_Goal");
- }
-
- /**
- * Updates an existing view (profile). (goals.update)
- *
- * @param string $accountId Account ID to update the goal.
- * @param string $webPropertyId Web property ID to update the goal.
- * @param string $profileId View (Profile) ID to update the goal.
- * @param string $goalId Index of the goal to be updated.
- * @param Postman_Google_Goal $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Goal
- */
- public function update($accountId, $webPropertyId, $profileId, $goalId, Postman_Google_Service_Analytics_Goal $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_Goal");
- }
-}
-/**
- * The "profileFilterLinks" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $profileFilterLinks = $analyticsService->profileFilterLinks;
- *
- */
-class Postman_Google_Service_Analytics_ManagementProfileFilterLinks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a profile filter link. (profileFilterLinks.delete)
- *
- * @param string $accountId Account ID to which the profile filter link belongs.
- * @param string $webPropertyId Web property Id to which the profile filter link
- * belongs.
- * @param string $profileId Profile ID to which the filter link belongs.
- * @param string $linkId ID of the profile filter link to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns a single profile filter link. (profileFilterLinks.get)
- *
- * @param string $accountId Account ID to retrieve profile filter link for.
- * @param string $webPropertyId Web property Id to retrieve profile filter link
- * for.
- * @param string $profileId Profile ID to retrieve filter link for.
- * @param string $linkId ID of the profile filter link.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_ProfileFilterLink
- */
- public function get($accountId, $webPropertyId, $profileId, $linkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_ProfileFilterLink");
- }
-
- /**
- * Create a new profile filter link. (profileFilterLinks.insert)
- *
- * @param string $accountId Account ID to create profile filter link for.
- * @param string $webPropertyId Web property Id to create profile filter link
- * for.
- * @param string $profileId Profile ID to create filter link for.
- * @param Postman_Google_ProfileFilterLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_ProfileFilterLink
- */
- public function insert($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_ProfileFilterLink");
- }
-
- /**
- * Lists all profile filter links for a profile.
- * (profileFilterLinks.listManagementProfileFilterLinks)
- *
- * @param string $accountId Account ID to retrieve profile filter links for.
- * @param string $webPropertyId Web property Id for profile filter links for.
- * Can either be a specific web property ID or '~all', which refers to all the
- * web properties that user has access to.
- * @param string $profileId Profile ID to retrieve filter links for. Can either
- * be a specific profile ID or '~all', which refers to all the profiles that
- * user has access to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of profile filter links to
- * include in this response.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @return Postman_Google_Service_Analytics_ProfileFilterLinks
- */
- public function listManagementProfileFilterLinks($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_ProfileFilterLinks");
- }
-
- /**
- * Update an existing profile filter link. This method supports patch semantics.
- * (profileFilterLinks.patch)
- *
- * @param string $accountId Account ID to which profile filter link belongs.
- * @param string $webPropertyId Web property Id to which profile filter link
- * belongs
- * @param string $profileId Profile ID to which filter link belongs
- * @param string $linkId ID of the profile filter link to be updated.
- * @param Postman_Google_ProfileFilterLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_ProfileFilterLink
- */
- public function patch($accountId, $webPropertyId, $profileId, $linkId, Postman_Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_ProfileFilterLink");
- }
-
- /**
- * Update an existing profile filter link. (profileFilterLinks.update)
- *
- * @param string $accountId Account ID to which profile filter link belongs.
- * @param string $webPropertyId Web property Id to which profile filter link
- * belongs
- * @param string $profileId Profile ID to which filter link belongs
- * @param string $linkId ID of the profile filter link to be updated.
- * @param Postman_Google_ProfileFilterLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_ProfileFilterLink
- */
- public function update($accountId, $webPropertyId, $profileId, $linkId, Postman_Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_ProfileFilterLink");
- }
-}
-/**
- * The "profileUserLinks" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $profileUserLinks = $analyticsService->profileUserLinks;
- *
- */
-class Postman_Google_Service_Analytics_ManagementProfileUserLinks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a user from the given view (profile). (profileUserLinks.delete)
- *
- * @param string $accountId Account ID to delete the user link for.
- * @param string $webPropertyId Web Property ID to delete the user link for.
- * @param string $profileId View (Profile) ID to delete the user link for.
- * @param string $linkId Link ID to delete the user link for.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Adds a new user to the given view (profile). (profileUserLinks.insert)
- *
- * @param string $accountId Account ID to create the user link for.
- * @param string $webPropertyId Web Property ID to create the user link for.
- * @param string $profileId View (Profile) ID to create the user link for.
- * @param Postman_Google_EntityUserLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityUserLink
- */
- public function insert($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_EntityUserLink");
- }
-
- /**
- * Lists profile-user links for a given view (profile).
- * (profileUserLinks.listManagementProfileUserLinks)
- *
- * @param string $accountId Account ID which the given view (profile) belongs
- * to.
- * @param string $webPropertyId Web Property ID which the given view (profile)
- * belongs to. Can either be a specific web property ID or '~all', which refers
- * to all the web properties that user has access to.
- * @param string $profileId View (Profile) ID to retrieve the profile-user links
- * for. Can either be a specific profile ID or '~all', which refers to all the
- * profiles that user has access to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of profile-user links to
- * include in this response.
- * @opt_param int start-index An index of the first profile-user link to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_EntityUserLinks
- */
- public function listManagementProfileUserLinks($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_EntityUserLinks");
- }
-
- /**
- * Updates permissions for an existing user on the given view (profile).
- * (profileUserLinks.update)
- *
- * @param string $accountId Account ID to update the user link for.
- * @param string $webPropertyId Web Property ID to update the user link for.
- * @param string $profileId View (Profile ID) to update the user link for.
- * @param string $linkId Link ID to update the user link for.
- * @param Postman_Google_EntityUserLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityUserLink
- */
- public function update($accountId, $webPropertyId, $profileId, $linkId, Postman_Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_EntityUserLink");
- }
-}
-/**
- * The "profiles" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $profiles = $analyticsService->profiles;
- *
- */
-class Postman_Google_Service_Analytics_ManagementProfiles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a view (profile). (profiles.delete)
- *
- * @param string $accountId Account ID to delete the view (profile) for.
- * @param string $webPropertyId Web property ID to delete the view (profile)
- * for.
- * @param string $profileId ID of the view (profile) to be deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a view (profile) to which the user has access. (profiles.get)
- *
- * @param string $accountId Account ID to retrieve the goal for.
- * @param string $webPropertyId Web property ID to retrieve the goal for.
- * @param string $profileId View (Profile) ID to retrieve the goal for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Profile
- */
- public function get($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_Profile");
- }
-
- /**
- * Create a new view (profile). (profiles.insert)
- *
- * @param string $accountId Account ID to create the view (profile) for.
- * @param string $webPropertyId Web property ID to create the view (profile)
- * for.
- * @param Postman_Google_Profile $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Profile
- */
- public function insert($accountId, $webPropertyId, Postman_Google_Service_Analytics_Profile $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_Profile");
- }
-
- /**
- * Lists views (profiles) to which the user has access.
- * (profiles.listManagementProfiles)
- *
- * @param string $accountId Account ID for the view (profiles) to retrieve. Can
- * either be a specific account ID or '~all', which refers to all the accounts
- * to which the user has access.
- * @param string $webPropertyId Web property ID for the views (profiles) to
- * retrieve. Can either be a specific web property ID or '~all', which refers to
- * all the web properties to which the user has access.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of views (profiles) to include
- * in this response.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @return Postman_Google_Service_Analytics_Profiles
- */
- public function listManagementProfiles($accountId, $webPropertyId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Profiles");
- }
-
- /**
- * Updates an existing view (profile). This method supports patch semantics.
- * (profiles.patch)
- *
- * @param string $accountId Account ID to which the view (profile) belongs
- * @param string $webPropertyId Web property ID to which the view (profile)
- * belongs
- * @param string $profileId ID of the view (profile) to be updated.
- * @param Postman_Google_Profile $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Profile
- */
- public function patch($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_Profile $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_Profile");
- }
-
- /**
- * Updates an existing view (profile). (profiles.update)
- *
- * @param string $accountId Account ID to which the view (profile) belongs
- * @param string $webPropertyId Web property ID to which the view (profile)
- * belongs
- * @param string $profileId ID of the view (profile) to be updated.
- * @param Postman_Google_Profile $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Profile
- */
- public function update($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_Profile $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_Profile");
- }
-}
-/**
- * The "segments" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $segments = $analyticsService->segments;
- *
- */
-class Postman_Google_Service_Analytics_ManagementSegments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists segments to which the user has access.
- * (segments.listManagementSegments)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of segments to include in this
- * response.
- * @opt_param int start-index An index of the first segment to retrieve. Use
- * this parameter as a pagination mechanism along with the max-results
- * parameter.
- * @return Postman_Google_Service_Analytics_Segments
- */
- public function listManagementSegments($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Segments");
- }
-}
-/**
- * The "unsampledReports" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $unsampledReports = $analyticsService->unsampledReports;
- *
- */
-class Postman_Google_Service_Analytics_ManagementUnsampledReports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a single unsampled report. (unsampledReports.get)
- *
- * @param string $accountId Account ID to retrieve unsampled report for.
- * @param string $webPropertyId Web property ID to retrieve unsampled reports
- * for.
- * @param string $profileId View (Profile) ID to retrieve unsampled report for.
- * @param string $unsampledReportId ID of the unsampled report to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_UnsampledReport
- */
- public function get($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_UnsampledReport");
- }
-
- /**
- * Create a new unsampled report. (unsampledReports.insert)
- *
- * @param string $accountId Account ID to create the unsampled report for.
- * @param string $webPropertyId Web property ID to create the unsampled report
- * for.
- * @param string $profileId View (Profile) ID to create the unsampled report
- * for.
- * @param Postman_Google_UnsampledReport $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_UnsampledReport
- */
- public function insert($accountId, $webPropertyId, $profileId, Postman_Google_Service_Analytics_UnsampledReport $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_UnsampledReport");
- }
-
- /**
- * Lists unsampled reports to which the user has access.
- * (unsampledReports.listManagementUnsampledReports)
- *
- * @param string $accountId Account ID to retrieve unsampled reports for. Must
- * be a specific account ID, ~all is not supported.
- * @param string $webPropertyId Web property ID to retrieve unsampled reports
- * for. Must be a specific web property ID, ~all is not supported.
- * @param string $profileId View (Profile) ID to retrieve unsampled reports for.
- * Must be a specific view (profile) ID, ~all is not supported.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of unsampled reports to include
- * in this response.
- * @opt_param int start-index An index of the first unsampled report to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_UnsampledReports
- */
- public function listManagementUnsampledReports($accountId, $webPropertyId, $profileId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_UnsampledReports");
- }
-}
-/**
- * The "uploads" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $uploads = $analyticsService->uploads;
- *
- */
-class Postman_Google_Service_Analytics_ManagementUploads_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete data associated with a previous upload. (uploads.deleteUploadData)
- *
- * @param string $accountId Account Id for the uploads to be deleted.
- * @param string $webPropertyId Web property Id for the uploads to be deleted.
- * @param string $customDataSourceId Custom data source Id for the uploads to be
- * deleted.
- * @param Postman_Google_AnalyticsDataimportDeleteUploadDataRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, Postman_Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('deleteUploadData', array($params));
- }
-
- /**
- * List uploads to which the user has access. (uploads.get)
- *
- * @param string $accountId Account Id for the upload to retrieve.
- * @param string $webPropertyId Web property Id for the upload to retrieve.
- * @param string $customDataSourceId Custom data source Id for upload to
- * retrieve.
- * @param string $uploadId Upload Id to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Upload
- */
- public function get($accountId, $webPropertyId, $customDataSourceId, $uploadId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_Upload");
- }
-
- /**
- * List uploads to which the user has access. (uploads.listManagementUploads)
- *
- * @param string $accountId Account Id for the uploads to retrieve.
- * @param string $webPropertyId Web property Id for the uploads to retrieve.
- * @param string $customDataSourceId Custom data source Id for uploads to
- * retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of uploads to include in this
- * response.
- * @opt_param int start-index A 1-based index of the first upload to retrieve.
- * Use this parameter as a pagination mechanism along with the max-results
- * parameter.
- * @return Postman_Google_Service_Analytics_Uploads
- */
- public function listManagementUploads($accountId, $webPropertyId, $customDataSourceId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Uploads");
- }
-
- /**
- * Migrate custom data source and data imports to latest version.
- * (uploads.migrateDataImport)
- *
- * @param string $accountId Account Id for migration.
- * @param string $webPropertyId Web property Id for migration.
- * @param string $customDataSourceId Custom data source Id for migration.
- * @param array $optParams Optional parameters.
- */
- public function migrateDataImport($accountId, $webPropertyId, $customDataSourceId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
- $params = array_merge($params, $optParams);
- return $this->call('migrateDataImport', array($params));
- }
-
- /**
- * Upload data for a custom data source. (uploads.uploadData)
- *
- * @param string $accountId Account Id associated with the upload.
- * @param string $webPropertyId Web property UA-string associated with the
- * upload.
- * @param string $customDataSourceId Custom data source Id to which the data
- * being uploaded belongs.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Upload
- */
- public function uploadData($accountId, $webPropertyId, $customDataSourceId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
- $params = array_merge($params, $optParams);
- return $this->call('uploadData', array($params), "Postman_Google_Service_Analytics_Upload");
- }
-}
-/**
- * The "webPropertyAdWordsLinks" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $webPropertyAdWordsLinks = $analyticsService->webPropertyAdWordsLinks;
- *
- */
-class Postman_Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a web property-AdWords link. (webPropertyAdWordsLinks.delete)
- *
- * @param string $accountId ID of the account which the given web property
- * belongs to.
- * @param string $webPropertyId Web property ID to delete the AdWords link for.
- * @param string $webPropertyAdWordsLinkId Web property AdWords link ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns a web property-AdWords link to which the user has access.
- * (webPropertyAdWordsLinks.get)
- *
- * @param string $accountId ID of the account which the given web property
- * belongs to.
- * @param string $webPropertyId Web property ID to retrieve the AdWords link
- * for.
- * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityAdWordsLink
- */
- public function get($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_EntityAdWordsLink");
- }
-
- /**
- * Creates a webProperty-AdWords link. (webPropertyAdWordsLinks.insert)
- *
- * @param string $accountId ID of the Google Analytics account to create the
- * link for.
- * @param string $webPropertyId Web property ID to create the link for.
- * @param Postman_Google_EntityAdWordsLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityAdWordsLink
- */
- public function insert($accountId, $webPropertyId, Postman_Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_EntityAdWordsLink");
- }
-
- /**
- * Lists webProperty-AdWords links for a given web property.
- * (webPropertyAdWordsLinks.listManagementWebPropertyAdWordsLinks)
- *
- * @param string $accountId ID of the account which the given web property
- * belongs to.
- * @param string $webPropertyId Web property ID to retrieve the AdWords links
- * for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of webProperty-AdWords links to
- * include in this response.
- * @opt_param int start-index An index of the first webProperty-AdWords link to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_EntityAdWordsLinks
- */
- public function listManagementWebPropertyAdWordsLinks($accountId, $webPropertyId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_EntityAdWordsLinks");
- }
-
- /**
- * Updates an existing webProperty-AdWords link. This method supports patch
- * semantics. (webPropertyAdWordsLinks.patch)
- *
- * @param string $accountId ID of the account which the given web property
- * belongs to.
- * @param string $webPropertyId Web property ID to retrieve the AdWords link
- * for.
- * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
- * @param Postman_Google_EntityAdWordsLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityAdWordsLink
- */
- public function patch($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Postman_Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_EntityAdWordsLink");
- }
-
- /**
- * Updates an existing webProperty-AdWords link.
- * (webPropertyAdWordsLinks.update)
- *
- * @param string $accountId ID of the account which the given web property
- * belongs to.
- * @param string $webPropertyId Web property ID to retrieve the AdWords link
- * for.
- * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
- * @param Postman_Google_EntityAdWordsLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityAdWordsLink
- */
- public function update($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Postman_Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_EntityAdWordsLink");
- }
-}
-/**
- * The "webproperties" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $webproperties = $analyticsService->webproperties;
- *
- */
-class Postman_Google_Service_Analytics_ManagementWebproperties_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a web property to which the user has access. (webproperties.get)
- *
- * @param string $accountId Account ID to retrieve the web property for.
- * @param string $webPropertyId ID to retrieve the web property for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Webproperty
- */
- public function get($accountId, $webPropertyId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Analytics_Webproperty");
- }
-
- /**
- * Create a new property if the account has fewer than 20 properties. Web
- * properties are visible in the Google Analytics interface only if they have at
- * least one profile. (webproperties.insert)
- *
- * @param string $accountId Account ID to create the web property for.
- * @param Postman_Google_Webproperty $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Webproperty
- */
- public function insert($accountId, Postman_Google_Service_Analytics_Webproperty $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_Webproperty");
- }
-
- /**
- * Lists web properties to which the user has access.
- * (webproperties.listManagementWebproperties)
- *
- * @param string $accountId Account ID to retrieve web properties for. Can
- * either be a specific account ID or '~all', which refers to all the accounts
- * that user has access to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of web properties to include in
- * this response.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter.
- * @return Postman_Google_Service_Analytics_Webproperties
- */
- public function listManagementWebproperties($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Webproperties");
- }
-
- /**
- * Updates an existing web property. This method supports patch semantics.
- * (webproperties.patch)
- *
- * @param string $accountId Account ID to which the web property belongs
- * @param string $webPropertyId Web property ID
- * @param Postman_Google_Webproperty $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Webproperty
- */
- public function patch($accountId, $webPropertyId, Postman_Google_Service_Analytics_Webproperty $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Analytics_Webproperty");
- }
-
- /**
- * Updates an existing web property. (webproperties.update)
- *
- * @param string $accountId Account ID to which the web property belongs
- * @param string $webPropertyId Web property ID
- * @param Postman_Google_Webproperty $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Webproperty
- */
- public function update($accountId, $webPropertyId, Postman_Google_Service_Analytics_Webproperty $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_Webproperty");
- }
-}
-/**
- * The "webpropertyUserLinks" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $webpropertyUserLinks = $analyticsService->webpropertyUserLinks;
- *
- */
-class Postman_Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a user from the given web property. (webpropertyUserLinks.delete)
- *
- * @param string $accountId Account ID to delete the user link for.
- * @param string $webPropertyId Web Property ID to delete the user link for.
- * @param string $linkId Link ID to delete the user link for.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $webPropertyId, $linkId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Adds a new user to the given web property. (webpropertyUserLinks.insert)
- *
- * @param string $accountId Account ID to create the user link for.
- * @param string $webPropertyId Web Property ID to create the user link for.
- * @param Postman_Google_EntityUserLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityUserLink
- */
- public function insert($accountId, $webPropertyId, Postman_Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Analytics_EntityUserLink");
- }
-
- /**
- * Lists webProperty-user links for a given web property.
- * (webpropertyUserLinks.listManagementWebpropertyUserLinks)
- *
- * @param string $accountId Account ID which the given web property belongs to.
- * @param string $webPropertyId Web Property ID for the webProperty-user links
- * to retrieve. Can either be a specific web property ID or '~all', which refers
- * to all the web properties that user has access to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of webProperty-user Links to
- * include in this response.
- * @opt_param int start-index An index of the first webProperty-user link to
- * retrieve. Use this parameter as a pagination mechanism along with the max-
- * results parameter.
- * @return Postman_Google_Service_Analytics_EntityUserLinks
- */
- public function listManagementWebpropertyUserLinks($accountId, $webPropertyId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_EntityUserLinks");
- }
-
- /**
- * Updates permissions for an existing user on the given web property.
- * (webpropertyUserLinks.update)
- *
- * @param string $accountId Account ID to update the account-user link for.
- * @param string $webPropertyId Web property ID to update the account-user link
- * for.
- * @param string $linkId Link ID to update the account-user link for.
- * @param Postman_Google_EntityUserLink $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_EntityUserLink
- */
- public function update($accountId, $webPropertyId, $linkId, Postman_Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Analytics_EntityUserLink");
- }
-}
-
-/**
- * The "metadata" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $metadata = $analyticsService->metadata;
- *
- */
-class Postman_Google_Service_Analytics_Metadata_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "columns" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $columns = $analyticsService->columns;
- *
- */
-class Postman_Google_Service_Analytics_MetadataColumns_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists all columns for a report type (columns.listMetadataColumns)
- *
- * @param string $reportType Report type. Allowed Values: 'ga'. Where 'ga'
- * corresponds to the Core Reporting API
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_Columns
- */
- public function listMetadataColumns($reportType, $optParams = array())
- {
- $params = array('reportType' => $reportType);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Analytics_Columns");
- }
-}
-
-/**
- * The "provisioning" collection of methods.
- * Typical usage is:
- *
- * $analyticsService = new Postman_Google_Service_Analytics(...);
- * $provisioning = $analyticsService->provisioning;
- *
- */
-class Postman_Google_Service_Analytics_Provisioning_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates an account ticket. (provisioning.createAccountTicket)
- *
- * @param Postman_Google_AccountTicket $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Analytics_AccountTicket
- */
- public function createAccountTicket(Postman_Google_Service_Analytics_AccountTicket $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('createAccountTicket', array($params), "Postman_Google_Service_Analytics_AccountTicket");
- }
-}
-
-
-
-
-class Postman_Google_Service_Analytics_Account extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $childLinkType = 'Postman_Google_Service_Analytics_AccountChildLink';
- protected $childLinkDataType = '';
- public $created;
- public $id;
- public $kind;
- public $name;
- protected $permissionsType = 'Postman_Google_Service_Analytics_AccountPermissions';
- protected $permissionsDataType = '';
- public $selfLink;
- public $updated;
-
-
- public function setChildLink(Postman_Google_Service_Analytics_AccountChildLink $childLink)
- {
- $this->childLink = $childLink;
- }
- public function getChildLink()
- {
- return $this->childLink;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- 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 setPermissions(Postman_Google_Service_Analytics_AccountPermissions $permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Analytics_AccountChildLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_AccountPermissions extends Postman_Google_Collection
-{
- protected $collection_key = 'effective';
- protected $internal_gapi_mappings = array(
- );
- public $effective;
-
-
- public function setEffective($effective)
- {
- $this->effective = $effective;
- }
- public function getEffective()
- {
- return $this->effective;
- }
-}
-
-class Postman_Google_Service_Analytics_AccountRef extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $id;
- public $kind;
- public $name;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Analytics_AccountSummaries extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_AccountSummary';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_AccountSummary extends Postman_Google_Collection
-{
- protected $collection_key = 'webProperties';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
- protected $webPropertiesType = 'Postman_Google_Service_Analytics_WebPropertySummary';
- protected $webPropertiesDataType = 'array';
-
-
- 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 setWebProperties($webProperties)
- {
- $this->webProperties = $webProperties;
- }
- public function getWebProperties()
- {
- return $this->webProperties;
- }
-}
-
-class Postman_Google_Service_Analytics_AccountTicket extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accountType = 'Postman_Google_Service_Analytics_Account';
- protected $accountDataType = '';
- public $id;
- public $kind;
- protected $profileType = 'Postman_Google_Service_Analytics_Profile';
- protected $profileDataType = '';
- public $redirectUri;
- protected $webpropertyType = 'Postman_Google_Service_Analytics_Webproperty';
- protected $webpropertyDataType = '';
-
-
- public function setAccount(Postman_Google_Service_Analytics_Account $account)
- {
- $this->account = $account;
- }
- public function getAccount()
- {
- return $this->account;
- }
- 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 setProfile(Postman_Google_Service_Analytics_Profile $profile)
- {
- $this->profile = $profile;
- }
- public function getProfile()
- {
- return $this->profile;
- }
- public function setRedirectUri($redirectUri)
- {
- $this->redirectUri = $redirectUri;
- }
- public function getRedirectUri()
- {
- return $this->redirectUri;
- }
- public function setWebproperty(Postman_Google_Service_Analytics_Webproperty $webproperty)
- {
- $this->webproperty = $webproperty;
- }
- public function getWebproperty()
- {
- return $this->webproperty;
- }
-}
-
-class Postman_Google_Service_Analytics_Accounts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Account';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_AdWordsAccount extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $autoTaggingEnabled;
- public $customerId;
- public $kind;
-
-
- public function setAutoTaggingEnabled($autoTaggingEnabled)
- {
- $this->autoTaggingEnabled = $autoTaggingEnabled;
- }
- public function getAutoTaggingEnabled()
- {
- return $this->autoTaggingEnabled;
- }
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'customDataImportUids';
- protected $internal_gapi_mappings = array(
- );
- public $customDataImportUids;
-
-
- public function setCustomDataImportUids($customDataImportUids)
- {
- $this->customDataImportUids = $customDataImportUids;
- }
- public function getCustomDataImportUids()
- {
- return $this->customDataImportUids;
- }
-}
-
-class Postman_Google_Service_Analytics_Column extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attributes;
- public $id;
- public $kind;
-
-
- public function setAttributes($attributes)
- {
- $this->attributes = $attributes;
- }
- public function getAttributes()
- {
- return $this->attributes;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Analytics_ColumnAttributes extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Analytics_Columns extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $attributeNames;
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Analytics_Column';
- protected $itemsDataType = 'array';
- public $kind;
- public $totalResults;
-
-
- public function setAttributeNames($attributeNames)
- {
- $this->attributeNames = $attributeNames;
- }
- public function getAttributeNames()
- {
- return $this->attributeNames;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
-}
-
-class Postman_Google_Service_Analytics_CustomDataSource extends Postman_Google_Collection
-{
- protected $collection_key = 'profilesLinked';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $childLinkType = 'Postman_Google_Service_Analytics_CustomDataSourceChildLink';
- protected $childLinkDataType = '';
- public $created;
- public $description;
- public $id;
- public $importBehavior;
- public $kind;
- public $name;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_CustomDataSourceParentLink';
- protected $parentLinkDataType = '';
- public $profilesLinked;
- public $selfLink;
- public $type;
- public $updated;
- public $uploadType;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setChildLink(Postman_Google_Service_Analytics_CustomDataSourceChildLink $childLink)
- {
- $this->childLink = $childLink;
- }
- public function getChildLink()
- {
- return $this->childLink;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- 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 setImportBehavior($importBehavior)
- {
- $this->importBehavior = $importBehavior;
- }
- public function getImportBehavior()
- {
- return $this->importBehavior;
- }
- 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 setParentLink(Postman_Google_Service_Analytics_CustomDataSourceParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setProfilesLinked($profilesLinked)
- {
- $this->profilesLinked = $profilesLinked;
- }
- public function getProfilesLinked()
- {
- return $this->profilesLinked;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUploadType($uploadType)
- {
- $this->uploadType = $uploadType;
- }
- public function getUploadType()
- {
- return $this->uploadType;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_CustomDataSourceChildLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_CustomDataSourceParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_CustomDataSources extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_CustomDataSource';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_DailyUpload extends Postman_Google_Collection
-{
- protected $collection_key = 'recentChanges';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $appendCount;
- public $createdTime;
- public $customDataSourceId;
- public $date;
- public $kind;
- public $modifiedTime;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_DailyUploadParentLink';
- protected $parentLinkDataType = '';
- protected $recentChangesType = 'Postman_Google_Service_Analytics_DailyUploadRecentChanges';
- protected $recentChangesDataType = 'array';
- public $selfLink;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAppendCount($appendCount)
- {
- $this->appendCount = $appendCount;
- }
- public function getAppendCount()
- {
- return $this->appendCount;
- }
- public function setCreatedTime($createdTime)
- {
- $this->createdTime = $createdTime;
- }
- public function getCreatedTime()
- {
- return $this->createdTime;
- }
- public function setCustomDataSourceId($customDataSourceId)
- {
- $this->customDataSourceId = $customDataSourceId;
- }
- public function getCustomDataSourceId()
- {
- return $this->customDataSourceId;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setModifiedTime($modifiedTime)
- {
- $this->modifiedTime = $modifiedTime;
- }
- public function getModifiedTime()
- {
- return $this->modifiedTime;
- }
- public function setParentLink(Postman_Google_Service_Analytics_DailyUploadParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setRecentChanges($recentChanges)
- {
- $this->recentChanges = $recentChanges;
- }
- public function getRecentChanges()
- {
- return $this->recentChanges;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_DailyUploadAppend extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $appendNumber;
- public $customDataSourceId;
- public $date;
- public $kind;
- public $nextAppendLink;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAppendNumber($appendNumber)
- {
- $this->appendNumber = $appendNumber;
- }
- public function getAppendNumber()
- {
- return $this->appendNumber;
- }
- public function setCustomDataSourceId($customDataSourceId)
- {
- $this->customDataSourceId = $customDataSourceId;
- }
- public function getCustomDataSourceId()
- {
- return $this->customDataSourceId;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNextAppendLink($nextAppendLink)
- {
- $this->nextAppendLink = $nextAppendLink;
- }
- public function getNextAppendLink()
- {
- return $this->nextAppendLink;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_DailyUploadParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_DailyUploadRecentChanges extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $change;
- public $time;
-
-
- public function setChange($change)
- {
- $this->change = $change;
- }
- public function getChange()
- {
- return $this->change;
- }
- public function setTime($time)
- {
- $this->time = $time;
- }
- public function getTime()
- {
- return $this->time;
- }
-}
-
-class Postman_Google_Service_Analytics_DailyUploads extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_DailyUpload';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityAdWordsLink extends Postman_Google_Collection
-{
- protected $collection_key = 'profileIds';
- protected $internal_gapi_mappings = array(
- );
- protected $adWordsAccountsType = 'Postman_Google_Service_Analytics_AdWordsAccount';
- protected $adWordsAccountsDataType = 'array';
- protected $entityType = 'Postman_Google_Service_Analytics_EntityAdWordsLinkEntity';
- protected $entityDataType = '';
- public $id;
- public $kind;
- public $name;
- public $profileIds;
- public $selfLink;
-
-
- public function setAdWordsAccounts($adWordsAccounts)
- {
- $this->adWordsAccounts = $adWordsAccounts;
- }
- public function getAdWordsAccounts()
- {
- return $this->adWordsAccounts;
- }
- public function setEntity(Postman_Google_Service_Analytics_EntityAdWordsLinkEntity $entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- 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 setProfileIds($profileIds)
- {
- $this->profileIds = $profileIds;
- }
- public function getProfileIds()
- {
- return $this->profileIds;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityAdWordsLinkEntity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $webPropertyRefType = 'Postman_Google_Service_Analytics_WebPropertyRef';
- protected $webPropertyRefDataType = '';
-
-
- public function setWebPropertyRef(Postman_Google_Service_Analytics_WebPropertyRef $webPropertyRef)
- {
- $this->webPropertyRef = $webPropertyRef;
- }
- public function getWebPropertyRef()
- {
- return $this->webPropertyRef;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityAdWordsLinks extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_EntityAdWordsLink';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityUserLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $entityType = 'Postman_Google_Service_Analytics_EntityUserLinkEntity';
- protected $entityDataType = '';
- public $id;
- public $kind;
- protected $permissionsType = 'Postman_Google_Service_Analytics_EntityUserLinkPermissions';
- protected $permissionsDataType = '';
- public $selfLink;
- protected $userRefType = 'Postman_Google_Service_Analytics_UserRef';
- protected $userRefDataType = '';
-
-
- public function setEntity(Postman_Google_Service_Analytics_EntityUserLinkEntity $entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- 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 setPermissions(Postman_Google_Service_Analytics_EntityUserLinkPermissions $permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUserRef(Postman_Google_Service_Analytics_UserRef $userRef)
- {
- $this->userRef = $userRef;
- }
- public function getUserRef()
- {
- return $this->userRef;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityUserLinkEntity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accountRefType = 'Postman_Google_Service_Analytics_AccountRef';
- protected $accountRefDataType = '';
- protected $profileRefType = 'Postman_Google_Service_Analytics_ProfileRef';
- protected $profileRefDataType = '';
- protected $webPropertyRefType = 'Postman_Google_Service_Analytics_WebPropertyRef';
- protected $webPropertyRefDataType = '';
-
-
- public function setAccountRef(Postman_Google_Service_Analytics_AccountRef $accountRef)
- {
- $this->accountRef = $accountRef;
- }
- public function getAccountRef()
- {
- return $this->accountRef;
- }
- public function setProfileRef(Postman_Google_Service_Analytics_ProfileRef $profileRef)
- {
- $this->profileRef = $profileRef;
- }
- public function getProfileRef()
- {
- return $this->profileRef;
- }
- public function setWebPropertyRef(Postman_Google_Service_Analytics_WebPropertyRef $webPropertyRef)
- {
- $this->webPropertyRef = $webPropertyRef;
- }
- public function getWebPropertyRef()
- {
- return $this->webPropertyRef;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityUserLinkPermissions extends Postman_Google_Collection
-{
- protected $collection_key = 'local';
- protected $internal_gapi_mappings = array(
- );
- public $effective;
- public $local;
-
-
- public function setEffective($effective)
- {
- $this->effective = $effective;
- }
- public function getEffective()
- {
- return $this->effective;
- }
- public function setLocal($local)
- {
- $this->local = $local;
- }
- public function getLocal()
- {
- return $this->local;
- }
-}
-
-class Postman_Google_Service_Analytics_EntityUserLinks extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_EntityUserLink';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_Experiment extends Postman_Google_Collection
-{
- protected $collection_key = 'variations';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $created;
- public $description;
- public $editableInGaUi;
- public $endTime;
- public $equalWeighting;
- public $id;
- public $internalWebPropertyId;
- public $kind;
- public $minimumExperimentLengthInDays;
- public $name;
- public $objectiveMetric;
- public $optimizationType;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_ExperimentParentLink';
- protected $parentLinkDataType = '';
- public $profileId;
- public $reasonExperimentEnded;
- public $rewriteVariationUrlsAsOriginal;
- public $selfLink;
- public $servingFramework;
- public $snippet;
- public $startTime;
- public $status;
- public $trafficCoverage;
- public $updated;
- protected $variationsType = 'Postman_Google_Service_Analytics_ExperimentVariations';
- protected $variationsDataType = 'array';
- public $webPropertyId;
- public $winnerConfidenceLevel;
- public $winnerFound;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEditableInGaUi($editableInGaUi)
- {
- $this->editableInGaUi = $editableInGaUi;
- }
- public function getEditableInGaUi()
- {
- return $this->editableInGaUi;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setEqualWeighting($equalWeighting)
- {
- $this->equalWeighting = $equalWeighting;
- }
- public function getEqualWeighting()
- {
- return $this->equalWeighting;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMinimumExperimentLengthInDays($minimumExperimentLengthInDays)
- {
- $this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays;
- }
- public function getMinimumExperimentLengthInDays()
- {
- return $this->minimumExperimentLengthInDays;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setObjectiveMetric($objectiveMetric)
- {
- $this->objectiveMetric = $objectiveMetric;
- }
- public function getObjectiveMetric()
- {
- return $this->objectiveMetric;
- }
- public function setOptimizationType($optimizationType)
- {
- $this->optimizationType = $optimizationType;
- }
- public function getOptimizationType()
- {
- return $this->optimizationType;
- }
- public function setParentLink(Postman_Google_Service_Analytics_ExperimentParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setReasonExperimentEnded($reasonExperimentEnded)
- {
- $this->reasonExperimentEnded = $reasonExperimentEnded;
- }
- public function getReasonExperimentEnded()
- {
- return $this->reasonExperimentEnded;
- }
- public function setRewriteVariationUrlsAsOriginal($rewriteVariationUrlsAsOriginal)
- {
- $this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal;
- }
- public function getRewriteVariationUrlsAsOriginal()
- {
- return $this->rewriteVariationUrlsAsOriginal;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setServingFramework($servingFramework)
- {
- $this->servingFramework = $servingFramework;
- }
- public function getServingFramework()
- {
- return $this->servingFramework;
- }
- public function setSnippet($snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTrafficCoverage($trafficCoverage)
- {
- $this->trafficCoverage = $trafficCoverage;
- }
- public function getTrafficCoverage()
- {
- return $this->trafficCoverage;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVariations($variations)
- {
- $this->variations = $variations;
- }
- public function getVariations()
- {
- return $this->variations;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
- public function setWinnerConfidenceLevel($winnerConfidenceLevel)
- {
- $this->winnerConfidenceLevel = $winnerConfidenceLevel;
- }
- public function getWinnerConfidenceLevel()
- {
- return $this->winnerConfidenceLevel;
- }
- public function setWinnerFound($winnerFound)
- {
- $this->winnerFound = $winnerFound;
- }
- public function getWinnerFound()
- {
- return $this->winnerFound;
- }
-}
-
-class Postman_Google_Service_Analytics_ExperimentParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_ExperimentVariations extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $status;
- public $url;
- public $weight;
- public $won;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWeight($weight)
- {
- $this->weight = $weight;
- }
- public function getWeight()
- {
- return $this->weight;
- }
- public function setWon($won)
- {
- $this->won = $won;
- }
- public function getWon()
- {
- return $this->won;
- }
-}
-
-class Postman_Google_Service_Analytics_Experiments extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Experiment';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_Filter extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $advancedDetailsType = 'Postman_Google_Service_Analytics_FilterAdvancedDetails';
- protected $advancedDetailsDataType = '';
- public $created;
- protected $excludeDetailsType = 'Postman_Google_Service_Analytics_FilterExpression';
- protected $excludeDetailsDataType = '';
- public $id;
- protected $includeDetailsType = 'Postman_Google_Service_Analytics_FilterExpression';
- protected $includeDetailsDataType = '';
- public $kind;
- protected $lowercaseDetailsType = 'Postman_Google_Service_Analytics_FilterLowercaseDetails';
- protected $lowercaseDetailsDataType = '';
- public $name;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_FilterParentLink';
- protected $parentLinkDataType = '';
- protected $searchAndReplaceDetailsType = 'Postman_Google_Service_Analytics_FilterSearchAndReplaceDetails';
- protected $searchAndReplaceDetailsDataType = '';
- public $selfLink;
- public $type;
- public $updated;
- protected $uppercaseDetailsType = 'Postman_Google_Service_Analytics_FilterUppercaseDetails';
- protected $uppercaseDetailsDataType = '';
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAdvancedDetails(Postman_Google_Service_Analytics_FilterAdvancedDetails $advancedDetails)
- {
- $this->advancedDetails = $advancedDetails;
- }
- public function getAdvancedDetails()
- {
- return $this->advancedDetails;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setExcludeDetails(Postman_Google_Service_Analytics_FilterExpression $excludeDetails)
- {
- $this->excludeDetails = $excludeDetails;
- }
- public function getExcludeDetails()
- {
- return $this->excludeDetails;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIncludeDetails(Postman_Google_Service_Analytics_FilterExpression $includeDetails)
- {
- $this->includeDetails = $includeDetails;
- }
- public function getIncludeDetails()
- {
- return $this->includeDetails;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLowercaseDetails(Postman_Google_Service_Analytics_FilterLowercaseDetails $lowercaseDetails)
- {
- $this->lowercaseDetails = $lowercaseDetails;
- }
- public function getLowercaseDetails()
- {
- return $this->lowercaseDetails;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setParentLink(Postman_Google_Service_Analytics_FilterParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setSearchAndReplaceDetails(Postman_Google_Service_Analytics_FilterSearchAndReplaceDetails $searchAndReplaceDetails)
- {
- $this->searchAndReplaceDetails = $searchAndReplaceDetails;
- }
- public function getSearchAndReplaceDetails()
- {
- return $this->searchAndReplaceDetails;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUppercaseDetails(Postman_Google_Service_Analytics_FilterUppercaseDetails $uppercaseDetails)
- {
- $this->uppercaseDetails = $uppercaseDetails;
- }
- public function getUppercaseDetails()
- {
- return $this->uppercaseDetails;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterAdvancedDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $caseSensitive;
- public $extractA;
- public $extractB;
- public $fieldA;
- public $fieldARequired;
- public $fieldB;
- public $fieldBRequired;
- public $outputConstructor;
- public $outputToField;
- public $overrideOutputField;
-
-
- public function setCaseSensitive($caseSensitive)
- {
- $this->caseSensitive = $caseSensitive;
- }
- public function getCaseSensitive()
- {
- return $this->caseSensitive;
- }
- public function setExtractA($extractA)
- {
- $this->extractA = $extractA;
- }
- public function getExtractA()
- {
- return $this->extractA;
- }
- public function setExtractB($extractB)
- {
- $this->extractB = $extractB;
- }
- public function getExtractB()
- {
- return $this->extractB;
- }
- public function setFieldA($fieldA)
- {
- $this->fieldA = $fieldA;
- }
- public function getFieldA()
- {
- return $this->fieldA;
- }
- public function setFieldARequired($fieldARequired)
- {
- $this->fieldARequired = $fieldARequired;
- }
- public function getFieldARequired()
- {
- return $this->fieldARequired;
- }
- public function setFieldB($fieldB)
- {
- $this->fieldB = $fieldB;
- }
- public function getFieldB()
- {
- return $this->fieldB;
- }
- public function setFieldBRequired($fieldBRequired)
- {
- $this->fieldBRequired = $fieldBRequired;
- }
- public function getFieldBRequired()
- {
- return $this->fieldBRequired;
- }
- public function setOutputConstructor($outputConstructor)
- {
- $this->outputConstructor = $outputConstructor;
- }
- public function getOutputConstructor()
- {
- return $this->outputConstructor;
- }
- public function setOutputToField($outputToField)
- {
- $this->outputToField = $outputToField;
- }
- public function getOutputToField()
- {
- return $this->outputToField;
- }
- public function setOverrideOutputField($overrideOutputField)
- {
- $this->overrideOutputField = $overrideOutputField;
- }
- public function getOverrideOutputField()
- {
- return $this->overrideOutputField;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterExpression extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $caseSensitive;
- public $expressionValue;
- public $field;
- public $kind;
- public $matchType;
-
-
- public function setCaseSensitive($caseSensitive)
- {
- $this->caseSensitive = $caseSensitive;
- }
- public function getCaseSensitive()
- {
- return $this->caseSensitive;
- }
- public function setExpressionValue($expressionValue)
- {
- $this->expressionValue = $expressionValue;
- }
- public function getExpressionValue()
- {
- return $this->expressionValue;
- }
- public function setField($field)
- {
- $this->field = $field;
- }
- public function getField()
- {
- return $this->field;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMatchType($matchType)
- {
- $this->matchType = $matchType;
- }
- public function getMatchType()
- {
- return $this->matchType;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterLowercaseDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $field;
-
-
- public function setField($field)
- {
- $this->field = $field;
- }
- public function getField()
- {
- return $this->field;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterRef extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $href;
- public $id;
- public $kind;
- public $name;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterSearchAndReplaceDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $caseSensitive;
- public $field;
- public $replaceString;
- public $searchString;
-
-
- public function setCaseSensitive($caseSensitive)
- {
- $this->caseSensitive = $caseSensitive;
- }
- public function getCaseSensitive()
- {
- return $this->caseSensitive;
- }
- public function setField($field)
- {
- $this->field = $field;
- }
- public function getField()
- {
- return $this->field;
- }
- public function setReplaceString($replaceString)
- {
- $this->replaceString = $replaceString;
- }
- public function getReplaceString()
- {
- return $this->replaceString;
- }
- public function setSearchString($searchString)
- {
- $this->searchString = $searchString;
- }
- public function getSearchString()
- {
- return $this->searchString;
- }
-}
-
-class Postman_Google_Service_Analytics_FilterUppercaseDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $field;
-
-
- public function setField($field)
- {
- $this->field = $field;
- }
- public function getField()
- {
- return $this->field;
- }
-}
-
-class Postman_Google_Service_Analytics_Filters extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Filter';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_GaData extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- protected $columnHeadersType = 'Postman_Google_Service_Analytics_GaDataColumnHeaders';
- protected $columnHeadersDataType = 'array';
- public $containsSampledData;
- protected $dataTableType = 'Postman_Google_Service_Analytics_GaDataDataTable';
- protected $dataTableDataType = '';
- public $id;
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- protected $profileInfoType = 'Postman_Google_Service_Analytics_GaDataProfileInfo';
- protected $profileInfoDataType = '';
- protected $queryType = 'Postman_Google_Service_Analytics_GaDataQuery';
- protected $queryDataType = '';
- public $rows;
- public $sampleSize;
- public $sampleSpace;
- public $selfLink;
- public $totalResults;
- public $totalsForAllResults;
-
-
- public function setColumnHeaders($columnHeaders)
- {
- $this->columnHeaders = $columnHeaders;
- }
- public function getColumnHeaders()
- {
- return $this->columnHeaders;
- }
- public function setContainsSampledData($containsSampledData)
- {
- $this->containsSampledData = $containsSampledData;
- }
- public function getContainsSampledData()
- {
- return $this->containsSampledData;
- }
- public function setDataTable(Postman_Google_Service_Analytics_GaDataDataTable $dataTable)
- {
- $this->dataTable = $dataTable;
- }
- public function getDataTable()
- {
- return $this->dataTable;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- 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 setProfileInfo(Postman_Google_Service_Analytics_GaDataProfileInfo $profileInfo)
- {
- $this->profileInfo = $profileInfo;
- }
- public function getProfileInfo()
- {
- return $this->profileInfo;
- }
- public function setQuery(Postman_Google_Service_Analytics_GaDataQuery $query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setSampleSize($sampleSize)
- {
- $this->sampleSize = $sampleSize;
- }
- public function getSampleSize()
- {
- return $this->sampleSize;
- }
- public function setSampleSpace($sampleSpace)
- {
- $this->sampleSpace = $sampleSpace;
- }
- public function getSampleSpace()
- {
- return $this->sampleSpace;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
- public function setTotalsForAllResults($totalsForAllResults)
- {
- $this->totalsForAllResults = $totalsForAllResults;
- }
- public function getTotalsForAllResults()
- {
- return $this->totalsForAllResults;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataColumnHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnType;
- public $dataType;
- public $name;
-
-
- public function setColumnType($columnType)
- {
- $this->columnType = $columnType;
- }
- public function getColumnType()
- {
- return $this->columnType;
- }
- public function setDataType($dataType)
- {
- $this->dataType = $dataType;
- }
- public function getDataType()
- {
- return $this->dataType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataDataTable extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- protected $colsType = 'Postman_Google_Service_Analytics_GaDataDataTableCols';
- protected $colsDataType = 'array';
- protected $rowsType = 'Postman_Google_Service_Analytics_GaDataDataTableRows';
- protected $rowsDataType = 'array';
-
-
- public function setCols($cols)
- {
- $this->cols = $cols;
- }
- public function getCols()
- {
- return $this->cols;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataDataTableCols extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $label;
- public $type;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataDataTableRows extends Postman_Google_Collection
-{
- protected $collection_key = 'c';
- protected $internal_gapi_mappings = array(
- );
- protected $cType = 'Postman_Google_Service_Analytics_GaDataDataTableRowsC';
- protected $cDataType = 'array';
-
-
- public function setC($c)
- {
- $this->c = $c;
- }
- public function getC()
- {
- return $this->c;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataDataTableRowsC extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $v;
-
-
- public function setV($v)
- {
- $this->v = $v;
- }
- public function getV()
- {
- return $this->v;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataProfileInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $internalWebPropertyId;
- public $profileId;
- public $profileName;
- public $tableId;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setProfileName($profileName)
- {
- $this->profileName = $profileName;
- }
- public function getProfileName()
- {
- return $this->profileName;
- }
- public function setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataQuery extends Postman_Google_Collection
-{
- protected $collection_key = 'sort';
- protected $internal_gapi_mappings = array(
- "endDate" => "end-date",
- "maxResults" => "max-results",
- "startDate" => "start-date",
- "startIndex" => "start-index",
- );
- public $dimensions;
- public $endDate;
- public $filters;
- public $ids;
- public $maxResults;
- public $metrics;
- public $samplingLevel;
- public $segment;
- public $sort;
- public $startDate;
- public $startIndex;
-
-
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setIds($ids)
- {
- $this->ids = $ids;
- }
- public function getIds()
- {
- return $this->ids;
- }
- public function setMaxResults($maxResults)
- {
- $this->maxResults = $maxResults;
- }
- public function getMaxResults()
- {
- return $this->maxResults;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setSamplingLevel($samplingLevel)
- {
- $this->samplingLevel = $samplingLevel;
- }
- public function getSamplingLevel()
- {
- return $this->samplingLevel;
- }
- public function setSegment($segment)
- {
- $this->segment = $segment;
- }
- public function getSegment()
- {
- return $this->segment;
- }
- public function setSort($sort)
- {
- $this->sort = $sort;
- }
- public function getSort()
- {
- return $this->sort;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setStartIndex($startIndex)
- {
- $this->startIndex = $startIndex;
- }
- public function getStartIndex()
- {
- return $this->startIndex;
- }
-}
-
-class Postman_Google_Service_Analytics_GaDataTotalsForAllResults extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Analytics_Goal extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $active;
- public $created;
- protected $eventDetailsType = 'Postman_Google_Service_Analytics_GoalEventDetails';
- protected $eventDetailsDataType = '';
- public $id;
- public $internalWebPropertyId;
- public $kind;
- public $name;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_GoalParentLink';
- protected $parentLinkDataType = '';
- public $profileId;
- public $selfLink;
- public $type;
- public $updated;
- protected $urlDestinationDetailsType = 'Postman_Google_Service_Analytics_GoalUrlDestinationDetails';
- protected $urlDestinationDetailsDataType = '';
- public $value;
- protected $visitNumPagesDetailsType = 'Postman_Google_Service_Analytics_GoalVisitNumPagesDetails';
- protected $visitNumPagesDetailsDataType = '';
- protected $visitTimeOnSiteDetailsType = 'Postman_Google_Service_Analytics_GoalVisitTimeOnSiteDetails';
- protected $visitTimeOnSiteDetailsDataType = '';
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setActive($active)
- {
- $this->active = $active;
- }
- public function getActive()
- {
- return $this->active;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setEventDetails(Postman_Google_Service_Analytics_GoalEventDetails $eventDetails)
- {
- $this->eventDetails = $eventDetails;
- }
- public function getEventDetails()
- {
- return $this->eventDetails;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- 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 setParentLink(Postman_Google_Service_Analytics_GoalParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrlDestinationDetails(Postman_Google_Service_Analytics_GoalUrlDestinationDetails $urlDestinationDetails)
- {
- $this->urlDestinationDetails = $urlDestinationDetails;
- }
- public function getUrlDestinationDetails()
- {
- return $this->urlDestinationDetails;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
- public function setVisitNumPagesDetails(Postman_Google_Service_Analytics_GoalVisitNumPagesDetails $visitNumPagesDetails)
- {
- $this->visitNumPagesDetails = $visitNumPagesDetails;
- }
- public function getVisitNumPagesDetails()
- {
- return $this->visitNumPagesDetails;
- }
- public function setVisitTimeOnSiteDetails(Postman_Google_Service_Analytics_GoalVisitTimeOnSiteDetails $visitTimeOnSiteDetails)
- {
- $this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails;
- }
- public function getVisitTimeOnSiteDetails()
- {
- return $this->visitTimeOnSiteDetails;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalEventDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'eventConditions';
- protected $internal_gapi_mappings = array(
- );
- protected $eventConditionsType = 'Postman_Google_Service_Analytics_GoalEventDetailsEventConditions';
- protected $eventConditionsDataType = 'array';
- public $useEventValue;
-
-
- public function setEventConditions($eventConditions)
- {
- $this->eventConditions = $eventConditions;
- }
- public function getEventConditions()
- {
- return $this->eventConditions;
- }
- public function setUseEventValue($useEventValue)
- {
- $this->useEventValue = $useEventValue;
- }
- public function getUseEventValue()
- {
- return $this->useEventValue;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalEventDetailsEventConditions extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $comparisonType;
- public $comparisonValue;
- public $expression;
- public $matchType;
- public $type;
-
-
- public function setComparisonType($comparisonType)
- {
- $this->comparisonType = $comparisonType;
- }
- public function getComparisonType()
- {
- return $this->comparisonType;
- }
- public function setComparisonValue($comparisonValue)
- {
- $this->comparisonValue = $comparisonValue;
- }
- public function getComparisonValue()
- {
- return $this->comparisonValue;
- }
- public function setExpression($expression)
- {
- $this->expression = $expression;
- }
- public function getExpression()
- {
- return $this->expression;
- }
- public function setMatchType($matchType)
- {
- $this->matchType = $matchType;
- }
- public function getMatchType()
- {
- return $this->matchType;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalUrlDestinationDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'steps';
- protected $internal_gapi_mappings = array(
- );
- public $caseSensitive;
- public $firstStepRequired;
- public $matchType;
- protected $stepsType = 'Postman_Google_Service_Analytics_GoalUrlDestinationDetailsSteps';
- protected $stepsDataType = 'array';
- public $url;
-
-
- public function setCaseSensitive($caseSensitive)
- {
- $this->caseSensitive = $caseSensitive;
- }
- public function getCaseSensitive()
- {
- return $this->caseSensitive;
- }
- public function setFirstStepRequired($firstStepRequired)
- {
- $this->firstStepRequired = $firstStepRequired;
- }
- public function getFirstStepRequired()
- {
- return $this->firstStepRequired;
- }
- public function setMatchType($matchType)
- {
- $this->matchType = $matchType;
- }
- public function getMatchType()
- {
- return $this->matchType;
- }
- public function setSteps($steps)
- {
- $this->steps = $steps;
- }
- public function getSteps()
- {
- return $this->steps;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalUrlDestinationDetailsSteps extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $number;
- public $url;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNumber($number)
- {
- $this->number = $number;
- }
- public function getNumber()
- {
- return $this->number;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalVisitNumPagesDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $comparisonType;
- public $comparisonValue;
-
-
- public function setComparisonType($comparisonType)
- {
- $this->comparisonType = $comparisonType;
- }
- public function getComparisonType()
- {
- return $this->comparisonType;
- }
- public function setComparisonValue($comparisonValue)
- {
- $this->comparisonValue = $comparisonValue;
- }
- public function getComparisonValue()
- {
- return $this->comparisonValue;
- }
-}
-
-class Postman_Google_Service_Analytics_GoalVisitTimeOnSiteDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $comparisonType;
- public $comparisonValue;
-
-
- public function setComparisonType($comparisonType)
- {
- $this->comparisonType = $comparisonType;
- }
- public function getComparisonType()
- {
- return $this->comparisonType;
- }
- public function setComparisonValue($comparisonValue)
- {
- $this->comparisonValue = $comparisonValue;
- }
- public function getComparisonValue()
- {
- return $this->comparisonValue;
- }
-}
-
-class Postman_Google_Service_Analytics_Goals extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Goal';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_McfData extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- protected $columnHeadersType = 'Postman_Google_Service_Analytics_McfDataColumnHeaders';
- protected $columnHeadersDataType = 'array';
- public $containsSampledData;
- public $id;
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- protected $profileInfoType = 'Postman_Google_Service_Analytics_McfDataProfileInfo';
- protected $profileInfoDataType = '';
- protected $queryType = 'Postman_Google_Service_Analytics_McfDataQuery';
- protected $queryDataType = '';
- protected $rowsType = 'Postman_Google_Service_Analytics_McfDataRows';
- protected $rowsDataType = 'array';
- public $sampleSize;
- public $sampleSpace;
- public $selfLink;
- public $totalResults;
- public $totalsForAllResults;
-
-
- public function setColumnHeaders($columnHeaders)
- {
- $this->columnHeaders = $columnHeaders;
- }
- public function getColumnHeaders()
- {
- return $this->columnHeaders;
- }
- public function setContainsSampledData($containsSampledData)
- {
- $this->containsSampledData = $containsSampledData;
- }
- public function getContainsSampledData()
- {
- return $this->containsSampledData;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- 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 setProfileInfo(Postman_Google_Service_Analytics_McfDataProfileInfo $profileInfo)
- {
- $this->profileInfo = $profileInfo;
- }
- public function getProfileInfo()
- {
- return $this->profileInfo;
- }
- public function setQuery(Postman_Google_Service_Analytics_McfDataQuery $query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setSampleSize($sampleSize)
- {
- $this->sampleSize = $sampleSize;
- }
- public function getSampleSize()
- {
- return $this->sampleSize;
- }
- public function setSampleSpace($sampleSpace)
- {
- $this->sampleSpace = $sampleSpace;
- }
- public function getSampleSpace()
- {
- return $this->sampleSpace;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
- public function setTotalsForAllResults($totalsForAllResults)
- {
- $this->totalsForAllResults = $totalsForAllResults;
- }
- public function getTotalsForAllResults()
- {
- return $this->totalsForAllResults;
- }
-}
-
-class Postman_Google_Service_Analytics_McfDataColumnHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnType;
- public $dataType;
- public $name;
-
-
- public function setColumnType($columnType)
- {
- $this->columnType = $columnType;
- }
- public function getColumnType()
- {
- return $this->columnType;
- }
- public function setDataType($dataType)
- {
- $this->dataType = $dataType;
- }
- public function getDataType()
- {
- return $this->dataType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Analytics_McfDataProfileInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $internalWebPropertyId;
- public $profileId;
- public $profileName;
- public $tableId;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setProfileName($profileName)
- {
- $this->profileName = $profileName;
- }
- public function getProfileName()
- {
- return $this->profileName;
- }
- public function setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_McfDataQuery extends Postman_Google_Collection
-{
- protected $collection_key = 'sort';
- protected $internal_gapi_mappings = array(
- "endDate" => "end-date",
- "maxResults" => "max-results",
- "startDate" => "start-date",
- "startIndex" => "start-index",
- );
- public $dimensions;
- public $endDate;
- public $filters;
- public $ids;
- public $maxResults;
- public $metrics;
- public $samplingLevel;
- public $segment;
- public $sort;
- public $startDate;
- public $startIndex;
-
-
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setIds($ids)
- {
- $this->ids = $ids;
- }
- public function getIds()
- {
- return $this->ids;
- }
- public function setMaxResults($maxResults)
- {
- $this->maxResults = $maxResults;
- }
- public function getMaxResults()
- {
- return $this->maxResults;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setSamplingLevel($samplingLevel)
- {
- $this->samplingLevel = $samplingLevel;
- }
- public function getSamplingLevel()
- {
- return $this->samplingLevel;
- }
- public function setSegment($segment)
- {
- $this->segment = $segment;
- }
- public function getSegment()
- {
- return $this->segment;
- }
- public function setSort($sort)
- {
- $this->sort = $sort;
- }
- public function getSort()
- {
- return $this->sort;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setStartIndex($startIndex)
- {
- $this->startIndex = $startIndex;
- }
- public function getStartIndex()
- {
- return $this->startIndex;
- }
-}
-
-class Postman_Google_Service_Analytics_McfDataRows extends Postman_Google_Collection
-{
- protected $collection_key = 'conversionPathValue';
- protected $internal_gapi_mappings = array(
- );
- protected $conversionPathValueType = 'Postman_Google_Service_Analytics_McfDataRowsConversionPathValue';
- protected $conversionPathValueDataType = 'array';
- public $primitiveValue;
-
-
- public function setConversionPathValue($conversionPathValue)
- {
- $this->conversionPathValue = $conversionPathValue;
- }
- public function getConversionPathValue()
- {
- return $this->conversionPathValue;
- }
- public function setPrimitiveValue($primitiveValue)
- {
- $this->primitiveValue = $primitiveValue;
- }
- public function getPrimitiveValue()
- {
- return $this->primitiveValue;
- }
-}
-
-class Postman_Google_Service_Analytics_McfDataRowsConversionPathValue extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $interactionType;
- public $nodeValue;
-
-
- public function setInteractionType($interactionType)
- {
- $this->interactionType = $interactionType;
- }
- public function getInteractionType()
- {
- return $this->interactionType;
- }
- public function setNodeValue($nodeValue)
- {
- $this->nodeValue = $nodeValue;
- }
- public function getNodeValue()
- {
- return $this->nodeValue;
- }
-}
-
-class Postman_Google_Service_Analytics_McfDataTotalsForAllResults extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Analytics_Profile extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $childLinkType = 'Postman_Google_Service_Analytics_ProfileChildLink';
- protected $childLinkDataType = '';
- public $created;
- public $currency;
- public $defaultPage;
- public $eCommerceTracking;
- public $enhancedECommerceTracking;
- public $excludeQueryParameters;
- public $id;
- public $internalWebPropertyId;
- public $kind;
- public $name;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_ProfileParentLink';
- protected $parentLinkDataType = '';
- protected $permissionsType = 'Postman_Google_Service_Analytics_ProfilePermissions';
- protected $permissionsDataType = '';
- public $selfLink;
- public $siteSearchCategoryParameters;
- public $siteSearchQueryParameters;
- public $stripSiteSearchCategoryParameters;
- public $stripSiteSearchQueryParameters;
- public $timezone;
- public $type;
- public $updated;
- public $webPropertyId;
- public $websiteUrl;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setChildLink(Postman_Google_Service_Analytics_ProfileChildLink $childLink)
- {
- $this->childLink = $childLink;
- }
- public function getChildLink()
- {
- return $this->childLink;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- }
- public function getCurrency()
- {
- return $this->currency;
- }
- public function setDefaultPage($defaultPage)
- {
- $this->defaultPage = $defaultPage;
- }
- public function getDefaultPage()
- {
- return $this->defaultPage;
- }
- public function setECommerceTracking($eCommerceTracking)
- {
- $this->eCommerceTracking = $eCommerceTracking;
- }
- public function getECommerceTracking()
- {
- return $this->eCommerceTracking;
- }
- public function setEnhancedECommerceTracking($enhancedECommerceTracking)
- {
- $this->enhancedECommerceTracking = $enhancedECommerceTracking;
- }
- public function getEnhancedECommerceTracking()
- {
- return $this->enhancedECommerceTracking;
- }
- public function setExcludeQueryParameters($excludeQueryParameters)
- {
- $this->excludeQueryParameters = $excludeQueryParameters;
- }
- public function getExcludeQueryParameters()
- {
- return $this->excludeQueryParameters;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- 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 setParentLink(Postman_Google_Service_Analytics_ProfileParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setPermissions(Postman_Google_Service_Analytics_ProfilePermissions $permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSiteSearchCategoryParameters($siteSearchCategoryParameters)
- {
- $this->siteSearchCategoryParameters = $siteSearchCategoryParameters;
- }
- public function getSiteSearchCategoryParameters()
- {
- return $this->siteSearchCategoryParameters;
- }
- public function setSiteSearchQueryParameters($siteSearchQueryParameters)
- {
- $this->siteSearchQueryParameters = $siteSearchQueryParameters;
- }
- public function getSiteSearchQueryParameters()
- {
- return $this->siteSearchQueryParameters;
- }
- public function setStripSiteSearchCategoryParameters($stripSiteSearchCategoryParameters)
- {
- $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters;
- }
- public function getStripSiteSearchCategoryParameters()
- {
- return $this->stripSiteSearchCategoryParameters;
- }
- public function setStripSiteSearchQueryParameters($stripSiteSearchQueryParameters)
- {
- $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters;
- }
- public function getStripSiteSearchQueryParameters()
- {
- return $this->stripSiteSearchQueryParameters;
- }
- public function setTimezone($timezone)
- {
- $this->timezone = $timezone;
- }
- public function getTimezone()
- {
- return $this->timezone;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
- public function setWebsiteUrl($websiteUrl)
- {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl()
- {
- return $this->websiteUrl;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfileChildLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfileFilterLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $filterRefType = 'Postman_Google_Service_Analytics_FilterRef';
- protected $filterRefDataType = '';
- public $id;
- public $kind;
- protected $profileRefType = 'Postman_Google_Service_Analytics_ProfileRef';
- protected $profileRefDataType = '';
- public $rank;
- public $selfLink;
-
-
- public function setFilterRef(Postman_Google_Service_Analytics_FilterRef $filterRef)
- {
- $this->filterRef = $filterRef;
- }
- public function getFilterRef()
- {
- return $this->filterRef;
- }
- 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 setProfileRef(Postman_Google_Service_Analytics_ProfileRef $profileRef)
- {
- $this->profileRef = $profileRef;
- }
- public function getProfileRef()
- {
- return $this->profileRef;
- }
- public function setRank($rank)
- {
- $this->rank = $rank;
- }
- public function getRank()
- {
- return $this->rank;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfileFilterLinks extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_ProfileFilterLink';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfileParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfilePermissions extends Postman_Google_Collection
-{
- protected $collection_key = 'effective';
- protected $internal_gapi_mappings = array(
- );
- public $effective;
-
-
- public function setEffective($effective)
- {
- $this->effective = $effective;
- }
- public function getEffective()
- {
- return $this->effective;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfileRef extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $href;
- public $id;
- public $internalWebPropertyId;
- public $kind;
- public $name;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- 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 setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_ProfileSummary extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
- 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 setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_Profiles extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Profile';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_RealtimeData extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- protected $columnHeadersType = 'Postman_Google_Service_Analytics_RealtimeDataColumnHeaders';
- protected $columnHeadersDataType = 'array';
- public $id;
- public $kind;
- protected $profileInfoType = 'Postman_Google_Service_Analytics_RealtimeDataProfileInfo';
- protected $profileInfoDataType = '';
- protected $queryType = 'Postman_Google_Service_Analytics_RealtimeDataQuery';
- protected $queryDataType = '';
- public $rows;
- public $selfLink;
- public $totalResults;
- public $totalsForAllResults;
-
-
- public function setColumnHeaders($columnHeaders)
- {
- $this->columnHeaders = $columnHeaders;
- }
- public function getColumnHeaders()
- {
- return $this->columnHeaders;
- }
- 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 setProfileInfo(Postman_Google_Service_Analytics_RealtimeDataProfileInfo $profileInfo)
- {
- $this->profileInfo = $profileInfo;
- }
- public function getProfileInfo()
- {
- return $this->profileInfo;
- }
- public function setQuery(Postman_Google_Service_Analytics_RealtimeDataQuery $query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
- public function setTotalsForAllResults($totalsForAllResults)
- {
- $this->totalsForAllResults = $totalsForAllResults;
- }
- public function getTotalsForAllResults()
- {
- return $this->totalsForAllResults;
- }
-}
-
-class Postman_Google_Service_Analytics_RealtimeDataColumnHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnType;
- public $dataType;
- public $name;
-
-
- public function setColumnType($columnType)
- {
- $this->columnType = $columnType;
- }
- public function getColumnType()
- {
- return $this->columnType;
- }
- public function setDataType($dataType)
- {
- $this->dataType = $dataType;
- }
- public function getDataType()
- {
- return $this->dataType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Analytics_RealtimeDataProfileInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $internalWebPropertyId;
- public $profileId;
- public $profileName;
- public $tableId;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setProfileName($profileName)
- {
- $this->profileName = $profileName;
- }
- public function getProfileName()
- {
- return $this->profileName;
- }
- public function setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_RealtimeDataQuery extends Postman_Google_Collection
-{
- protected $collection_key = 'sort';
- protected $internal_gapi_mappings = array(
- "maxResults" => "max-results",
- );
- public $dimensions;
- public $filters;
- public $ids;
- public $maxResults;
- public $metrics;
- public $sort;
-
-
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setIds($ids)
- {
- $this->ids = $ids;
- }
- public function getIds()
- {
- return $this->ids;
- }
- public function setMaxResults($maxResults)
- {
- $this->maxResults = $maxResults;
- }
- public function getMaxResults()
- {
- return $this->maxResults;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setSort($sort)
- {
- $this->sort = $sort;
- }
- public function getSort()
- {
- return $this->sort;
- }
-}
-
-class Postman_Google_Service_Analytics_RealtimeDataTotalsForAllResults extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Analytics_Segment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $created;
- public $definition;
- public $id;
- public $kind;
- public $name;
- public $segmentId;
- public $selfLink;
- public $type;
- public $updated;
-
-
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setDefinition($definition)
- {
- $this->definition = $definition;
- }
- public function getDefinition()
- {
- return $this->definition;
- }
- 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 setSegmentId($segmentId)
- {
- $this->segmentId = $segmentId;
- }
- public function getSegmentId()
- {
- return $this->segmentId;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Analytics_Segments extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Segment';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_UnsampledReport extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "endDate" => "end-date",
- "startDate" => "start-date",
- );
- public $accountId;
- protected $cloudStorageDownloadDetailsType = 'Postman_Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails';
- protected $cloudStorageDownloadDetailsDataType = '';
- public $created;
- public $dimensions;
- public $downloadType;
- protected $driveDownloadDetailsType = 'Postman_Google_Service_Analytics_UnsampledReportDriveDownloadDetails';
- protected $driveDownloadDetailsDataType = '';
- public $endDate;
- public $filters;
- public $id;
- public $kind;
- public $metrics;
- public $profileId;
- public $segment;
- public $selfLink;
- public $startDate;
- public $status;
- public $title;
- public $updated;
- public $webPropertyId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setCloudStorageDownloadDetails(Postman_Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails $cloudStorageDownloadDetails)
- {
- $this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails;
- }
- public function getCloudStorageDownloadDetails()
- {
- return $this->cloudStorageDownloadDetails;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setDownloadType($downloadType)
- {
- $this->downloadType = $downloadType;
- }
- public function getDownloadType()
- {
- return $this->downloadType;
- }
- public function setDriveDownloadDetails(Postman_Google_Service_Analytics_UnsampledReportDriveDownloadDetails $driveDownloadDetails)
- {
- $this->driveDownloadDetails = $driveDownloadDetails;
- }
- public function getDriveDownloadDetails()
- {
- return $this->driveDownloadDetails;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- 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 setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setSegment($segment)
- {
- $this->segment = $segment;
- }
- public function getSegment()
- {
- return $this->segment;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setWebPropertyId($webPropertyId)
- {
- $this->webPropertyId = $webPropertyId;
- }
- public function getWebPropertyId()
- {
- return $this->webPropertyId;
- }
-}
-
-class Postman_Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bucketId;
- public $objectId;
-
-
- public function setBucketId($bucketId)
- {
- $this->bucketId = $bucketId;
- }
- public function getBucketId()
- {
- return $this->bucketId;
- }
- public function setObjectId($objectId)
- {
- $this->objectId = $objectId;
- }
- public function getObjectId()
- {
- return $this->objectId;
- }
-}
-
-class Postman_Google_Service_Analytics_UnsampledReportDriveDownloadDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $documentId;
-
-
- public function setDocumentId($documentId)
- {
- $this->documentId = $documentId;
- }
- public function getDocumentId()
- {
- return $this->documentId;
- }
-}
-
-class Postman_Google_Service_Analytics_UnsampledReports extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_UnsampledReport';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_Upload extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $customDataSourceId;
- public $errors;
- public $id;
- public $kind;
- public $status;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setCustomDataSourceId($customDataSourceId)
- {
- $this->customDataSourceId = $customDataSourceId;
- }
- public function getCustomDataSourceId()
- {
- return $this->customDataSourceId;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- 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 setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Analytics_Uploads extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Upload';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_UserRef extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $id;
- public $kind;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Analytics_WebPropertyRef extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $href;
- public $id;
- public $internalWebPropertyId;
- public $kind;
- public $name;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Analytics_WebPropertySummary extends Postman_Google_Collection
-{
- protected $collection_key = 'profiles';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $internalWebPropertyId;
- public $kind;
- public $level;
- public $name;
- protected $profilesType = 'Postman_Google_Service_Analytics_ProfileSummary';
- protected $profilesDataType = 'array';
- public $websiteUrl;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLevel($level)
- {
- $this->level = $level;
- }
- public function getLevel()
- {
- return $this->level;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProfiles($profiles)
- {
- $this->profiles = $profiles;
- }
- public function getProfiles()
- {
- return $this->profiles;
- }
- public function setWebsiteUrl($websiteUrl)
- {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl()
- {
- return $this->websiteUrl;
- }
-}
-
-class Postman_Google_Service_Analytics_Webproperties extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Analytics_Webproperty';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Analytics_Webproperty extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $childLinkType = 'Postman_Google_Service_Analytics_WebpropertyChildLink';
- protected $childLinkDataType = '';
- public $created;
- public $defaultProfileId;
- public $id;
- public $industryVertical;
- public $internalWebPropertyId;
- public $kind;
- public $level;
- public $name;
- protected $parentLinkType = 'Postman_Google_Service_Analytics_WebpropertyParentLink';
- protected $parentLinkDataType = '';
- protected $permissionsType = 'Postman_Google_Service_Analytics_WebpropertyPermissions';
- protected $permissionsDataType = '';
- public $profileCount;
- public $selfLink;
- public $updated;
- public $websiteUrl;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setChildLink(Postman_Google_Service_Analytics_WebpropertyChildLink $childLink)
- {
- $this->childLink = $childLink;
- }
- public function getChildLink()
- {
- return $this->childLink;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setDefaultProfileId($defaultProfileId)
- {
- $this->defaultProfileId = $defaultProfileId;
- }
- public function getDefaultProfileId()
- {
- return $this->defaultProfileId;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIndustryVertical($industryVertical)
- {
- $this->industryVertical = $industryVertical;
- }
- public function getIndustryVertical()
- {
- return $this->industryVertical;
- }
- public function setInternalWebPropertyId($internalWebPropertyId)
- {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId()
- {
- return $this->internalWebPropertyId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLevel($level)
- {
- $this->level = $level;
- }
- public function getLevel()
- {
- return $this->level;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setParentLink(Postman_Google_Service_Analytics_WebpropertyParentLink $parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setPermissions(Postman_Google_Service_Analytics_WebpropertyPermissions $permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
- public function setProfileCount($profileCount)
- {
- $this->profileCount = $profileCount;
- }
- public function getProfileCount()
- {
- return $this->profileCount;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setWebsiteUrl($websiteUrl)
- {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl()
- {
- return $this->websiteUrl;
- }
-}
-
-class Postman_Google_Service_Analytics_WebpropertyChildLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_WebpropertyParentLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $href;
- public $type;
-
-
- public function setHref($href)
- {
- $this->href = $href;
- }
- public function getHref()
- {
- return $this->href;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Analytics_WebpropertyPermissions extends Postman_Google_Collection
-{
- protected $collection_key = 'effective';
- protected $internal_gapi_mappings = array(
- );
- public $effective;
-
-
- public function setEffective($effective)
- {
- $this->effective = $effective;
- }
- public function getEffective()
- {
- return $this->effective;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AndroidPublisher.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AndroidPublisher.php
deleted file mode 100644
index 13dfe0c..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AndroidPublisher.php
+++ /dev/null
@@ -1,3441 +0,0 @@
-
- * Lets Android application developers access their Google Play accounts.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_AndroidPublisher extends Postman_Google_Service -{ - /** View and manage your Google Play Android Developer account. */ - const ANDROIDPUBLISHER = - "https://www.googleapis.com/auth/androidpublisher"; - - public $edits; - public $edits_apklistings; - public $edits_apks; - public $edits_details; - public $edits_expansionfiles; - public $edits_images; - public $edits_listings; - public $edits_testers; - public $edits_tracks; - public $inappproducts; - public $purchases_products; - public $purchases_subscriptions; - - - /** - * Constructs the internal representation of the AndroidPublisher service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'androidpublisher/v2/applications/'; - $this->version = 'v2'; - $this->serviceName = 'androidpublisher'; - - $this->edits = new Postman_Google_Service_AndroidPublisher_Edits_Resource( - $this, - $this->serviceName, - 'edits', - array( - 'methods' => array( - 'commit' => array( - 'path' => '{packageName}/edits/{editId}:commit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{packageName}/edits/{editId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/edits/{editId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{packageName}/edits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'validate' => array( - 'path' => '{packageName}/edits/{editId}:validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_apklistings = new Postman_Google_Service_AndroidPublisher_EditsApklistings_Resource( - $this, - $this->serviceName, - 'apklistings', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteall' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_apks = new Postman_Google_Service_AndroidPublisher_EditsApks_Resource( - $this, - $this->serviceName, - 'apks', - array( - 'methods' => array( - 'list' => array( - 'path' => '{packageName}/edits/{editId}/apks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/apks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_details = new Postman_Google_Service_AndroidPublisher_EditsDetails_Resource( - $this, - $this->serviceName, - 'details', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/details', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/details', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/details', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_expansionfiles = new Postman_Google_Service_AndroidPublisher_EditsExpansionfiles_Resource( - $this, - $this->serviceName, - 'expansionfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_images = new Postman_Google_Service_AndroidPublisher_EditsImages_Resource( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}/{imageId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteall' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_listings = new Postman_Google_Service_AndroidPublisher_EditsListings_Resource( - $this, - $this->serviceName, - 'listings', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteall' => array( - 'path' => '{packageName}/edits/{editId}/listings', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/listings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_testers = new Postman_Google_Service_AndroidPublisher_EditsTesters_Resource( - $this, - $this->serviceName, - 'testers', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/testers/{track}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/testers/{track}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/testers/{track}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_tracks = new Postman_Google_Service_AndroidPublisher_EditsTracks_Resource( - $this, - $this->serviceName, - 'tracks', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/tracks/{track}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/tracks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/tracks/{track}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/tracks/{track}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->inappproducts = new Postman_Google_Service_AndroidPublisher_Inappproducts_Resource( - $this, - $this->serviceName, - 'inappproducts', - array( - 'methods' => array( - 'batch' => array( - 'path' => 'inappproducts/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{packageName}/inappproducts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoConvertMissingPrices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => '{packageName}/inappproducts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoConvertMissingPrices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoConvertMissingPrices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->purchases_products = new Postman_Google_Service_AndroidPublisher_PurchasesProducts_Resource( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/purchases/products/{productId}/tokens/{token}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->purchases_subscriptions = new Postman_Google_Service_AndroidPublisher_PurchasesSubscriptions_Resource( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'cancel' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'defer' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'refund' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'revoke' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "edits" collection of methods. - * Typical usage is: - *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $edits = $androidpublisherService->edits;
- *
- */
-class Postman_Google_Service_AndroidPublisher_Edits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Commits/applies the changes made in this edit back to the app. (edits.commit)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppEdit
- */
- public function commit($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('commit', array($params), "Postman_Google_Service_AndroidPublisher_AppEdit");
- }
-
- /**
- * Deletes an edit for an app. Creating a new edit will automatically delete any
- * of your previous edits so this method need only be called if you want to
- * preemptively abandon an edit. (edits.delete)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- */
- public function delete($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns information about the edit specified. Calls will fail if the edit is
- * no long active (e.g. has been deleted, superseded or expired). (edits.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppEdit
- */
- public function get($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_AppEdit");
- }
-
- /**
- * Creates a new edit for an app, populated with the app's current state.
- * (edits.insert)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param Postman_Google_AppEdit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppEdit
- */
- public function insert($packageName, Postman_Google_Service_AndroidPublisher_AppEdit $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AndroidPublisher_AppEdit");
- }
-
- /**
- * Checks that the edit can be successfully committed. The edit's changes are
- * not applied to the live app. (edits.validate)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppEdit
- */
- public function validate($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('validate', array($params), "Postman_Google_Service_AndroidPublisher_AppEdit");
- }
-}
-
-/**
- * The "apklistings" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $apklistings = $androidpublisherService->apklistings;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsApklistings_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the APK-specific localized listing for a specified APK and language
- * code. (apklistings.delete)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The APK version code whose APK-specific listings
- * should be read or modified.
- * @param string $language The language code (a BCP-47 language tag) of the APK-
- * specific localized listing to read or modify. For example, to select Austrian
- * German, pass "de-AT".
- * @param array $optParams Optional parameters.
- */
- public function delete($packageName, $editId, $apkVersionCode, $language, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Deletes all the APK-specific localized listings for a specified APK.
- * (apklistings.deleteall)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The APK version code whose APK-specific listings
- * should be read or modified.
- * @param array $optParams Optional parameters.
- */
- public function deleteall($packageName, $editId, $apkVersionCode, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode);
- $params = array_merge($params, $optParams);
- return $this->call('deleteall', array($params));
- }
-
- /**
- * Fetches the APK-specific localized listing for a specified APK and language
- * code. (apklistings.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The APK version code whose APK-specific listings
- * should be read or modified.
- * @param string $language The language code (a BCP-47 language tag) of the APK-
- * specific localized listing to read or modify. For example, to select Austrian
- * German, pass "de-AT".
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ApkListing
- */
- public function get($packageName, $editId, $apkVersionCode, $language, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_ApkListing");
- }
-
- /**
- * Lists all the APK-specific localized listings for a specified APK.
- * (apklistings.listEditsApklistings)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The APK version code whose APK-specific listings
- * should be read or modified.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ApkListingsListResponse
- */
- public function listEditsApklistings($packageName, $editId, $apkVersionCode, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AndroidPublisher_ApkListingsListResponse");
- }
-
- /**
- * Updates or creates the APK-specific localized listing for a specified APK and
- * language code. This method supports patch semantics. (apklistings.patch)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The APK version code whose APK-specific listings
- * should be read or modified.
- * @param string $language The language code (a BCP-47 language tag) of the APK-
- * specific localized listing to read or modify. For example, to select Austrian
- * German, pass "de-AT".
- * @param Postman_Google_ApkListing $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ApkListing
- */
- public function patch($packageName, $editId, $apkVersionCode, $language, Postman_Google_Service_AndroidPublisher_ApkListing $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_ApkListing");
- }
-
- /**
- * Updates or creates the APK-specific localized listing for a specified APK and
- * language code. (apklistings.update)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The APK version code whose APK-specific listings
- * should be read or modified.
- * @param string $language The language code (a BCP-47 language tag) of the APK-
- * specific localized listing to read or modify. For example, to select Austrian
- * German, pass "de-AT".
- * @param Postman_Google_ApkListing $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ApkListing
- */
- public function update($packageName, $editId, $apkVersionCode, $language, Postman_Google_Service_AndroidPublisher_ApkListing $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_ApkListing");
- }
-}
-/**
- * The "apks" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $apks = $androidpublisherService->apks;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsApks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (apks.listEditsApks)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ApksListResponse
- */
- public function listEditsApks($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AndroidPublisher_ApksListResponse");
- }
-
- /**
- * (apks.upload)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Apk
- */
- public function upload($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('upload', array($params), "Postman_Google_Service_AndroidPublisher_Apk");
- }
-}
-/**
- * The "details" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $details = $androidpublisherService->details;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsDetails_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Fetches app details for this edit. This includes the default language and
- * developer support contact information. (details.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppDetails
- */
- public function get($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_AppDetails");
- }
-
- /**
- * Updates app details for this edit. This method supports patch semantics.
- * (details.patch)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param Postman_Google_AppDetails $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppDetails
- */
- public function patch($packageName, $editId, Postman_Google_Service_AndroidPublisher_AppDetails $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_AppDetails");
- }
-
- /**
- * Updates app details for this edit. (details.update)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param Postman_Google_AppDetails $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_AppDetails
- */
- public function update($packageName, $editId, Postman_Google_Service_AndroidPublisher_AppDetails $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_AppDetails");
- }
-}
-/**
- * The "expansionfiles" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $expansionfiles = $androidpublisherService->expansionfiles;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsExpansionfiles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Fetches the Expansion File configuration for the APK specified.
- * (expansionfiles.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The version code of the APK whose Expansion File
- * configuration is being read or modified.
- * @param string $expansionFileType
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ExpansionFile
- */
- public function get($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_ExpansionFile");
- }
-
- /**
- * Updates the APK's Expansion File configuration to reference another APK's
- * Expansion Files. To add a new Expansion File use the Upload method. This
- * method supports patch semantics. (expansionfiles.patch)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The version code of the APK whose Expansion File
- * configuration is being read or modified.
- * @param string $expansionFileType
- * @param Postman_Google_ExpansionFile $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ExpansionFile
- */
- public function patch($packageName, $editId, $apkVersionCode, $expansionFileType, Postman_Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_ExpansionFile");
- }
-
- /**
- * Updates the APK's Expansion File configuration to reference another APK's
- * Expansion Files. To add a new Expansion File use the Upload method.
- * (expansionfiles.update)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The version code of the APK whose Expansion File
- * configuration is being read or modified.
- * @param string $expansionFileType
- * @param Postman_Google_ExpansionFile $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ExpansionFile
- */
- public function update($packageName, $editId, $apkVersionCode, $expansionFileType, Postman_Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_ExpansionFile");
- }
-
- /**
- * Uploads and attaches a new Expansion File to the APK specified.
- * (expansionfiles.upload)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param int $apkVersionCode The version code of the APK whose Expansion File
- * configuration is being read or modified.
- * @param string $expansionFileType
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ExpansionFilesUploadResponse
- */
- public function upload($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType);
- $params = array_merge($params, $optParams);
- return $this->call('upload', array($params), "Postman_Google_Service_AndroidPublisher_ExpansionFilesUploadResponse");
- }
-}
-/**
- * The "images" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $images = $androidpublisherService->images;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsImages_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the image (specified by id) from the edit. (images.delete)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing whose images are to read or modified. For example, to
- * select Austrian German, pass "de-AT".
- * @param string $imageType
- * @param string $imageId Unique identifier an image within the set of images
- * attached to this edit.
- * @param array $optParams Optional parameters.
- */
- public function delete($packageName, $editId, $language, $imageType, $imageId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType, 'imageId' => $imageId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Deletes all images for the specified language and image type.
- * (images.deleteall)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing whose images are to read or modified. For example, to
- * select Austrian German, pass "de-AT".
- * @param string $imageType
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ImagesDeleteAllResponse
- */
- public function deleteall($packageName, $editId, $language, $imageType, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
- $params = array_merge($params, $optParams);
- return $this->call('deleteall', array($params), "Postman_Google_Service_AndroidPublisher_ImagesDeleteAllResponse");
- }
-
- /**
- * Lists all images for the specified language and image type.
- * (images.listEditsImages)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing whose images are to read or modified. For example, to
- * select Austrian German, pass "de-AT".
- * @param string $imageType
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ImagesListResponse
- */
- public function listEditsImages($packageName, $editId, $language, $imageType, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AndroidPublisher_ImagesListResponse");
- }
-
- /**
- * Uploads a new image and adds it to the list of images for the specified
- * language and image type. (images.upload)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing whose images are to read or modified. For example, to
- * select Austrian German, pass "de-AT".
- * @param string $imageType
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ImagesUploadResponse
- */
- public function upload($packageName, $editId, $language, $imageType, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
- $params = array_merge($params, $optParams);
- return $this->call('upload', array($params), "Postman_Google_Service_AndroidPublisher_ImagesUploadResponse");
- }
-}
-/**
- * The "listings" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $listings = $androidpublisherService->listings;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsListings_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified localized store listing from an edit. (listings.delete)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing to read or modify. For example, to select Austrian German,
- * pass "de-AT".
- * @param array $optParams Optional parameters.
- */
- public function delete($packageName, $editId, $language, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Deletes all localized listings from an edit. (listings.deleteall)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- */
- public function deleteall($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('deleteall', array($params));
- }
-
- /**
- * Fetches information about a localized store listing. (listings.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing to read or modify. For example, to select Austrian German,
- * pass "de-AT".
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Listing
- */
- public function get($packageName, $editId, $language, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_Listing");
- }
-
- /**
- * Returns all of the localized store listings attached to this edit.
- * (listings.listEditsListings)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ListingsListResponse
- */
- public function listEditsListings($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AndroidPublisher_ListingsListResponse");
- }
-
- /**
- * Creates or updates a localized store listing. This method supports patch
- * semantics. (listings.patch)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing to read or modify. For example, to select Austrian German,
- * pass "de-AT".
- * @param Postman_Google_Listing $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Listing
- */
- public function patch($packageName, $editId, $language, Postman_Google_Service_AndroidPublisher_Listing $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_Listing");
- }
-
- /**
- * Creates or updates a localized store listing. (listings.update)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $language The language code (a BCP-47 language tag) of the
- * localized listing to read or modify. For example, to select Austrian German,
- * pass "de-AT".
- * @param Postman_Google_Listing $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Listing
- */
- public function update($packageName, $editId, $language, Postman_Google_Service_AndroidPublisher_Listing $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_Listing");
- }
-}
-/**
- * The "testers" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $testers = $androidpublisherService->testers;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsTesters_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (testers.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $track
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Testers
- */
- public function get($packageName, $editId, $track, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_Testers");
- }
-
- /**
- * (testers.patch)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $track
- * @param Postman_Google_Testers $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Testers
- */
- public function patch($packageName, $editId, $track, Postman_Google_Service_AndroidPublisher_Testers $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_Testers");
- }
-
- /**
- * (testers.update)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $track
- * @param Postman_Google_Testers $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Testers
- */
- public function update($packageName, $editId, $track, Postman_Google_Service_AndroidPublisher_Testers $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_Testers");
- }
-}
-/**
- * The "tracks" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $tracks = $androidpublisherService->tracks;
- *
- */
-class Postman_Google_Service_AndroidPublisher_EditsTracks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Fetches the track configuration for the specified track type. Includes the
- * APK version codes that are in this track. (tracks.get)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $track The track type to read or modify.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Track
- */
- public function get($packageName, $editId, $track, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_Track");
- }
-
- /**
- * Lists all the track configurations for this edit. (tracks.listEditsTracks)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_TracksListResponse
- */
- public function listEditsTracks($packageName, $editId, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AndroidPublisher_TracksListResponse");
- }
-
- /**
- * Updates the track configuration for the specified track type. This method
- * supports patch semantics. (tracks.patch)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $track The track type to read or modify.
- * @param Postman_Google_Track $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Track
- */
- public function patch($packageName, $editId, $track, Postman_Google_Service_AndroidPublisher_Track $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_Track");
- }
-
- /**
- * Updates the track configuration for the specified track type. (tracks.update)
- *
- * @param string $packageName Unique identifier for the Android app that is
- * being updated; for example, "com.spiffygame".
- * @param string $editId Unique identifier for this edit.
- * @param string $track The track type to read or modify.
- * @param Postman_Google_Track $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_Track
- */
- public function update($packageName, $editId, $track, Postman_Google_Service_AndroidPublisher_Track $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_Track");
- }
-}
-
-/**
- * The "inappproducts" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $inappproducts = $androidpublisherService->inappproducts;
- *
- */
-class Postman_Google_Service_AndroidPublisher_Inappproducts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (inappproducts.batch)
- *
- * @param Postman_Google_InappproductsBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_InappproductsBatchResponse
- */
- public function batch(Postman_Google_Service_AndroidPublisher_InappproductsBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batch', array($params), "Postman_Google_Service_AndroidPublisher_InappproductsBatchResponse");
- }
-
- /**
- * Delete an in-app product for an app. (inappproducts.delete)
- *
- * @param string $packageName Unique identifier for the Android app with the in-
- * app product; for example, "com.spiffygame".
- * @param string $sku Unique identifier for the in-app product.
- * @param array $optParams Optional parameters.
- */
- public function delete($packageName, $sku, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'sku' => $sku);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns information about the in-app product specified. (inappproducts.get)
- *
- * @param string $packageName
- * @param string $sku Unique identifier for the in-app product.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_InAppProduct
- */
- public function get($packageName, $sku, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'sku' => $sku);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_InAppProduct");
- }
-
- /**
- * Creates a new in-app product for an app. (inappproducts.insert)
- *
- * @param string $packageName Unique identifier for the Android app; for
- * example, "com.spiffygame".
- * @param Postman_Google_InAppProduct $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool autoConvertMissingPrices If true the prices for all regions
- * targeted by the parent app that don't have a price specified for this in-app
- * product will be auto converted to the target currency based on the default
- * price. Defaults to false.
- * @return Postman_Google_Service_AndroidPublisher_InAppProduct
- */
- public function insert($packageName, Postman_Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_AndroidPublisher_InAppProduct");
- }
-
- /**
- * List all the in-app products for an Android app, both subscriptions and
- * managed in-app products.. (inappproducts.listInappproducts)
- *
- * @param string $packageName Unique identifier for the Android app with in-app
- * products; for example, "com.spiffygame".
- * @param array $optParams Optional parameters.
- *
- * @opt_param string token
- * @opt_param string startIndex
- * @opt_param string maxResults
- * @return Postman_Google_Service_AndroidPublisher_InappproductsListResponse
- */
- public function listInappproducts($packageName, $optParams = array())
- {
- $params = array('packageName' => $packageName);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AndroidPublisher_InappproductsListResponse");
- }
-
- /**
- * Updates the details of an in-app product. This method supports patch
- * semantics. (inappproducts.patch)
- *
- * @param string $packageName Unique identifier for the Android app with the in-
- * app product; for example, "com.spiffygame".
- * @param string $sku Unique identifier for the in-app product.
- * @param Postman_Google_InAppProduct $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool autoConvertMissingPrices If true the prices for all regions
- * targeted by the parent app that don't have a price specified for this in-app
- * product will be auto converted to the target currency based on the default
- * price. Defaults to false.
- * @return Postman_Google_Service_AndroidPublisher_InAppProduct
- */
- public function patch($packageName, $sku, Postman_Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_AndroidPublisher_InAppProduct");
- }
-
- /**
- * Updates the details of an in-app product. (inappproducts.update)
- *
- * @param string $packageName Unique identifier for the Android app with the in-
- * app product; for example, "com.spiffygame".
- * @param string $sku Unique identifier for the in-app product.
- * @param Postman_Google_InAppProduct $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool autoConvertMissingPrices If true the prices for all regions
- * targeted by the parent app that don't have a price specified for this in-app
- * product will be auto converted to the target currency based on the default
- * price. Defaults to false.
- * @return Postman_Google_Service_AndroidPublisher_InAppProduct
- */
- public function update($packageName, $sku, Postman_Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AndroidPublisher_InAppProduct");
- }
-}
-
-/**
- * The "purchases" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $purchases = $androidpublisherService->purchases;
- *
- */
-class Postman_Google_Service_AndroidPublisher_Purchases_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "products" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $products = $androidpublisherService->products;
- *
- */
-class Postman_Google_Service_AndroidPublisher_PurchasesProducts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Checks the purchase and consumption status of an inapp item. (products.get)
- *
- * @param string $packageName The package name of the application the inapp
- * product was sold in (for example, 'com.some.thing').
- * @param string $productId The inapp product SKU (for example,
- * 'com.some.thing.inapp1').
- * @param string $token The token provided to the user's device when the inapp
- * product was purchased.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_ProductPurchase
- */
- public function get($packageName, $productId, $token, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'productId' => $productId, 'token' => $token);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_ProductPurchase");
- }
-}
-/**
- * The "subscriptions" collection of methods.
- * Typical usage is:
- *
- * $androidpublisherService = new Postman_Google_Service_AndroidPublisher(...);
- * $subscriptions = $androidpublisherService->subscriptions;
- *
- */
-class Postman_Google_Service_AndroidPublisher_PurchasesSubscriptions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Cancels a user's subscription purchase. The subscription remains valid until
- * its expiration time. (subscriptions.cancel)
- *
- * @param string $packageName The package name of the application for which this
- * subscription was purchased (for example, 'com.some.thing').
- * @param string $subscriptionId The purchased subscription ID (for example,
- * 'monthly001').
- * @param string $token The token provided to the user's device when the
- * subscription was purchased.
- * @param array $optParams Optional parameters.
- */
- public function cancel($packageName, $subscriptionId, $token, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
- $params = array_merge($params, $optParams);
- return $this->call('cancel', array($params));
- }
-
- /**
- * Defers a user's subscription purchase until a specified future expiration
- * time. (subscriptions.defer)
- *
- * @param string $packageName The package name of the application for which this
- * subscription was purchased (for example, 'com.some.thing').
- * @param string $subscriptionId The purchased subscription ID (for example,
- * 'monthly001').
- * @param string $token The token provided to the user's device when the
- * subscription was purchased.
- * @param Postman_Google_SubscriptionPurchasesDeferRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse
- */
- public function defer($packageName, $subscriptionId, $token, Postman_Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest $postBody, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('defer', array($params), "Postman_Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse");
- }
-
- /**
- * Checks whether a user's subscription purchase is valid and returns its expiry
- * time. (subscriptions.get)
- *
- * @param string $packageName The package name of the application for which this
- * subscription was purchased (for example, 'com.some.thing').
- * @param string $subscriptionId The purchased subscription ID (for example,
- * 'monthly001').
- * @param string $token The token provided to the user's device when the
- * subscription was purchased.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AndroidPublisher_SubscriptionPurchase
- */
- public function get($packageName, $subscriptionId, $token, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AndroidPublisher_SubscriptionPurchase");
- }
-
- /**
- * Refunds a user's subscription purchase, but the subscription remains valid
- * until its expiration time and it will continue to recur.
- * (subscriptions.refund)
- *
- * @param string $packageName The package name of the application for which this
- * subscription was purchased (for example, 'com.some.thing').
- * @param string $subscriptionId The purchased subscription ID (for example,
- * 'monthly001').
- * @param string $token The token provided to the user's device when the
- * subscription was purchased.
- * @param array $optParams Optional parameters.
- */
- public function refund($packageName, $subscriptionId, $token, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
- $params = array_merge($params, $optParams);
- return $this->call('refund', array($params));
- }
-
- /**
- * Refunds and immediately revokes a user's subscription purchase. Access to the
- * subscription will be terminated immediately and it will stop recurring.
- * (subscriptions.revoke)
- *
- * @param string $packageName The package name of the application for which this
- * subscription was purchased (for example, 'com.some.thing').
- * @param string $subscriptionId The purchased subscription ID (for example,
- * 'monthly001').
- * @param string $token The token provided to the user's device when the
- * subscription was purchased.
- * @param array $optParams Optional parameters.
- */
- public function revoke($packageName, $subscriptionId, $token, $optParams = array())
- {
- $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
- $params = array_merge($params, $optParams);
- return $this->call('revoke', array($params));
- }
-}
-
-
-
-
-class Postman_Google_Service_AndroidPublisher_Apk extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $binaryType = 'Postman_Google_Service_AndroidPublisher_ApkBinary';
- protected $binaryDataType = '';
- public $versionCode;
-
-
- public function setBinary(Postman_Google_Service_AndroidPublisher_ApkBinary $binary)
- {
- $this->binary = $binary;
- }
- public function getBinary()
- {
- return $this->binary;
- }
- public function setVersionCode($versionCode)
- {
- $this->versionCode = $versionCode;
- }
- public function getVersionCode()
- {
- return $this->versionCode;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ApkBinary extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $sha1;
-
-
- public function setSha1($sha1)
- {
- $this->sha1 = $sha1;
- }
- public function getSha1()
- {
- return $this->sha1;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ApkListing extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $language;
- public $recentChanges;
-
-
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setRecentChanges($recentChanges)
- {
- $this->recentChanges = $recentChanges;
- }
- public function getRecentChanges()
- {
- return $this->recentChanges;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ApkListingsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'listings';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $listingsType = 'Postman_Google_Service_AndroidPublisher_ApkListing';
- protected $listingsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setListings($listings)
- {
- $this->listings = $listings;
- }
- public function getListings()
- {
- return $this->listings;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ApksListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'apks';
- protected $internal_gapi_mappings = array(
- );
- protected $apksType = 'Postman_Google_Service_AndroidPublisher_Apk';
- protected $apksDataType = 'array';
- public $kind;
-
-
- public function setApks($apks)
- {
- $this->apks = $apks;
- }
- public function getApks()
- {
- return $this->apks;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_AppDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $contactEmail;
- public $contactPhone;
- public $contactWebsite;
- public $defaultLanguage;
-
-
- public function setContactEmail($contactEmail)
- {
- $this->contactEmail = $contactEmail;
- }
- public function getContactEmail()
- {
- return $this->contactEmail;
- }
- public function setContactPhone($contactPhone)
- {
- $this->contactPhone = $contactPhone;
- }
- public function getContactPhone()
- {
- return $this->contactPhone;
- }
- public function setContactWebsite($contactWebsite)
- {
- $this->contactWebsite = $contactWebsite;
- }
- public function getContactWebsite()
- {
- return $this->contactWebsite;
- }
- public function setDefaultLanguage($defaultLanguage)
- {
- $this->defaultLanguage = $defaultLanguage;
- }
- public function getDefaultLanguage()
- {
- return $this->defaultLanguage;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_AppEdit extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $expiryTimeSeconds;
- public $id;
-
-
- public function setExpiryTimeSeconds($expiryTimeSeconds)
- {
- $this->expiryTimeSeconds = $expiryTimeSeconds;
- }
- public function getExpiryTimeSeconds()
- {
- return $this->expiryTimeSeconds;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ExpansionFile extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $fileSize;
- public $referencesVersion;
-
-
- public function setFileSize($fileSize)
- {
- $this->fileSize = $fileSize;
- }
- public function getFileSize()
- {
- return $this->fileSize;
- }
- public function setReferencesVersion($referencesVersion)
- {
- $this->referencesVersion = $referencesVersion;
- }
- public function getReferencesVersion()
- {
- return $this->referencesVersion;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ExpansionFilesUploadResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $expansionFileType = 'Postman_Google_Service_AndroidPublisher_ExpansionFile';
- protected $expansionFileDataType = '';
-
-
- public function setExpansionFile(Postman_Google_Service_AndroidPublisher_ExpansionFile $expansionFile)
- {
- $this->expansionFile = $expansionFile;
- }
- public function getExpansionFile()
- {
- return $this->expansionFile;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_Image extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $sha1;
- public $url;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setSha1($sha1)
- {
- $this->sha1 = $sha1;
- }
- public function getSha1()
- {
- return $this->sha1;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ImagesDeleteAllResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'deleted';
- protected $internal_gapi_mappings = array(
- );
- protected $deletedType = 'Postman_Google_Service_AndroidPublisher_Image';
- protected $deletedDataType = 'array';
-
-
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ImagesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'images';
- protected $internal_gapi_mappings = array(
- );
- protected $imagesType = 'Postman_Google_Service_AndroidPublisher_Image';
- protected $imagesDataType = 'array';
-
-
- public function setImages($images)
- {
- $this->images = $images;
- }
- public function getImages()
- {
- return $this->images;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ImagesUploadResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $imageType = 'Postman_Google_Service_AndroidPublisher_Image';
- protected $imageDataType = '';
-
-
- public function setImage(Postman_Google_Service_AndroidPublisher_Image $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InAppProduct extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $defaultLanguage;
- protected $defaultPriceType = 'Postman_Google_Service_AndroidPublisher_Price';
- protected $defaultPriceDataType = '';
- protected $listingsType = 'Postman_Google_Service_AndroidPublisher_InAppProductListing';
- protected $listingsDataType = 'map';
- public $packageName;
- protected $pricesType = 'Postman_Google_Service_AndroidPublisher_Price';
- protected $pricesDataType = 'map';
- public $purchaseType;
- protected $seasonType = 'Postman_Google_Service_AndroidPublisher_Season';
- protected $seasonDataType = '';
- public $sku;
- public $status;
- public $subscriptionPeriod;
- public $trialPeriod;
-
-
- public function setDefaultLanguage($defaultLanguage)
- {
- $this->defaultLanguage = $defaultLanguage;
- }
- public function getDefaultLanguage()
- {
- return $this->defaultLanguage;
- }
- public function setDefaultPrice(Postman_Google_Service_AndroidPublisher_Price $defaultPrice)
- {
- $this->defaultPrice = $defaultPrice;
- }
- public function getDefaultPrice()
- {
- return $this->defaultPrice;
- }
- public function setListings($listings)
- {
- $this->listings = $listings;
- }
- public function getListings()
- {
- return $this->listings;
- }
- public function setPackageName($packageName)
- {
- $this->packageName = $packageName;
- }
- public function getPackageName()
- {
- return $this->packageName;
- }
- public function setPrices($prices)
- {
- $this->prices = $prices;
- }
- public function getPrices()
- {
- return $this->prices;
- }
- public function setPurchaseType($purchaseType)
- {
- $this->purchaseType = $purchaseType;
- }
- public function getPurchaseType()
- {
- return $this->purchaseType;
- }
- public function setSeason(Postman_Google_Service_AndroidPublisher_Season $season)
- {
- $this->season = $season;
- }
- public function getSeason()
- {
- return $this->season;
- }
- public function setSku($sku)
- {
- $this->sku = $sku;
- }
- public function getSku()
- {
- return $this->sku;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setSubscriptionPeriod($subscriptionPeriod)
- {
- $this->subscriptionPeriod = $subscriptionPeriod;
- }
- public function getSubscriptionPeriod()
- {
- return $this->subscriptionPeriod;
- }
- public function setTrialPeriod($trialPeriod)
- {
- $this->trialPeriod = $trialPeriod;
- }
- public function getTrialPeriod()
- {
- return $this->trialPeriod;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InAppProductListing extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $title;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InAppProductListings extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_AndroidPublisher_InAppProductPrices extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entrys';
- protected $internal_gapi_mappings = array(
- );
- protected $entrysType = 'Postman_Google_Service_AndroidPublisher_InappproductsBatchRequestEntry';
- protected $entrysDataType = 'array';
-
-
- public function setEntrys($entrys)
- {
- $this->entrys = $entrys;
- }
- public function getEntrys()
- {
- return $this->entrys;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $inappproductsinsertrequestType = 'Postman_Google_Service_AndroidPublisher_InappproductsInsertRequest';
- protected $inappproductsinsertrequestDataType = '';
- protected $inappproductsupdaterequestType = 'Postman_Google_Service_AndroidPublisher_InappproductsUpdateRequest';
- protected $inappproductsupdaterequestDataType = '';
- public $methodName;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setInappproductsinsertrequest(Postman_Google_Service_AndroidPublisher_InappproductsInsertRequest $inappproductsinsertrequest)
- {
- $this->inappproductsinsertrequest = $inappproductsinsertrequest;
- }
- public function getInappproductsinsertrequest()
- {
- return $this->inappproductsinsertrequest;
- }
- public function setInappproductsupdaterequest(Postman_Google_Service_AndroidPublisher_InappproductsUpdateRequest $inappproductsupdaterequest)
- {
- $this->inappproductsupdaterequest = $inappproductsupdaterequest;
- }
- public function getInappproductsupdaterequest()
- {
- return $this->inappproductsupdaterequest;
- }
- public function setMethodName($methodName)
- {
- $this->methodName = $methodName;
- }
- public function getMethodName()
- {
- return $this->methodName;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entrys';
- protected $internal_gapi_mappings = array(
- );
- protected $entrysType = 'Postman_Google_Service_AndroidPublisher_InappproductsBatchResponseEntry';
- protected $entrysDataType = 'array';
- public $kind;
-
-
- public function setEntrys($entrys)
- {
- $this->entrys = $entrys;
- }
- public function getEntrys()
- {
- return $this->entrys;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $inappproductsinsertresponseType = 'Postman_Google_Service_AndroidPublisher_InappproductsInsertResponse';
- protected $inappproductsinsertresponseDataType = '';
- protected $inappproductsupdateresponseType = 'Postman_Google_Service_AndroidPublisher_InappproductsUpdateResponse';
- protected $inappproductsupdateresponseDataType = '';
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setInappproductsinsertresponse(Postman_Google_Service_AndroidPublisher_InappproductsInsertResponse $inappproductsinsertresponse)
- {
- $this->inappproductsinsertresponse = $inappproductsinsertresponse;
- }
- public function getInappproductsinsertresponse()
- {
- return $this->inappproductsinsertresponse;
- }
- public function setInappproductsupdateresponse(Postman_Google_Service_AndroidPublisher_InappproductsUpdateResponse $inappproductsupdateresponse)
- {
- $this->inappproductsupdateresponse = $inappproductsupdateresponse;
- }
- public function getInappproductsupdateresponse()
- {
- return $this->inappproductsupdateresponse;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsInsertRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $inappproductType = 'Postman_Google_Service_AndroidPublisher_InAppProduct';
- protected $inappproductDataType = '';
-
-
- public function setInappproduct(Postman_Google_Service_AndroidPublisher_InAppProduct $inappproduct)
- {
- $this->inappproduct = $inappproduct;
- }
- public function getInappproduct()
- {
- return $this->inappproduct;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsInsertResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $inappproductType = 'Postman_Google_Service_AndroidPublisher_InAppProduct';
- protected $inappproductDataType = '';
-
-
- public function setInappproduct(Postman_Google_Service_AndroidPublisher_InAppProduct $inappproduct)
- {
- $this->inappproduct = $inappproduct;
- }
- public function getInappproduct()
- {
- return $this->inappproduct;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'inappproduct';
- protected $internal_gapi_mappings = array(
- );
- protected $inappproductType = 'Postman_Google_Service_AndroidPublisher_InAppProduct';
- protected $inappproductDataType = 'array';
- public $kind;
- protected $pageInfoType = 'Postman_Google_Service_AndroidPublisher_PageInfo';
- protected $pageInfoDataType = '';
- protected $tokenPaginationType = 'Postman_Google_Service_AndroidPublisher_TokenPagination';
- protected $tokenPaginationDataType = '';
-
-
- public function setInappproduct($inappproduct)
- {
- $this->inappproduct = $inappproduct;
- }
- public function getInappproduct()
- {
- return $this->inappproduct;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPageInfo(Postman_Google_Service_AndroidPublisher_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setTokenPagination(Postman_Google_Service_AndroidPublisher_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsUpdateRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $inappproductType = 'Postman_Google_Service_AndroidPublisher_InAppProduct';
- protected $inappproductDataType = '';
-
-
- public function setInappproduct(Postman_Google_Service_AndroidPublisher_InAppProduct $inappproduct)
- {
- $this->inappproduct = $inappproduct;
- }
- public function getInappproduct()
- {
- return $this->inappproduct;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_InappproductsUpdateResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $inappproductType = 'Postman_Google_Service_AndroidPublisher_InAppProduct';
- protected $inappproductDataType = '';
-
-
- public function setInappproduct(Postman_Google_Service_AndroidPublisher_InAppProduct $inappproduct)
- {
- $this->inappproduct = $inappproduct;
- }
- public function getInappproduct()
- {
- return $this->inappproduct;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_Listing extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $fullDescription;
- public $language;
- public $shortDescription;
- public $title;
- public $video;
-
-
- public function setFullDescription($fullDescription)
- {
- $this->fullDescription = $fullDescription;
- }
- public function getFullDescription()
- {
- return $this->fullDescription;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setShortDescription($shortDescription)
- {
- $this->shortDescription = $shortDescription;
- }
- public function getShortDescription()
- {
- return $this->shortDescription;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setVideo($video)
- {
- $this->video = $video;
- }
- public function getVideo()
- {
- return $this->video;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ListingsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'listings';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $listingsType = 'Postman_Google_Service_AndroidPublisher_Listing';
- protected $listingsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setListings($listings)
- {
- $this->listings = $listings;
- }
- public function getListings()
- {
- return $this->listings;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_MonthDay extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $day;
- public $month;
-
-
- public function setDay($day)
- {
- $this->day = $day;
- }
- public function getDay()
- {
- return $this->day;
- }
- public function setMonth($month)
- {
- $this->month = $month;
- }
- public function getMonth()
- {
- return $this->month;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_PageInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $resultPerPage;
- public $startIndex;
- public $totalResults;
-
-
- public function setResultPerPage($resultPerPage)
- {
- $this->resultPerPage = $resultPerPage;
- }
- public function getResultPerPage()
- {
- return $this->resultPerPage;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_Price extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currency;
- public $priceMicros;
-
-
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- }
- public function getCurrency()
- {
- return $this->currency;
- }
- public function setPriceMicros($priceMicros)
- {
- $this->priceMicros = $priceMicros;
- }
- public function getPriceMicros()
- {
- return $this->priceMicros;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_ProductPurchase extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $consumptionState;
- public $developerPayload;
- public $kind;
- public $purchaseState;
- public $purchaseTimeMillis;
-
-
- public function setConsumptionState($consumptionState)
- {
- $this->consumptionState = $consumptionState;
- }
- public function getConsumptionState()
- {
- return $this->consumptionState;
- }
- public function setDeveloperPayload($developerPayload)
- {
- $this->developerPayload = $developerPayload;
- }
- public function getDeveloperPayload()
- {
- return $this->developerPayload;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPurchaseState($purchaseState)
- {
- $this->purchaseState = $purchaseState;
- }
- public function getPurchaseState()
- {
- return $this->purchaseState;
- }
- public function setPurchaseTimeMillis($purchaseTimeMillis)
- {
- $this->purchaseTimeMillis = $purchaseTimeMillis;
- }
- public function getPurchaseTimeMillis()
- {
- return $this->purchaseTimeMillis;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_Season extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $endType = 'Postman_Google_Service_AndroidPublisher_MonthDay';
- protected $endDataType = '';
- protected $startType = 'Postman_Google_Service_AndroidPublisher_MonthDay';
- protected $startDataType = '';
-
-
- public function setEnd(Postman_Google_Service_AndroidPublisher_MonthDay $end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setStart(Postman_Google_Service_AndroidPublisher_MonthDay $start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_SubscriptionDeferralInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $desiredExpiryTimeMillis;
- public $expectedExpiryTimeMillis;
-
-
- public function setDesiredExpiryTimeMillis($desiredExpiryTimeMillis)
- {
- $this->desiredExpiryTimeMillis = $desiredExpiryTimeMillis;
- }
- public function getDesiredExpiryTimeMillis()
- {
- return $this->desiredExpiryTimeMillis;
- }
- public function setExpectedExpiryTimeMillis($expectedExpiryTimeMillis)
- {
- $this->expectedExpiryTimeMillis = $expectedExpiryTimeMillis;
- }
- public function getExpectedExpiryTimeMillis()
- {
- return $this->expectedExpiryTimeMillis;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_SubscriptionPurchase extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $autoRenewing;
- public $expiryTimeMillis;
- public $kind;
- public $startTimeMillis;
-
-
- public function setAutoRenewing($autoRenewing)
- {
- $this->autoRenewing = $autoRenewing;
- }
- public function getAutoRenewing()
- {
- return $this->autoRenewing;
- }
- public function setExpiryTimeMillis($expiryTimeMillis)
- {
- $this->expiryTimeMillis = $expiryTimeMillis;
- }
- public function getExpiryTimeMillis()
- {
- return $this->expiryTimeMillis;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setStartTimeMillis($startTimeMillis)
- {
- $this->startTimeMillis = $startTimeMillis;
- }
- public function getStartTimeMillis()
- {
- return $this->startTimeMillis;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $deferralInfoType = 'Postman_Google_Service_AndroidPublisher_SubscriptionDeferralInfo';
- protected $deferralInfoDataType = '';
-
-
- public function setDeferralInfo(Postman_Google_Service_AndroidPublisher_SubscriptionDeferralInfo $deferralInfo)
- {
- $this->deferralInfo = $deferralInfo;
- }
- public function getDeferralInfo()
- {
- return $this->deferralInfo;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $newExpiryTimeMillis;
-
-
- public function setNewExpiryTimeMillis($newExpiryTimeMillis)
- {
- $this->newExpiryTimeMillis = $newExpiryTimeMillis;
- }
- public function getNewExpiryTimeMillis()
- {
- return $this->newExpiryTimeMillis;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_Testers extends Postman_Google_Collection
-{
- protected $collection_key = 'googlePlusCommunities';
- protected $internal_gapi_mappings = array(
- );
- public $googleGroups;
- public $googlePlusCommunities;
-
-
- public function setGoogleGroups($googleGroups)
- {
- $this->googleGroups = $googleGroups;
- }
- public function getGoogleGroups()
- {
- return $this->googleGroups;
- }
- public function setGooglePlusCommunities($googlePlusCommunities)
- {
- $this->googlePlusCommunities = $googlePlusCommunities;
- }
- public function getGooglePlusCommunities()
- {
- return $this->googlePlusCommunities;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_TokenPagination extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- public $previousPageToken;
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setPreviousPageToken($previousPageToken)
- {
- $this->previousPageToken = $previousPageToken;
- }
- public function getPreviousPageToken()
- {
- return $this->previousPageToken;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_Track extends Postman_Google_Collection
-{
- protected $collection_key = 'versionCodes';
- protected $internal_gapi_mappings = array(
- );
- public $track;
- public $userFraction;
- public $versionCodes;
-
-
- public function setTrack($track)
- {
- $this->track = $track;
- }
- public function getTrack()
- {
- return $this->track;
- }
- public function setUserFraction($userFraction)
- {
- $this->userFraction = $userFraction;
- }
- public function getUserFraction()
- {
- return $this->userFraction;
- }
- public function setVersionCodes($versionCodes)
- {
- $this->versionCodes = $versionCodes;
- }
- public function getVersionCodes()
- {
- return $this->versionCodes;
- }
-}
-
-class Postman_Google_Service_AndroidPublisher_TracksListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'tracks';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $tracksType = 'Postman_Google_Service_AndroidPublisher_Track';
- protected $tracksDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTracks($tracks)
- {
- $this->tracks = $tracks;
- }
- public function getTracks()
- {
- return $this->tracks;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AppState.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AppState.php
deleted file mode 100644
index f53595d..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/AppState.php
+++ /dev/null
@@ -1,368 +0,0 @@
-
- * The Google App State API.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_AppState extends Postman_Google_Service -{ - /** View and manage your data for this application. */ - const APPSTATE = - "https://www.googleapis.com/auth/appstate"; - - public $states; - - - /** - * Constructs the internal representation of the AppState service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'appstate/v1/'; - $this->version = 'v1'; - $this->serviceName = 'appstate'; - - $this->states = new Postman_Google_Service_AppState_States_Resource( - $this, - $this->serviceName, - 'states', - array( - 'methods' => array( - 'clear' => array( - 'path' => 'states/{stateKey}/clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'currentDataVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'states/{stateKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'states/{stateKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'states', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'states/{stateKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'currentStateVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "states" collection of methods. - * Typical usage is: - *
- * $appstateService = new Postman_Google_Service_AppState(...);
- * $states = $appstateService->states;
- *
- */
-class Postman_Google_Service_AppState_States_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Clears (sets to empty) the data for the passed key if and only if the passed
- * version matches the currently stored version. This method results in a
- * conflict error on version mismatch. (states.clear)
- *
- * @param int $stateKey The key for the data to be retrieved.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string currentDataVersion The version of the data to be cleared.
- * Version strings are returned by the server.
- * @return Postman_Google_Service_AppState_WriteResult
- */
- public function clear($stateKey, $optParams = array())
- {
- $params = array('stateKey' => $stateKey);
- $params = array_merge($params, $optParams);
- return $this->call('clear', array($params), "Postman_Google_Service_AppState_WriteResult");
- }
-
- /**
- * Deletes a key and the data associated with it. The key is removed and no
- * longer counts against the key quota. Note that since this method is not safe
- * in the face of concurrent modifications, it should only be used for
- * development and testing purposes. Invoking this method in shipping code can
- * result in data loss and data corruption. (states.delete)
- *
- * @param int $stateKey The key for the data to be retrieved.
- * @param array $optParams Optional parameters.
- */
- public function delete($stateKey, $optParams = array())
- {
- $params = array('stateKey' => $stateKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves the data corresponding to the passed key. If the key does not exist
- * on the server, an HTTP 404 will be returned. (states.get)
- *
- * @param int $stateKey The key for the data to be retrieved.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_AppState_GetResponse
- */
- public function get($stateKey, $optParams = array())
- {
- $params = array('stateKey' => $stateKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_AppState_GetResponse");
- }
-
- /**
- * Lists all the states keys, and optionally the state data. (states.listStates)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeData Whether to include the full data in addition to
- * the version number
- * @return Postman_Google_Service_AppState_ListResponse
- */
- public function listStates($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_AppState_ListResponse");
- }
-
- /**
- * Update the data associated with the input key if and only if the passed
- * version matches the currently stored version. This method is safe in the face
- * of concurrent writes. Maximum per-key size is 128KB. (states.update)
- *
- * @param int $stateKey The key for the data to be retrieved.
- * @param Postman_Google_UpdateRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string currentStateVersion The version of the app state your
- * application is attempting to update. If this does not match the current
- * version, this method will return a conflict error. If there is no data stored
- * on the server for this key, the update will succeed irrespective of the value
- * of this parameter.
- * @return Postman_Google_Service_AppState_WriteResult
- */
- public function update($stateKey, Postman_Google_Service_AppState_UpdateRequest $postBody, $optParams = array())
- {
- $params = array('stateKey' => $stateKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_AppState_WriteResult");
- }
-}
-
-
-
-
-class Postman_Google_Service_AppState_GetResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentStateVersion;
- public $data;
- public $kind;
- public $stateKey;
-
-
- public function setCurrentStateVersion($currentStateVersion)
- {
- $this->currentStateVersion = $currentStateVersion;
- }
- public function getCurrentStateVersion()
- {
- return $this->currentStateVersion;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setStateKey($stateKey)
- {
- $this->stateKey = $stateKey;
- }
- public function getStateKey()
- {
- return $this->stateKey;
- }
-}
-
-class Postman_Google_Service_AppState_ListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_AppState_GetResponse';
- protected $itemsDataType = 'array';
- public $kind;
- public $maximumKeyCount;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaximumKeyCount($maximumKeyCount)
- {
- $this->maximumKeyCount = $maximumKeyCount;
- }
- public function getMaximumKeyCount()
- {
- return $this->maximumKeyCount;
- }
-}
-
-class Postman_Google_Service_AppState_UpdateRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $data;
- public $kind;
-
-
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_AppState_WriteResult extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentStateVersion;
- public $kind;
- public $stateKey;
-
-
- public function setCurrentStateVersion($currentStateVersion)
- {
- $this->currentStateVersion = $currentStateVersion;
- }
- public function getCurrentStateVersion()
- {
- return $this->currentStateVersion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setStateKey($stateKey)
- {
- $this->stateKey = $stateKey;
- }
- public function getStateKey()
- {
- return $this->stateKey;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Appsactivity.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Appsactivity.php
deleted file mode 100644
index 4e5bd31..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Appsactivity.php
+++ /dev/null
@@ -1,566 +0,0 @@
-
- * Provides a historical view of activity.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Appsactivity extends Postman_Google_Service -{ - /** View the activity history of your Google Apps. */ - const ACTIVITY = - "https://www.googleapis.com/auth/activity"; - /** View and manage the files and documents in your Google Drive. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View metadata for files and documents in your Google Drive. */ - const DRIVE_METADATA_READONLY = - "https://www.googleapis.com/auth/drive.metadata.readonly"; - /** View the files and documents in your Google Drive. */ - const DRIVE_READONLY = - "https://www.googleapis.com/auth/drive.readonly"; - - public $activities; - - - /** - * Constructs the internal representation of the Appsactivity service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'appsactivity/v1/'; - $this->version = 'v1'; - $this->serviceName = 'appsactivity'; - - $this->activities = new Postman_Google_Service_Appsactivity_Activities_Resource( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'list' => array( - 'path' => 'activities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'drive.ancestorId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'groupingStrategy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'drive.fileId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "activities" collection of methods. - * Typical usage is: - *
- * $appsactivityService = new Postman_Google_Service_Appsactivity(...);
- * $activities = $appsactivityService->activities;
- *
- */
-class Postman_Google_Service_Appsactivity_Activities_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of activities visible to the current logged in user. Visible
- * activities are determined by the visiblity settings of the object that was
- * acted on, e.g. Drive files a user can see. An activity is a record of past
- * events. Multiple events may be merged if they are similar. A request is
- * scoped to activities from a given Google service using the source parameter.
- * (activities.listActivities)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string drive.ancestorId Identifies the Drive folder containing the
- * items for which to return activities.
- * @opt_param int pageSize The maximum number of events to return on a page. The
- * response includes a continuation token if there are more events.
- * @opt_param string pageToken A token to retrieve a specific page of results.
- * @opt_param string userId Indicates the user to return activity for. Use the
- * special value me to indicate the currently authenticated user.
- * @opt_param string groupingStrategy Indicates the strategy to use when
- * grouping singleEvents items in the associated combinedEvent object.
- * @opt_param string drive.fileId Identifies the Drive item to return activities
- * for.
- * @opt_param string source The Google service from which to return activities.
- * Possible values of source are: - drive.google.com
- * @return Postman_Google_Service_Appsactivity_ListActivitiesResponse
- */
- public function listActivities($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Appsactivity_ListActivitiesResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Appsactivity_Activity extends Postman_Google_Collection
-{
- protected $collection_key = 'singleEvents';
- protected $internal_gapi_mappings = array(
- );
- protected $combinedEventType = 'Postman_Google_Service_Appsactivity_Event';
- protected $combinedEventDataType = '';
- protected $singleEventsType = 'Postman_Google_Service_Appsactivity_Event';
- protected $singleEventsDataType = 'array';
-
-
- public function setCombinedEvent(Postman_Google_Service_Appsactivity_Event $combinedEvent)
- {
- $this->combinedEvent = $combinedEvent;
- }
- public function getCombinedEvent()
- {
- return $this->combinedEvent;
- }
- public function setSingleEvents($singleEvents)
- {
- $this->singleEvents = $singleEvents;
- }
- public function getSingleEvents()
- {
- return $this->singleEvents;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Event extends Postman_Google_Collection
-{
- protected $collection_key = 'permissionChanges';
- protected $internal_gapi_mappings = array(
- );
- public $additionalEventTypes;
- public $eventTimeMillis;
- public $fromUserDeletion;
- protected $moveType = 'Postman_Google_Service_Appsactivity_Move';
- protected $moveDataType = '';
- protected $permissionChangesType = 'Postman_Google_Service_Appsactivity_PermissionChange';
- protected $permissionChangesDataType = 'array';
- public $primaryEventType;
- protected $renameType = 'Postman_Google_Service_Appsactivity_Rename';
- protected $renameDataType = '';
- protected $targetType = 'Postman_Google_Service_Appsactivity_Target';
- protected $targetDataType = '';
- protected $userType = 'Postman_Google_Service_Appsactivity_User';
- protected $userDataType = '';
-
-
- public function setAdditionalEventTypes($additionalEventTypes)
- {
- $this->additionalEventTypes = $additionalEventTypes;
- }
- public function getAdditionalEventTypes()
- {
- return $this->additionalEventTypes;
- }
- public function setEventTimeMillis($eventTimeMillis)
- {
- $this->eventTimeMillis = $eventTimeMillis;
- }
- public function getEventTimeMillis()
- {
- return $this->eventTimeMillis;
- }
- public function setFromUserDeletion($fromUserDeletion)
- {
- $this->fromUserDeletion = $fromUserDeletion;
- }
- public function getFromUserDeletion()
- {
- return $this->fromUserDeletion;
- }
- public function setMove(Postman_Google_Service_Appsactivity_Move $move)
- {
- $this->move = $move;
- }
- public function getMove()
- {
- return $this->move;
- }
- public function setPermissionChanges($permissionChanges)
- {
- $this->permissionChanges = $permissionChanges;
- }
- public function getPermissionChanges()
- {
- return $this->permissionChanges;
- }
- public function setPrimaryEventType($primaryEventType)
- {
- $this->primaryEventType = $primaryEventType;
- }
- public function getPrimaryEventType()
- {
- return $this->primaryEventType;
- }
- public function setRename(Postman_Google_Service_Appsactivity_Rename $rename)
- {
- $this->rename = $rename;
- }
- public function getRename()
- {
- return $this->rename;
- }
- public function setTarget(Postman_Google_Service_Appsactivity_Target $target)
- {
- $this->target = $target;
- }
- public function getTarget()
- {
- return $this->target;
- }
- public function setUser(Postman_Google_Service_Appsactivity_User $user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
-}
-
-class Postman_Google_Service_Appsactivity_ListActivitiesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'activities';
- protected $internal_gapi_mappings = array(
- );
- protected $activitiesType = 'Postman_Google_Service_Appsactivity_Activity';
- protected $activitiesDataType = 'array';
- public $nextPageToken;
-
-
- public function setActivities($activities)
- {
- $this->activities = $activities;
- }
- public function getActivities()
- {
- return $this->activities;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Move extends Postman_Google_Collection
-{
- protected $collection_key = 'removedParents';
- protected $internal_gapi_mappings = array(
- );
- protected $addedParentsType = 'Postman_Google_Service_Appsactivity_Parent';
- protected $addedParentsDataType = 'array';
- protected $removedParentsType = 'Postman_Google_Service_Appsactivity_Parent';
- protected $removedParentsDataType = 'array';
-
-
- public function setAddedParents($addedParents)
- {
- $this->addedParents = $addedParents;
- }
- public function getAddedParents()
- {
- return $this->addedParents;
- }
- public function setRemovedParents($removedParents)
- {
- $this->removedParents = $removedParents;
- }
- public function getRemovedParents()
- {
- return $this->removedParents;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Parent extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $isRoot;
- public $title;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsRoot($isRoot)
- {
- $this->isRoot = $isRoot;
- }
- public function getIsRoot()
- {
- return $this->isRoot;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Permission extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $permissionId;
- public $role;
- public $type;
- protected $userType = 'Postman_Google_Service_Appsactivity_User';
- protected $userDataType = '';
- public $withLink;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPermissionId($permissionId)
- {
- $this->permissionId = $permissionId;
- }
- public function getPermissionId()
- {
- return $this->permissionId;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUser(Postman_Google_Service_Appsactivity_User $user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
- public function setWithLink($withLink)
- {
- $this->withLink = $withLink;
- }
- public function getWithLink()
- {
- return $this->withLink;
- }
-}
-
-class Postman_Google_Service_Appsactivity_PermissionChange extends Postman_Google_Collection
-{
- protected $collection_key = 'removedPermissions';
- protected $internal_gapi_mappings = array(
- );
- protected $addedPermissionsType = 'Postman_Google_Service_Appsactivity_Permission';
- protected $addedPermissionsDataType = 'array';
- protected $removedPermissionsType = 'Postman_Google_Service_Appsactivity_Permission';
- protected $removedPermissionsDataType = 'array';
-
-
- public function setAddedPermissions($addedPermissions)
- {
- $this->addedPermissions = $addedPermissions;
- }
- public function getAddedPermissions()
- {
- return $this->addedPermissions;
- }
- public function setRemovedPermissions($removedPermissions)
- {
- $this->removedPermissions = $removedPermissions;
- }
- public function getRemovedPermissions()
- {
- return $this->removedPermissions;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Photo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Rename extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $newTitle;
- public $oldTitle;
-
-
- public function setNewTitle($newTitle)
- {
- $this->newTitle = $newTitle;
- }
- public function getNewTitle()
- {
- return $this->newTitle;
- }
- public function setOldTitle($oldTitle)
- {
- $this->oldTitle = $oldTitle;
- }
- public function getOldTitle()
- {
- return $this->oldTitle;
- }
-}
-
-class Postman_Google_Service_Appsactivity_Target extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $mimeType;
- public $name;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Appsactivity_User extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- protected $photoType = 'Postman_Google_Service_Appsactivity_Photo';
- protected $photoDataType = '';
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPhoto(Postman_Google_Service_Appsactivity_Photo $photo)
- {
- $this->photo = $photo;
- }
- public function getPhoto()
- {
- return $this->photo;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Audit.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Audit.php
deleted file mode 100644
index c4196d4..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Audit.php
+++ /dev/null
@@ -1,416 +0,0 @@
-
- * Lets you access user activities in your enterprise made through various
- * applications.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Audit extends Postman_Google_Service -{ - - - public $activities; - - - /** - * Constructs the internal representation of the Audit service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'apps/reporting/audit/v1/'; - $this->version = 'v1'; - $this->serviceName = 'audit'; - - $this->activities = new Postman_Google_Service_Audit_Activities_Resource( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'list' => array( - 'path' => '{customerId}/{applicationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'actorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'actorApplicationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'actorIpAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'caller' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'eventName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continuationToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "activities" collection of methods. - * Typical usage is: - *
- * $auditService = new Postman_Google_Service_Audit(...);
- * $activities = $auditService->activities;
- *
- */
-class Postman_Google_Service_Audit_Activities_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of activities for a specific customer and application.
- * (activities.listActivities)
- *
- * @param string $customerId Represents the customer who is the owner of target
- * object on which action was performed.
- * @param string $applicationId Application ID of the application on which the
- * event was performed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string actorEmail Email address of the user who performed the
- * action.
- * @opt_param string actorApplicationId Application ID of the application which
- * interacted on behalf of the user while performing the event.
- * @opt_param string actorIpAddress IP Address of host where the event was
- * performed. Supports both IPv4 and IPv6 addresses.
- * @opt_param string caller Type of the caller.
- * @opt_param int maxResults Number of activity records to be shown in each
- * page.
- * @opt_param string eventName Name of the event being queried.
- * @opt_param string startTime Return events which occured at or after this
- * time.
- * @opt_param string endTime Return events which occured at or before this time.
- * @opt_param string continuationToken Next page URL.
- * @return Postman_Google_Service_Audit_Activities
- */
- public function listActivities($customerId, $applicationId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'applicationId' => $applicationId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Audit_Activities");
- }
-}
-
-
-
-
-class Postman_Google_Service_Audit_Activities extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Audit_Activity';
- protected $itemsDataType = 'array';
- public $kind;
- public $next;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNext($next)
- {
- $this->next = $next;
- }
- public function getNext()
- {
- return $this->next;
- }
-}
-
-class Postman_Google_Service_Audit_Activity extends Postman_Google_Collection
-{
- protected $collection_key = 'events';
- protected $internal_gapi_mappings = array(
- );
- protected $actorType = 'Postman_Google_Service_Audit_ActivityActor';
- protected $actorDataType = '';
- protected $eventsType = 'Postman_Google_Service_Audit_ActivityEvents';
- protected $eventsDataType = 'array';
- protected $idType = 'Postman_Google_Service_Audit_ActivityId';
- protected $idDataType = '';
- public $ipAddress;
- public $kind;
- public $ownerDomain;
-
-
- public function setActor(Postman_Google_Service_Audit_ActivityActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setEvents($events)
- {
- $this->events = $events;
- }
- public function getEvents()
- {
- return $this->events;
- }
- public function setId(Postman_Google_Service_Audit_ActivityId $id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIpAddress($ipAddress)
- {
- $this->ipAddress = $ipAddress;
- }
- public function getIpAddress()
- {
- return $this->ipAddress;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOwnerDomain($ownerDomain)
- {
- $this->ownerDomain = $ownerDomain;
- }
- public function getOwnerDomain()
- {
- return $this->ownerDomain;
- }
-}
-
-class Postman_Google_Service_Audit_ActivityActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $applicationId;
- public $callerType;
- public $email;
- public $key;
-
-
- public function setApplicationId($applicationId)
- {
- $this->applicationId = $applicationId;
- }
- public function getApplicationId()
- {
- return $this->applicationId;
- }
- public function setCallerType($callerType)
- {
- $this->callerType = $callerType;
- }
- public function getCallerType()
- {
- return $this->callerType;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
-}
-
-class Postman_Google_Service_Audit_ActivityEvents extends Postman_Google_Collection
-{
- protected $collection_key = 'parameters';
- protected $internal_gapi_mappings = array(
- );
- public $eventType;
- public $name;
- protected $parametersType = 'Postman_Google_Service_Audit_ActivityEventsParameters';
- protected $parametersDataType = 'array';
-
-
- public function setEventType($eventType)
- {
- $this->eventType = $eventType;
- }
- public function getEventType()
- {
- return $this->eventType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setParameters($parameters)
- {
- $this->parameters = $parameters;
- }
- public function getParameters()
- {
- return $this->parameters;
- }
-}
-
-class Postman_Google_Service_Audit_ActivityEventsParameters extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $value;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Audit_ActivityId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $applicationId;
- public $customerId;
- public $time;
- public $uniqQualifier;
-
-
- public function setApplicationId($applicationId)
- {
- $this->applicationId = $applicationId;
- }
- public function getApplicationId()
- {
- return $this->applicationId;
- }
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setTime($time)
- {
- $this->time = $time;
- }
- public function getTime()
- {
- return $this->time;
- }
- public function setUniqQualifier($uniqQualifier)
- {
- $this->uniqQualifier = $uniqQualifier;
- }
- public function getUniqQualifier()
- {
- return $this->uniqQualifier;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Autoscaler.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Autoscaler.php
deleted file mode 100644
index 5ee6fdc..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Autoscaler.php
+++ /dev/null
@@ -1,1400 +0,0 @@
-
- * The Google Compute Engine Autoscaler API provides autoscaling for groups of
- * Cloud VMs.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Autoscaler extends Postman_Google_Service -{ - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - - public $autoscalers; - public $zoneOperations; - public $zones; - - - /** - * Constructs the internal representation of the Autoscaler service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'autoscaler/v1beta2/'; - $this->version = 'v1beta2'; - $this->serviceName = 'autoscaler'; - - $this->autoscalers = new Postman_Google_Service_Autoscaler_Autoscalers_Resource( - $this, - $this->serviceName, - 'autoscalers', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->zoneOperations = new Postman_Google_Service_Autoscaler_ZoneOperations_Resource( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->zones = new Postman_Google_Service_Autoscaler_Zones_Resource( - $this, - $this->serviceName, - 'zones', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/zones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "autoscalers" collection of methods. - * Typical usage is: - *
- * $autoscalerService = new Postman_Google_Service_Autoscaler(...);
- * $autoscalers = $autoscalerService->autoscalers;
- *
- */
-class Postman_Google_Service_Autoscaler_Autoscalers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified Autoscaler resource. (autoscalers.delete)
- *
- * @param string $project Project ID of Autoscaler resource.
- * @param string $zone Zone name of Autoscaler resource.
- * @param string $autoscaler Name of the Autoscaler resource.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Autoscaler_Operation
- */
- public function delete($project, $zone, $autoscaler, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Autoscaler_Operation");
- }
-
- /**
- * Gets the specified Autoscaler resource. (autoscalers.get)
- *
- * @param string $project Project ID of Autoscaler resource.
- * @param string $zone Zone name of Autoscaler resource.
- * @param string $autoscaler Name of the Autoscaler resource.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Autoscaler_Autoscaler
- */
- public function get($project, $zone, $autoscaler, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Autoscaler_Autoscaler");
- }
-
- /**
- * Adds new Autoscaler resource. (autoscalers.insert)
- *
- * @param string $project Project ID of Autoscaler resource.
- * @param string $zone Zone name of Autoscaler resource.
- * @param Postman_Google_Autoscaler $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Autoscaler_Operation
- */
- public function insert($project, $zone, Postman_Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Autoscaler_Operation");
- }
-
- /**
- * Lists all Autoscaler resources in this zone. (autoscalers.listAutoscalers)
- *
- * @param string $project Project ID of Autoscaler resource.
- * @param string $zone Zone name of Autoscaler resource.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter
- * @opt_param string pageToken
- * @opt_param string maxResults
- * @return Postman_Google_Service_Autoscaler_AutoscalerListResponse
- */
- public function listAutoscalers($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Autoscaler_AutoscalerListResponse");
- }
-
- /**
- * Update the entire content of the Autoscaler resource. This method supports
- * patch semantics. (autoscalers.patch)
- *
- * @param string $project Project ID of Autoscaler resource.
- * @param string $zone Zone name of Autoscaler resource.
- * @param string $autoscaler Name of the Autoscaler resource.
- * @param Postman_Google_Autoscaler $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Autoscaler_Operation
- */
- public function patch($project, $zone, $autoscaler, Postman_Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Autoscaler_Operation");
- }
-
- /**
- * Update the entire content of the Autoscaler resource. (autoscalers.update)
- *
- * @param string $project Project ID of Autoscaler resource.
- * @param string $zone Zone name of Autoscaler resource.
- * @param string $autoscaler Name of the Autoscaler resource.
- * @param Postman_Google_Autoscaler $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Autoscaler_Operation
- */
- public function update($project, $zone, $autoscaler, Postman_Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Autoscaler_Operation");
- }
-}
-
-/**
- * The "zoneOperations" collection of methods.
- * Typical usage is:
- *
- * $autoscalerService = new Postman_Google_Service_Autoscaler(...);
- * $zoneOperations = $autoscalerService->zoneOperations;
- *
- */
-class Postman_Google_Service_Autoscaler_ZoneOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified zone-specific operation resource.
- * (zoneOperations.delete)
- *
- * @param string $project
- * @param string $zone
- * @param string $operation
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $zone, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves the specified zone-specific operation resource.
- * (zoneOperations.get)
- *
- * @param string $project
- * @param string $zone
- * @param string $operation
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Autoscaler_Operation
- */
- public function get($project, $zone, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Autoscaler_Operation");
- }
-
- /**
- * Retrieves the list of operation resources contained within the specified
- * zone. (zoneOperations.listZoneOperations)
- *
- * @param string $project
- * @param string $zone
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter
- * @opt_param string pageToken
- * @opt_param string maxResults
- * @return Postman_Google_Service_Autoscaler_OperationList
- */
- public function listZoneOperations($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Autoscaler_OperationList");
- }
-}
-
-/**
- * The "zones" collection of methods.
- * Typical usage is:
- *
- * $autoscalerService = new Postman_Google_Service_Autoscaler(...);
- * $zones = $autoscalerService->zones;
- *
- */
-class Postman_Google_Service_Autoscaler_Zones_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (zones.listZones)
- *
- * @param string $project
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter
- * @opt_param string pageToken
- * @opt_param string maxResults
- * @return Postman_Google_Service_Autoscaler_ZoneList
- */
- public function listZones($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Autoscaler_ZoneList");
- }
-}
-
-
-
-
-class Postman_Google_Service_Autoscaler_Autoscaler extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $autoscalingPolicyType = 'Postman_Google_Service_Autoscaler_AutoscalingPolicy';
- protected $autoscalingPolicyDataType = '';
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $selfLink;
- public $target;
-
-
- public function setAutoscalingPolicy(Postman_Google_Service_Autoscaler_AutoscalingPolicy $autoscalingPolicy)
- {
- $this->autoscalingPolicy = $autoscalingPolicy;
- }
- public function getAutoscalingPolicy()
- {
- return $this->autoscalingPolicy;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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;
- }
- public function setTarget($target)
- {
- $this->target = $target;
- }
- public function getTarget()
- {
- return $this->target;
- }
-}
-
-class Postman_Google_Service_Autoscaler_AutoscalerListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Autoscaler_Autoscaler';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Autoscaler_AutoscalingPolicy extends Postman_Google_Collection
-{
- protected $collection_key = 'customMetricUtilizations';
- protected $internal_gapi_mappings = array(
- );
- public $coolDownPeriodSec;
- protected $cpuUtilizationType = 'Postman_Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization';
- protected $cpuUtilizationDataType = '';
- protected $customMetricUtilizationsType = 'Postman_Google_Service_Autoscaler_AutoscalingPolicyCustomMetricUtilization';
- protected $customMetricUtilizationsDataType = 'array';
- protected $loadBalancingUtilizationType = 'Postman_Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization';
- protected $loadBalancingUtilizationDataType = '';
- public $maxNumReplicas;
- public $minNumReplicas;
-
-
- public function setCoolDownPeriodSec($coolDownPeriodSec)
- {
- $this->coolDownPeriodSec = $coolDownPeriodSec;
- }
- public function getCoolDownPeriodSec()
- {
- return $this->coolDownPeriodSec;
- }
- public function setCpuUtilization(Postman_Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization $cpuUtilization)
- {
- $this->cpuUtilization = $cpuUtilization;
- }
- public function getCpuUtilization()
- {
- return $this->cpuUtilization;
- }
- public function setCustomMetricUtilizations($customMetricUtilizations)
- {
- $this->customMetricUtilizations = $customMetricUtilizations;
- }
- public function getCustomMetricUtilizations()
- {
- return $this->customMetricUtilizations;
- }
- public function setLoadBalancingUtilization(Postman_Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization $loadBalancingUtilization)
- {
- $this->loadBalancingUtilization = $loadBalancingUtilization;
- }
- public function getLoadBalancingUtilization()
- {
- return $this->loadBalancingUtilization;
- }
- public function setMaxNumReplicas($maxNumReplicas)
- {
- $this->maxNumReplicas = $maxNumReplicas;
- }
- public function getMaxNumReplicas()
- {
- return $this->maxNumReplicas;
- }
- public function setMinNumReplicas($minNumReplicas)
- {
- $this->minNumReplicas = $minNumReplicas;
- }
- public function getMinNumReplicas()
- {
- return $this->minNumReplicas;
- }
-}
-
-class Postman_Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $utilizationTarget;
-
-
- public function setUtilizationTarget($utilizationTarget)
- {
- $this->utilizationTarget = $utilizationTarget;
- }
- public function getUtilizationTarget()
- {
- return $this->utilizationTarget;
- }
-}
-
-class Postman_Google_Service_Autoscaler_AutoscalingPolicyCustomMetricUtilization extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $metric;
- public $utilizationTarget;
- public $utilizationTargetType;
-
-
- public function setMetric($metric)
- {
- $this->metric = $metric;
- }
- public function getMetric()
- {
- return $this->metric;
- }
- public function setUtilizationTarget($utilizationTarget)
- {
- $this->utilizationTarget = $utilizationTarget;
- }
- public function getUtilizationTarget()
- {
- return $this->utilizationTarget;
- }
- public function setUtilizationTargetType($utilizationTargetType)
- {
- $this->utilizationTargetType = $utilizationTargetType;
- }
- public function getUtilizationTargetType()
- {
- return $this->utilizationTargetType;
- }
-}
-
-class Postman_Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $utilizationTarget;
-
-
- public function setUtilizationTarget($utilizationTarget)
- {
- $this->utilizationTarget = $utilizationTarget;
- }
- public function getUtilizationTarget()
- {
- return $this->utilizationTarget;
- }
-}
-
-class Postman_Google_Service_Autoscaler_DeprecationStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deleted;
- public $deprecated;
- public $obsolete;
- public $replacement;
- public $state;
-
-
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setDeprecated($deprecated)
- {
- $this->deprecated = $deprecated;
- }
- public function getDeprecated()
- {
- return $this->deprecated;
- }
- public function setObsolete($obsolete)
- {
- $this->obsolete = $obsolete;
- }
- public function getObsolete()
- {
- return $this->obsolete;
- }
- public function setReplacement($replacement)
- {
- $this->replacement = $replacement;
- }
- public function getReplacement()
- {
- return $this->replacement;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Autoscaler_Operation extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $clientOperationId;
- public $creationTimestamp;
- public $endTime;
- protected $errorType = 'Postman_Google_Service_Autoscaler_OperationError';
- protected $errorDataType = '';
- public $httpErrorMessage;
- public $httpErrorStatusCode;
- public $id;
- public $insertTime;
- public $kind;
- public $name;
- public $operationType;
- public $progress;
- public $region;
- public $selfLink;
- public $startTime;
- public $status;
- public $statusMessage;
- public $targetId;
- public $targetLink;
- public $user;
- protected $warningsType = 'Postman_Google_Service_Autoscaler_OperationWarnings';
- protected $warningsDataType = 'array';
- public $zone;
-
-
- public function setClientOperationId($clientOperationId)
- {
- $this->clientOperationId = $clientOperationId;
- }
- public function getClientOperationId()
- {
- return $this->clientOperationId;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setError(Postman_Google_Service_Autoscaler_OperationError $error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setHttpErrorMessage($httpErrorMessage)
- {
- $this->httpErrorMessage = $httpErrorMessage;
- }
- public function getHttpErrorMessage()
- {
- return $this->httpErrorMessage;
- }
- public function setHttpErrorStatusCode($httpErrorStatusCode)
- {
- $this->httpErrorStatusCode = $httpErrorStatusCode;
- }
- public function getHttpErrorStatusCode()
- {
- return $this->httpErrorStatusCode;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInsertTime($insertTime)
- {
- $this->insertTime = $insertTime;
- }
- public function getInsertTime()
- {
- return $this->insertTime;
- }
- 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 setOperationType($operationType)
- {
- $this->operationType = $operationType;
- }
- public function getOperationType()
- {
- return $this->operationType;
- }
- public function setProgress($progress)
- {
- $this->progress = $progress;
- }
- public function getProgress()
- {
- return $this->progress;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusMessage($statusMessage)
- {
- $this->statusMessage = $statusMessage;
- }
- public function getStatusMessage()
- {
- return $this->statusMessage;
- }
- public function setTargetId($targetId)
- {
- $this->targetId = $targetId;
- }
- public function getTargetId()
- {
- return $this->targetId;
- }
- public function setTargetLink($targetLink)
- {
- $this->targetLink = $targetLink;
- }
- public function getTargetLink()
- {
- return $this->targetLink;
- }
- public function setUser($user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Autoscaler_OperationError extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $errorsType = 'Postman_Google_Service_Autoscaler_OperationErrorErrors';
- protected $errorsDataType = 'array';
-
-
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_Autoscaler_OperationErrorErrors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $location;
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Autoscaler_OperationList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Autoscaler_Operation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Autoscaler_OperationWarnings extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Autoscaler_OperationWarningsData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Autoscaler_OperationWarningsData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Autoscaler_Zone extends Postman_Google_Collection
-{
- protected $collection_key = 'maintenanceWindows';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- protected $deprecatedType = 'Postman_Google_Service_Autoscaler_DeprecationStatus';
- protected $deprecatedDataType = '';
- public $description;
- public $id;
- public $kind;
- protected $maintenanceWindowsType = 'Postman_Google_Service_Autoscaler_ZoneMaintenanceWindows';
- protected $maintenanceWindowsDataType = 'array';
- public $name;
- public $region;
- public $selfLink;
- public $status;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDeprecated(Postman_Google_Service_Autoscaler_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 setMaintenanceWindows($maintenanceWindows)
- {
- $this->maintenanceWindows = $maintenanceWindows;
- }
- public function getMaintenanceWindows()
- {
- return $this->maintenanceWindows;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Autoscaler_ZoneList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Autoscaler_Zone';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Autoscaler_ZoneMaintenanceWindows extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $beginTime;
- public $description;
- public $endTime;
- public $name;
-
-
- public function setBeginTime($beginTime)
- {
- $this->beginTime = $beginTime;
- }
- public function getBeginTime()
- {
- return $this->beginTime;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Bigquery.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Bigquery.php
deleted file mode 100644
index 04243cb..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Bigquery.php
+++ /dev/null
@@ -1,3203 +0,0 @@
-
- * A data platform for customers to create, manage, share and query data.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Bigquery extends Postman_Google_Service -{ - /** View and manage your data in Google BigQuery. */ - const BIGQUERY = - "https://www.googleapis.com/auth/bigquery"; - /** Insert data into Google BigQuery. */ - const BIGQUERY_INSERTDATA = - "https://www.googleapis.com/auth/bigquery.insertdata"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - - public $datasets; - public $jobs; - public $projects; - public $tabledata; - public $tables; - - - /** - * Constructs the internal representation of the Bigquery service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'bigquery/v2/'; - $this->version = 'v2'; - $this->serviceName = 'bigquery'; - - $this->datasets = new Postman_Google_Service_Bigquery_Datasets_Resource( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deleteContents' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{projectId}/datasets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/datasets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'all' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->jobs = new Postman_Google_Service_Bigquery_Jobs_Resource( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'projects/{projectId}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getQueryResults' => array( - 'path' => 'projects/{projectId}/queries/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeoutMs' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'projects/{projectId}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'stateFilter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'allUsers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'query' => array( - 'path' => 'projects/{projectId}/queries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects = new Postman_Google_Service_Bigquery_Projects_Resource( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'list' => array( - 'path' => 'projects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->tabledata = new Postman_Google_Service_Bigquery_Tabledata_Resource( - $this, - $this->serviceName, - 'tabledata', - array( - 'methods' => array( - 'insertAll' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/insertAll', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/data', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->tables = new Postman_Google_Service_Bigquery_Tables_Resource( - $this, - $this->serviceName, - 'tables', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "datasets" collection of methods. - * Typical usage is: - *
- * $bigqueryService = new Postman_Google_Service_Bigquery(...);
- * $datasets = $bigqueryService->datasets;
- *
- */
-class Postman_Google_Service_Bigquery_Datasets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the dataset specified by the datasetId value. Before you can delete a
- * dataset, you must delete all its tables, either manually or by specifying
- * deleteContents. Immediately after deletion, you can create another dataset
- * with the same name. (datasets.delete)
- *
- * @param string $projectId Project ID of the dataset being deleted
- * @param string $datasetId Dataset ID of dataset being deleted
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool deleteContents If True, delete all the tables in the dataset.
- * If False and the dataset contains tables, the request will fail. Default is
- * False
- */
- public function delete($projectId, $datasetId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns the dataset specified by datasetID. (datasets.get)
- *
- * @param string $projectId Project ID of the requested dataset
- * @param string $datasetId Dataset ID of the requested dataset
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Dataset
- */
- public function get($projectId, $datasetId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Bigquery_Dataset");
- }
-
- /**
- * Creates a new empty dataset. (datasets.insert)
- *
- * @param string $projectId Project ID of the new dataset
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Dataset
- */
- public function insert($projectId, Postman_Google_Service_Bigquery_Dataset $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Bigquery_Dataset");
- }
-
- /**
- * Lists all the datasets in the specified project to which the caller has read
- * access; however, a project owner can list (but not necessarily get) all
- * datasets in his project. (datasets.listDatasets)
- *
- * @param string $projectId Project ID of the datasets to be listed
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Page token, returned by a previous call, to
- * request the next page of results
- * @opt_param bool all Whether to list all datasets, including hidden ones
- * @opt_param string maxResults The maximum number of results to return
- * @return Postman_Google_Service_Bigquery_DatasetList
- */
- public function listDatasets($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Bigquery_DatasetList");
- }
-
- /**
- * Updates information in an existing dataset. The update method replaces the
- * entire dataset resource, whereas the patch method only replaces fields that
- * are provided in the submitted dataset resource. This method supports patch
- * semantics. (datasets.patch)
- *
- * @param string $projectId Project ID of the dataset being updated
- * @param string $datasetId Dataset ID of the dataset being updated
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Dataset
- */
- public function patch($projectId, $datasetId, Postman_Google_Service_Bigquery_Dataset $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Bigquery_Dataset");
- }
-
- /**
- * Updates information in an existing dataset. The update method replaces the
- * entire dataset resource, whereas the patch method only replaces fields that
- * are provided in the submitted dataset resource. (datasets.update)
- *
- * @param string $projectId Project ID of the dataset being updated
- * @param string $datasetId Dataset ID of the dataset being updated
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Dataset
- */
- public function update($projectId, $datasetId, Postman_Google_Service_Bigquery_Dataset $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Bigquery_Dataset");
- }
-}
-
-/**
- * The "jobs" collection of methods.
- * Typical usage is:
- *
- * $bigqueryService = new Postman_Google_Service_Bigquery(...);
- * $jobs = $bigqueryService->jobs;
- *
- */
-class Postman_Google_Service_Bigquery_Jobs_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the specified job by ID. (jobs.get)
- *
- * @param string $projectId Project ID of the requested job
- * @param string $jobId Job ID of the requested job
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Job
- */
- public function get($projectId, $jobId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'jobId' => $jobId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Bigquery_Job");
- }
-
- /**
- * Retrieves the results of a query job. (jobs.getQueryResults)
- *
- * @param string $projectId Project ID of the query job
- * @param string $jobId Job ID of the query job
- * @param array $optParams Optional parameters.
- *
- * @opt_param string timeoutMs How long to wait for the query to complete, in
- * milliseconds, before returning. Default is to return immediately. If the
- * timeout passes before the job completes, the request will fail with a TIMEOUT
- * error
- * @opt_param string maxResults Maximum number of results to read
- * @opt_param string pageToken Page token, returned by a previous call, to
- * request the next page of results
- * @opt_param string startIndex Zero-based index of the starting row
- * @return Postman_Google_Service_Bigquery_GetQueryResultsResponse
- */
- public function getQueryResults($projectId, $jobId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'jobId' => $jobId);
- $params = array_merge($params, $optParams);
- return $this->call('getQueryResults', array($params), "Postman_Google_Service_Bigquery_GetQueryResultsResponse");
- }
-
- /**
- * Starts a new asynchronous job. (jobs.insert)
- *
- * @param string $projectId Project ID of the project that will be billed for
- * the job
- * @param Postman_Google_Job $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Job
- */
- public function insert($projectId, Postman_Google_Service_Bigquery_Job $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Bigquery_Job");
- }
-
- /**
- * Lists all the Jobs in the specified project that were started by the user.
- * The job list returns in reverse chronological order of when the jobs were
- * created, starting with the most recent job created. (jobs.listJobs)
- *
- * @param string $projectId Project ID of the jobs to list
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Restrict information returned to a set of
- * selected fields
- * @opt_param string stateFilter Filter for job state
- * @opt_param bool allUsers Whether to display jobs owned by all users in the
- * project. Default false
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string pageToken Page token, returned by a previous call, to
- * request the next page of results
- * @return Postman_Google_Service_Bigquery_JobList
- */
- public function listJobs($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Bigquery_JobList");
- }
-
- /**
- * Runs a BigQuery SQL query synchronously and returns query results if the
- * query completes within a specified timeout. (jobs.query)
- *
- * @param string $projectId Project ID of the project billed for the query
- * @param Postman_Google_QueryRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_QueryResponse
- */
- public function query($projectId, Postman_Google_Service_Bigquery_QueryRequest $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('query', array($params), "Postman_Google_Service_Bigquery_QueryResponse");
- }
-}
-
-/**
- * The "projects" collection of methods.
- * Typical usage is:
- *
- * $bigqueryService = new Postman_Google_Service_Bigquery(...);
- * $projects = $bigqueryService->projects;
- *
- */
-class Postman_Google_Service_Bigquery_Projects_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists the projects to which you have at least read access.
- * (projects.listProjects)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Page token, returned by a previous call, to
- * request the next page of results
- * @opt_param string maxResults Maximum number of results to return
- * @return Postman_Google_Service_Bigquery_ProjectList
- */
- public function listProjects($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Bigquery_ProjectList");
- }
-}
-
-/**
- * The "tabledata" collection of methods.
- * Typical usage is:
- *
- * $bigqueryService = new Postman_Google_Service_Bigquery(...);
- * $tabledata = $bigqueryService->tabledata;
- *
- */
-class Postman_Google_Service_Bigquery_Tabledata_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Streams data into BigQuery one record at a time without needing to run a load
- * job. (tabledata.insertAll)
- *
- * @param string $projectId Project ID of the destination table.
- * @param string $datasetId Dataset ID of the destination table.
- * @param string $tableId Table ID of the destination table.
- * @param Postman_Google_TableDataInsertAllRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_TableDataInsertAllResponse
- */
- public function insertAll($projectId, $datasetId, $tableId, Postman_Google_Service_Bigquery_TableDataInsertAllRequest $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insertAll', array($params), "Postman_Google_Service_Bigquery_TableDataInsertAllResponse");
- }
-
- /**
- * Retrieves table data from a specified set of rows. (tabledata.listTabledata)
- *
- * @param string $projectId Project ID of the table to read
- * @param string $datasetId Dataset ID of the table to read
- * @param string $tableId Table ID of the table to read
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string pageToken Page token, returned by a previous call,
- * identifying the result set
- * @opt_param string startIndex Zero-based index of the starting row to read
- * @return Postman_Google_Service_Bigquery_TableDataList
- */
- public function listTabledata($projectId, $datasetId, $tableId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Bigquery_TableDataList");
- }
-}
-
-/**
- * The "tables" collection of methods.
- * Typical usage is:
- *
- * $bigqueryService = new Postman_Google_Service_Bigquery(...);
- * $tables = $bigqueryService->tables;
- *
- */
-class Postman_Google_Service_Bigquery_Tables_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the table specified by tableId from the dataset. If the table
- * contains data, all the data will be deleted. (tables.delete)
- *
- * @param string $projectId Project ID of the table to delete
- * @param string $datasetId Dataset ID of the table to delete
- * @param string $tableId Table ID of the table to delete
- * @param array $optParams Optional parameters.
- */
- public function delete($projectId, $datasetId, $tableId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the specified table resource by table ID. This method does not return
- * the data in the table, it only returns the table resource, which describes
- * the structure of this table. (tables.get)
- *
- * @param string $projectId Project ID of the requested table
- * @param string $datasetId Dataset ID of the requested table
- * @param string $tableId Table ID of the requested table
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Table
- */
- public function get($projectId, $datasetId, $tableId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Bigquery_Table");
- }
-
- /**
- * Creates a new, empty table in the dataset. (tables.insert)
- *
- * @param string $projectId Project ID of the new table
- * @param string $datasetId Dataset ID of the new table
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Table
- */
- public function insert($projectId, $datasetId, Postman_Google_Service_Bigquery_Table $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Bigquery_Table");
- }
-
- /**
- * Lists all tables in the specified dataset. (tables.listTables)
- *
- * @param string $projectId Project ID of the tables to list
- * @param string $datasetId Dataset ID of the tables to list
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Page token, returned by a previous call, to
- * request the next page of results
- * @opt_param string maxResults Maximum number of results to return
- * @return Postman_Google_Service_Bigquery_TableList
- */
- public function listTables($projectId, $datasetId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Bigquery_TableList");
- }
-
- /**
- * Updates information in an existing table. The update method replaces the
- * entire table resource, whereas the patch method only replaces fields that are
- * provided in the submitted table resource. This method supports patch
- * semantics. (tables.patch)
- *
- * @param string $projectId Project ID of the table to update
- * @param string $datasetId Dataset ID of the table to update
- * @param string $tableId Table ID of the table to update
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Table
- */
- public function patch($projectId, $datasetId, $tableId, Postman_Google_Service_Bigquery_Table $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Bigquery_Table");
- }
-
- /**
- * Updates information in an existing table. The update method replaces the
- * entire table resource, whereas the patch method only replaces fields that are
- * provided in the submitted table resource. (tables.update)
- *
- * @param string $projectId Project ID of the table to update
- * @param string $datasetId Dataset ID of the table to update
- * @param string $tableId Table ID of the table to update
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Bigquery_Table
- */
- public function update($projectId, $datasetId, $tableId, Postman_Google_Service_Bigquery_Table $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Bigquery_Table");
- }
-}
-
-
-
-
-class Postman_Google_Service_Bigquery_Dataset extends Postman_Google_Collection
-{
- protected $collection_key = 'access';
- protected $internal_gapi_mappings = array(
- );
- protected $accessType = 'Postman_Google_Service_Bigquery_DatasetAccess';
- protected $accessDataType = 'array';
- public $creationTime;
- protected $datasetReferenceType = 'Postman_Google_Service_Bigquery_DatasetReference';
- protected $datasetReferenceDataType = '';
- public $description;
- public $etag;
- public $friendlyName;
- public $id;
- public $kind;
- public $lastModifiedTime;
- public $selfLink;
-
-
- public function setAccess($access)
- {
- $this->access = $access;
- }
- public function getAccess()
- {
- return $this->access;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setDatasetReference(Postman_Google_Service_Bigquery_DatasetReference $datasetReference)
- {
- $this->datasetReference = $datasetReference;
- }
- public function getDatasetReference()
- {
- return $this->datasetReference;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFriendlyName($friendlyName)
- {
- $this->friendlyName = $friendlyName;
- }
- public function getFriendlyName()
- {
- return $this->friendlyName;
- }
- 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 setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Bigquery_DatasetAccess extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $domain;
- public $groupByEmail;
- public $role;
- public $specialGroup;
- public $userByEmail;
- protected $viewType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $viewDataType = '';
-
-
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setGroupByEmail($groupByEmail)
- {
- $this->groupByEmail = $groupByEmail;
- }
- public function getGroupByEmail()
- {
- return $this->groupByEmail;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setSpecialGroup($specialGroup)
- {
- $this->specialGroup = $specialGroup;
- }
- public function getSpecialGroup()
- {
- return $this->specialGroup;
- }
- public function setUserByEmail($userByEmail)
- {
- $this->userByEmail = $userByEmail;
- }
- public function getUserByEmail()
- {
- return $this->userByEmail;
- }
- public function setView(Postman_Google_Service_Bigquery_TableReference $view)
- {
- $this->view = $view;
- }
- public function getView()
- {
- return $this->view;
- }
-}
-
-class Postman_Google_Service_Bigquery_DatasetList extends Postman_Google_Collection
-{
- protected $collection_key = 'datasets';
- protected $internal_gapi_mappings = array(
- );
- protected $datasetsType = 'Postman_Google_Service_Bigquery_DatasetListDatasets';
- protected $datasetsDataType = 'array';
- public $etag;
- public $kind;
- public $nextPageToken;
-
-
- public function setDatasets($datasets)
- {
- $this->datasets = $datasets;
- }
- public function getDatasets()
- {
- return $this->datasets;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Bigquery_DatasetListDatasets extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $datasetReferenceType = 'Postman_Google_Service_Bigquery_DatasetReference';
- protected $datasetReferenceDataType = '';
- public $friendlyName;
- public $id;
- public $kind;
-
-
- public function setDatasetReference(Postman_Google_Service_Bigquery_DatasetReference $datasetReference)
- {
- $this->datasetReference = $datasetReference;
- }
- public function getDatasetReference()
- {
- return $this->datasetReference;
- }
- public function setFriendlyName($friendlyName)
- {
- $this->friendlyName = $friendlyName;
- }
- public function getFriendlyName()
- {
- return $this->friendlyName;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Bigquery_DatasetReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $projectId;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
-}
-
-class Postman_Google_Service_Bigquery_ErrorProto extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $debugInfo;
- public $location;
- public $message;
- public $reason;
-
-
- public function setDebugInfo($debugInfo)
- {
- $this->debugInfo = $debugInfo;
- }
- public function getDebugInfo()
- {
- return $this->debugInfo;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_Bigquery_GetQueryResultsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- public $cacheHit;
- public $etag;
- public $jobComplete;
- protected $jobReferenceType = 'Postman_Google_Service_Bigquery_JobReference';
- protected $jobReferenceDataType = '';
- public $kind;
- public $pageToken;
- protected $rowsType = 'Postman_Google_Service_Bigquery_TableRow';
- protected $rowsDataType = 'array';
- protected $schemaType = 'Postman_Google_Service_Bigquery_TableSchema';
- protected $schemaDataType = '';
- public $totalBytesProcessed;
- public $totalRows;
-
-
- public function setCacheHit($cacheHit)
- {
- $this->cacheHit = $cacheHit;
- }
- public function getCacheHit()
- {
- return $this->cacheHit;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setJobComplete($jobComplete)
- {
- $this->jobComplete = $jobComplete;
- }
- public function getJobComplete()
- {
- return $this->jobComplete;
- }
- public function setJobReference(Postman_Google_Service_Bigquery_JobReference $jobReference)
- {
- $this->jobReference = $jobReference;
- }
- public function getJobReference()
- {
- return $this->jobReference;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setSchema(Postman_Google_Service_Bigquery_TableSchema $schema)
- {
- $this->schema = $schema;
- }
- public function getSchema()
- {
- return $this->schema;
- }
- public function setTotalBytesProcessed($totalBytesProcessed)
- {
- $this->totalBytesProcessed = $totalBytesProcessed;
- }
- public function getTotalBytesProcessed()
- {
- return $this->totalBytesProcessed;
- }
- public function setTotalRows($totalRows)
- {
- $this->totalRows = $totalRows;
- }
- public function getTotalRows()
- {
- return $this->totalRows;
- }
-}
-
-class Postman_Google_Service_Bigquery_Job extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $configurationType = 'Postman_Google_Service_Bigquery_JobConfiguration';
- protected $configurationDataType = '';
- public $etag;
- public $id;
- protected $jobReferenceType = 'Postman_Google_Service_Bigquery_JobReference';
- protected $jobReferenceDataType = '';
- public $kind;
- public $selfLink;
- protected $statisticsType = 'Postman_Google_Service_Bigquery_JobStatistics';
- protected $statisticsDataType = '';
- protected $statusType = 'Postman_Google_Service_Bigquery_JobStatus';
- protected $statusDataType = '';
-
-
- public function setConfiguration(Postman_Google_Service_Bigquery_JobConfiguration $configuration)
- {
- $this->configuration = $configuration;
- }
- public function getConfiguration()
- {
- return $this->configuration;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setJobReference(Postman_Google_Service_Bigquery_JobReference $jobReference)
- {
- $this->jobReference = $jobReference;
- }
- public function getJobReference()
- {
- return $this->jobReference;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatistics(Postman_Google_Service_Bigquery_JobStatistics $statistics)
- {
- $this->statistics = $statistics;
- }
- public function getStatistics()
- {
- return $this->statistics;
- }
- public function setStatus(Postman_Google_Service_Bigquery_JobStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobConfiguration extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $copyType = 'Postman_Google_Service_Bigquery_JobConfigurationTableCopy';
- protected $copyDataType = '';
- public $dryRun;
- protected $extractType = 'Postman_Google_Service_Bigquery_JobConfigurationExtract';
- protected $extractDataType = '';
- protected $linkType = 'Postman_Google_Service_Bigquery_JobConfigurationLink';
- protected $linkDataType = '';
- protected $loadType = 'Postman_Google_Service_Bigquery_JobConfigurationLoad';
- protected $loadDataType = '';
- protected $queryType = 'Postman_Google_Service_Bigquery_JobConfigurationQuery';
- protected $queryDataType = '';
-
-
- public function setCopy(Postman_Google_Service_Bigquery_JobConfigurationTableCopy $copy)
- {
- $this->copy = $copy;
- }
- public function getCopy()
- {
- return $this->copy;
- }
- public function setDryRun($dryRun)
- {
- $this->dryRun = $dryRun;
- }
- public function getDryRun()
- {
- return $this->dryRun;
- }
- public function setExtract(Postman_Google_Service_Bigquery_JobConfigurationExtract $extract)
- {
- $this->extract = $extract;
- }
- public function getExtract()
- {
- return $this->extract;
- }
- public function setLink(Postman_Google_Service_Bigquery_JobConfigurationLink $link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setLoad(Postman_Google_Service_Bigquery_JobConfigurationLoad $load)
- {
- $this->load = $load;
- }
- public function getLoad()
- {
- return $this->load;
- }
- public function setQuery(Postman_Google_Service_Bigquery_JobConfigurationQuery $query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobConfigurationExtract extends Postman_Google_Collection
-{
- protected $collection_key = 'destinationUris';
- protected $internal_gapi_mappings = array(
- );
- public $compression;
- public $destinationFormat;
- public $destinationUri;
- public $destinationUris;
- public $fieldDelimiter;
- public $printHeader;
- protected $sourceTableType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $sourceTableDataType = '';
-
-
- public function setCompression($compression)
- {
- $this->compression = $compression;
- }
- public function getCompression()
- {
- return $this->compression;
- }
- public function setDestinationFormat($destinationFormat)
- {
- $this->destinationFormat = $destinationFormat;
- }
- public function getDestinationFormat()
- {
- return $this->destinationFormat;
- }
- public function setDestinationUri($destinationUri)
- {
- $this->destinationUri = $destinationUri;
- }
- public function getDestinationUri()
- {
- return $this->destinationUri;
- }
- public function setDestinationUris($destinationUris)
- {
- $this->destinationUris = $destinationUris;
- }
- public function getDestinationUris()
- {
- return $this->destinationUris;
- }
- public function setFieldDelimiter($fieldDelimiter)
- {
- $this->fieldDelimiter = $fieldDelimiter;
- }
- public function getFieldDelimiter()
- {
- return $this->fieldDelimiter;
- }
- public function setPrintHeader($printHeader)
- {
- $this->printHeader = $printHeader;
- }
- public function getPrintHeader()
- {
- return $this->printHeader;
- }
- public function setSourceTable(Postman_Google_Service_Bigquery_TableReference $sourceTable)
- {
- $this->sourceTable = $sourceTable;
- }
- public function getSourceTable()
- {
- return $this->sourceTable;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobConfigurationLink extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUri';
- protected $internal_gapi_mappings = array(
- );
- public $createDisposition;
- protected $destinationTableType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $destinationTableDataType = '';
- public $sourceUri;
- public $writeDisposition;
-
-
- public function setCreateDisposition($createDisposition)
- {
- $this->createDisposition = $createDisposition;
- }
- public function getCreateDisposition()
- {
- return $this->createDisposition;
- }
- public function setDestinationTable(Postman_Google_Service_Bigquery_TableReference $destinationTable)
- {
- $this->destinationTable = $destinationTable;
- }
- public function getDestinationTable()
- {
- return $this->destinationTable;
- }
- public function setSourceUri($sourceUri)
- {
- $this->sourceUri = $sourceUri;
- }
- public function getSourceUri()
- {
- return $this->sourceUri;
- }
- public function setWriteDisposition($writeDisposition)
- {
- $this->writeDisposition = $writeDisposition;
- }
- public function getWriteDisposition()
- {
- return $this->writeDisposition;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobConfigurationLoad extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUris';
- protected $internal_gapi_mappings = array(
- );
- public $allowJaggedRows;
- public $allowQuotedNewlines;
- public $createDisposition;
- protected $destinationTableType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $destinationTableDataType = '';
- public $encoding;
- public $fieldDelimiter;
- public $ignoreUnknownValues;
- public $maxBadRecords;
- public $quote;
- protected $schemaType = 'Postman_Google_Service_Bigquery_TableSchema';
- protected $schemaDataType = '';
- public $schemaInline;
- public $schemaInlineFormat;
- public $skipLeadingRows;
- public $sourceFormat;
- public $sourceUris;
- public $writeDisposition;
-
-
- public function setAllowJaggedRows($allowJaggedRows)
- {
- $this->allowJaggedRows = $allowJaggedRows;
- }
- public function getAllowJaggedRows()
- {
- return $this->allowJaggedRows;
- }
- public function setAllowQuotedNewlines($allowQuotedNewlines)
- {
- $this->allowQuotedNewlines = $allowQuotedNewlines;
- }
- public function getAllowQuotedNewlines()
- {
- return $this->allowQuotedNewlines;
- }
- public function setCreateDisposition($createDisposition)
- {
- $this->createDisposition = $createDisposition;
- }
- public function getCreateDisposition()
- {
- return $this->createDisposition;
- }
- public function setDestinationTable(Postman_Google_Service_Bigquery_TableReference $destinationTable)
- {
- $this->destinationTable = $destinationTable;
- }
- public function getDestinationTable()
- {
- return $this->destinationTable;
- }
- public function setEncoding($encoding)
- {
- $this->encoding = $encoding;
- }
- public function getEncoding()
- {
- return $this->encoding;
- }
- public function setFieldDelimiter($fieldDelimiter)
- {
- $this->fieldDelimiter = $fieldDelimiter;
- }
- public function getFieldDelimiter()
- {
- return $this->fieldDelimiter;
- }
- public function setIgnoreUnknownValues($ignoreUnknownValues)
- {
- $this->ignoreUnknownValues = $ignoreUnknownValues;
- }
- public function getIgnoreUnknownValues()
- {
- return $this->ignoreUnknownValues;
- }
- public function setMaxBadRecords($maxBadRecords)
- {
- $this->maxBadRecords = $maxBadRecords;
- }
- public function getMaxBadRecords()
- {
- return $this->maxBadRecords;
- }
- public function setQuote($quote)
- {
- $this->quote = $quote;
- }
- public function getQuote()
- {
- return $this->quote;
- }
- public function setSchema(Postman_Google_Service_Bigquery_TableSchema $schema)
- {
- $this->schema = $schema;
- }
- public function getSchema()
- {
- return $this->schema;
- }
- public function setSchemaInline($schemaInline)
- {
- $this->schemaInline = $schemaInline;
- }
- public function getSchemaInline()
- {
- return $this->schemaInline;
- }
- public function setSchemaInlineFormat($schemaInlineFormat)
- {
- $this->schemaInlineFormat = $schemaInlineFormat;
- }
- public function getSchemaInlineFormat()
- {
- return $this->schemaInlineFormat;
- }
- public function setSkipLeadingRows($skipLeadingRows)
- {
- $this->skipLeadingRows = $skipLeadingRows;
- }
- public function getSkipLeadingRows()
- {
- return $this->skipLeadingRows;
- }
- public function setSourceFormat($sourceFormat)
- {
- $this->sourceFormat = $sourceFormat;
- }
- public function getSourceFormat()
- {
- return $this->sourceFormat;
- }
- public function setSourceUris($sourceUris)
- {
- $this->sourceUris = $sourceUris;
- }
- public function getSourceUris()
- {
- return $this->sourceUris;
- }
- public function setWriteDisposition($writeDisposition)
- {
- $this->writeDisposition = $writeDisposition;
- }
- public function getWriteDisposition()
- {
- return $this->writeDisposition;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobConfigurationQuery extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $allowLargeResults;
- public $createDisposition;
- protected $defaultDatasetType = 'Postman_Google_Service_Bigquery_DatasetReference';
- protected $defaultDatasetDataType = '';
- protected $destinationTableType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $destinationTableDataType = '';
- public $flattenResults;
- public $preserveNulls;
- public $priority;
- public $query;
- public $useQueryCache;
- public $writeDisposition;
-
-
- public function setAllowLargeResults($allowLargeResults)
- {
- $this->allowLargeResults = $allowLargeResults;
- }
- public function getAllowLargeResults()
- {
- return $this->allowLargeResults;
- }
- public function setCreateDisposition($createDisposition)
- {
- $this->createDisposition = $createDisposition;
- }
- public function getCreateDisposition()
- {
- return $this->createDisposition;
- }
- public function setDefaultDataset(Postman_Google_Service_Bigquery_DatasetReference $defaultDataset)
- {
- $this->defaultDataset = $defaultDataset;
- }
- public function getDefaultDataset()
- {
- return $this->defaultDataset;
- }
- public function setDestinationTable(Postman_Google_Service_Bigquery_TableReference $destinationTable)
- {
- $this->destinationTable = $destinationTable;
- }
- public function getDestinationTable()
- {
- return $this->destinationTable;
- }
- public function setFlattenResults($flattenResults)
- {
- $this->flattenResults = $flattenResults;
- }
- public function getFlattenResults()
- {
- return $this->flattenResults;
- }
- public function setPreserveNulls($preserveNulls)
- {
- $this->preserveNulls = $preserveNulls;
- }
- public function getPreserveNulls()
- {
- return $this->preserveNulls;
- }
- public function setPriority($priority)
- {
- $this->priority = $priority;
- }
- public function getPriority()
- {
- return $this->priority;
- }
- public function setQuery($query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setUseQueryCache($useQueryCache)
- {
- $this->useQueryCache = $useQueryCache;
- }
- public function getUseQueryCache()
- {
- return $this->useQueryCache;
- }
- public function setWriteDisposition($writeDisposition)
- {
- $this->writeDisposition = $writeDisposition;
- }
- public function getWriteDisposition()
- {
- return $this->writeDisposition;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobConfigurationTableCopy extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceTables';
- protected $internal_gapi_mappings = array(
- );
- public $createDisposition;
- protected $destinationTableType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $destinationTableDataType = '';
- protected $sourceTableType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $sourceTableDataType = '';
- protected $sourceTablesType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $sourceTablesDataType = 'array';
- public $writeDisposition;
-
-
- public function setCreateDisposition($createDisposition)
- {
- $this->createDisposition = $createDisposition;
- }
- public function getCreateDisposition()
- {
- return $this->createDisposition;
- }
- public function setDestinationTable(Postman_Google_Service_Bigquery_TableReference $destinationTable)
- {
- $this->destinationTable = $destinationTable;
- }
- public function getDestinationTable()
- {
- return $this->destinationTable;
- }
- public function setSourceTable(Postman_Google_Service_Bigquery_TableReference $sourceTable)
- {
- $this->sourceTable = $sourceTable;
- }
- public function getSourceTable()
- {
- return $this->sourceTable;
- }
- public function setSourceTables($sourceTables)
- {
- $this->sourceTables = $sourceTables;
- }
- public function getSourceTables()
- {
- return $this->sourceTables;
- }
- public function setWriteDisposition($writeDisposition)
- {
- $this->writeDisposition = $writeDisposition;
- }
- public function getWriteDisposition()
- {
- return $this->writeDisposition;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobList extends Postman_Google_Collection
-{
- protected $collection_key = 'jobs';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $jobsType = 'Postman_Google_Service_Bigquery_JobListJobs';
- protected $jobsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setJobs($jobs)
- {
- $this->jobs = $jobs;
- }
- public function getJobs()
- {
- return $this->jobs;
- }
- 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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobListJobs extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "userEmail" => "user_email",
- );
- protected $configurationType = 'Postman_Google_Service_Bigquery_JobConfiguration';
- protected $configurationDataType = '';
- protected $errorResultType = 'Postman_Google_Service_Bigquery_ErrorProto';
- protected $errorResultDataType = '';
- public $id;
- protected $jobReferenceType = 'Postman_Google_Service_Bigquery_JobReference';
- protected $jobReferenceDataType = '';
- public $kind;
- public $state;
- protected $statisticsType = 'Postman_Google_Service_Bigquery_JobStatistics';
- protected $statisticsDataType = '';
- protected $statusType = 'Postman_Google_Service_Bigquery_JobStatus';
- protected $statusDataType = '';
- public $userEmail;
-
-
- public function setConfiguration(Postman_Google_Service_Bigquery_JobConfiguration $configuration)
- {
- $this->configuration = $configuration;
- }
- public function getConfiguration()
- {
- return $this->configuration;
- }
- public function setErrorResult(Postman_Google_Service_Bigquery_ErrorProto $errorResult)
- {
- $this->errorResult = $errorResult;
- }
- public function getErrorResult()
- {
- return $this->errorResult;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setJobReference(Postman_Google_Service_Bigquery_JobReference $jobReference)
- {
- $this->jobReference = $jobReference;
- }
- public function getJobReference()
- {
- return $this->jobReference;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setStatistics(Postman_Google_Service_Bigquery_JobStatistics $statistics)
- {
- $this->statistics = $statistics;
- }
- public function getStatistics()
- {
- return $this->statistics;
- }
- public function setStatus(Postman_Google_Service_Bigquery_JobStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUserEmail($userEmail)
- {
- $this->userEmail = $userEmail;
- }
- public function getUserEmail()
- {
- return $this->userEmail;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
- public $projectId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobStatistics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTime;
- public $endTime;
- protected $extractType = 'Postman_Google_Service_Bigquery_JobStatistics4';
- protected $extractDataType = '';
- protected $loadType = 'Postman_Google_Service_Bigquery_JobStatistics3';
- protected $loadDataType = '';
- protected $queryType = 'Postman_Google_Service_Bigquery_JobStatistics2';
- protected $queryDataType = '';
- public $startTime;
- public $totalBytesProcessed;
-
-
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setExtract(Postman_Google_Service_Bigquery_JobStatistics4 $extract)
- {
- $this->extract = $extract;
- }
- public function getExtract()
- {
- return $this->extract;
- }
- public function setLoad(Postman_Google_Service_Bigquery_JobStatistics3 $load)
- {
- $this->load = $load;
- }
- public function getLoad()
- {
- return $this->load;
- }
- public function setQuery(Postman_Google_Service_Bigquery_JobStatistics2 $query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setTotalBytesProcessed($totalBytesProcessed)
- {
- $this->totalBytesProcessed = $totalBytesProcessed;
- }
- public function getTotalBytesProcessed()
- {
- return $this->totalBytesProcessed;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobStatistics2 extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $cacheHit;
- public $totalBytesProcessed;
-
-
- public function setCacheHit($cacheHit)
- {
- $this->cacheHit = $cacheHit;
- }
- public function getCacheHit()
- {
- return $this->cacheHit;
- }
- public function setTotalBytesProcessed($totalBytesProcessed)
- {
- $this->totalBytesProcessed = $totalBytesProcessed;
- }
- public function getTotalBytesProcessed()
- {
- return $this->totalBytesProcessed;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobStatistics3 extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $inputFileBytes;
- public $inputFiles;
- public $outputBytes;
- public $outputRows;
-
-
- public function setInputFileBytes($inputFileBytes)
- {
- $this->inputFileBytes = $inputFileBytes;
- }
- public function getInputFileBytes()
- {
- return $this->inputFileBytes;
- }
- public function setInputFiles($inputFiles)
- {
- $this->inputFiles = $inputFiles;
- }
- public function getInputFiles()
- {
- return $this->inputFiles;
- }
- public function setOutputBytes($outputBytes)
- {
- $this->outputBytes = $outputBytes;
- }
- public function getOutputBytes()
- {
- return $this->outputBytes;
- }
- public function setOutputRows($outputRows)
- {
- $this->outputRows = $outputRows;
- }
- public function getOutputRows()
- {
- return $this->outputRows;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobStatistics4 extends Postman_Google_Collection
-{
- protected $collection_key = 'destinationUriFileCounts';
- protected $internal_gapi_mappings = array(
- );
- public $destinationUriFileCounts;
-
-
- public function setDestinationUriFileCounts($destinationUriFileCounts)
- {
- $this->destinationUriFileCounts = $destinationUriFileCounts;
- }
- public function getDestinationUriFileCounts()
- {
- return $this->destinationUriFileCounts;
- }
-}
-
-class Postman_Google_Service_Bigquery_JobStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $errorResultType = 'Postman_Google_Service_Bigquery_ErrorProto';
- protected $errorResultDataType = '';
- protected $errorsType = 'Postman_Google_Service_Bigquery_ErrorProto';
- protected $errorsDataType = 'array';
- public $state;
-
-
- public function setErrorResult(Postman_Google_Service_Bigquery_ErrorProto $errorResult)
- {
- $this->errorResult = $errorResult;
- }
- public function getErrorResult()
- {
- return $this->errorResult;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Bigquery_JsonObject extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Bigquery_ProjectList extends Postman_Google_Collection
-{
- protected $collection_key = 'projects';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- public $nextPageToken;
- protected $projectsType = 'Postman_Google_Service_Bigquery_ProjectListProjects';
- protected $projectsDataType = 'array';
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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;
- }
- public function setProjects($projects)
- {
- $this->projects = $projects;
- }
- public function getProjects()
- {
- return $this->projects;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Bigquery_ProjectListProjects extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $friendlyName;
- public $id;
- public $kind;
- public $numericId;
- protected $projectReferenceType = 'Postman_Google_Service_Bigquery_ProjectReference';
- protected $projectReferenceDataType = '';
-
-
- public function setFriendlyName($friendlyName)
- {
- $this->friendlyName = $friendlyName;
- }
- public function getFriendlyName()
- {
- return $this->friendlyName;
- }
- 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 setNumericId($numericId)
- {
- $this->numericId = $numericId;
- }
- public function getNumericId()
- {
- return $this->numericId;
- }
- public function setProjectReference(Postman_Google_Service_Bigquery_ProjectReference $projectReference)
- {
- $this->projectReference = $projectReference;
- }
- public function getProjectReference()
- {
- return $this->projectReference;
- }
-}
-
-class Postman_Google_Service_Bigquery_ProjectReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $projectId;
-
-
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
-}
-
-class Postman_Google_Service_Bigquery_QueryRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $defaultDatasetType = 'Postman_Google_Service_Bigquery_DatasetReference';
- protected $defaultDatasetDataType = '';
- public $dryRun;
- public $kind;
- public $maxResults;
- public $preserveNulls;
- public $query;
- public $timeoutMs;
- public $useQueryCache;
-
-
- public function setDefaultDataset(Postman_Google_Service_Bigquery_DatasetReference $defaultDataset)
- {
- $this->defaultDataset = $defaultDataset;
- }
- public function getDefaultDataset()
- {
- return $this->defaultDataset;
- }
- public function setDryRun($dryRun)
- {
- $this->dryRun = $dryRun;
- }
- public function getDryRun()
- {
- return $this->dryRun;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxResults($maxResults)
- {
- $this->maxResults = $maxResults;
- }
- public function getMaxResults()
- {
- return $this->maxResults;
- }
- public function setPreserveNulls($preserveNulls)
- {
- $this->preserveNulls = $preserveNulls;
- }
- public function getPreserveNulls()
- {
- return $this->preserveNulls;
- }
- public function setQuery($query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setTimeoutMs($timeoutMs)
- {
- $this->timeoutMs = $timeoutMs;
- }
- public function getTimeoutMs()
- {
- return $this->timeoutMs;
- }
- public function setUseQueryCache($useQueryCache)
- {
- $this->useQueryCache = $useQueryCache;
- }
- public function getUseQueryCache()
- {
- return $this->useQueryCache;
- }
-}
-
-class Postman_Google_Service_Bigquery_QueryResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- public $cacheHit;
- public $jobComplete;
- protected $jobReferenceType = 'Postman_Google_Service_Bigquery_JobReference';
- protected $jobReferenceDataType = '';
- public $kind;
- public $pageToken;
- protected $rowsType = 'Postman_Google_Service_Bigquery_TableRow';
- protected $rowsDataType = 'array';
- protected $schemaType = 'Postman_Google_Service_Bigquery_TableSchema';
- protected $schemaDataType = '';
- public $totalBytesProcessed;
- public $totalRows;
-
-
- public function setCacheHit($cacheHit)
- {
- $this->cacheHit = $cacheHit;
- }
- public function getCacheHit()
- {
- return $this->cacheHit;
- }
- public function setJobComplete($jobComplete)
- {
- $this->jobComplete = $jobComplete;
- }
- public function getJobComplete()
- {
- return $this->jobComplete;
- }
- public function setJobReference(Postman_Google_Service_Bigquery_JobReference $jobReference)
- {
- $this->jobReference = $jobReference;
- }
- public function getJobReference()
- {
- return $this->jobReference;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setSchema(Postman_Google_Service_Bigquery_TableSchema $schema)
- {
- $this->schema = $schema;
- }
- public function getSchema()
- {
- return $this->schema;
- }
- public function setTotalBytesProcessed($totalBytesProcessed)
- {
- $this->totalBytesProcessed = $totalBytesProcessed;
- }
- public function getTotalBytesProcessed()
- {
- return $this->totalBytesProcessed;
- }
- public function setTotalRows($totalRows)
- {
- $this->totalRows = $totalRows;
- }
- public function getTotalRows()
- {
- return $this->totalRows;
- }
-}
-
-class Postman_Google_Service_Bigquery_Table extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTime;
- public $description;
- public $etag;
- public $expirationTime;
- public $friendlyName;
- public $id;
- public $kind;
- public $lastModifiedTime;
- public $numBytes;
- public $numRows;
- protected $schemaType = 'Postman_Google_Service_Bigquery_TableSchema';
- protected $schemaDataType = '';
- public $selfLink;
- protected $tableReferenceType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $tableReferenceDataType = '';
- public $type;
- protected $viewType = 'Postman_Google_Service_Bigquery_ViewDefinition';
- protected $viewDataType = '';
-
-
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExpirationTime($expirationTime)
- {
- $this->expirationTime = $expirationTime;
- }
- public function getExpirationTime()
- {
- return $this->expirationTime;
- }
- public function setFriendlyName($friendlyName)
- {
- $this->friendlyName = $friendlyName;
- }
- public function getFriendlyName()
- {
- return $this->friendlyName;
- }
- 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 setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setNumBytes($numBytes)
- {
- $this->numBytes = $numBytes;
- }
- public function getNumBytes()
- {
- return $this->numBytes;
- }
- public function setNumRows($numRows)
- {
- $this->numRows = $numRows;
- }
- public function getNumRows()
- {
- return $this->numRows;
- }
- public function setSchema(Postman_Google_Service_Bigquery_TableSchema $schema)
- {
- $this->schema = $schema;
- }
- public function getSchema()
- {
- return $this->schema;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTableReference(Postman_Google_Service_Bigquery_TableReference $tableReference)
- {
- $this->tableReference = $tableReference;
- }
- public function getTableReference()
- {
- return $this->tableReference;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setView(Postman_Google_Service_Bigquery_ViewDefinition $view)
- {
- $this->view = $view;
- }
- public function getView()
- {
- return $this->view;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableCell extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $v;
-
-
- public function setV($v)
- {
- $this->v = $v;
- }
- public function getV()
- {
- return $this->v;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableDataInsertAllRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $rowsType = 'Postman_Google_Service_Bigquery_TableDataInsertAllRequestRows';
- protected $rowsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableDataInsertAllRequestRows extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $insertId;
- public $json;
-
-
- public function setInsertId($insertId)
- {
- $this->insertId = $insertId;
- }
- public function getInsertId()
- {
- return $this->insertId;
- }
- public function setJson($json)
- {
- $this->json = $json;
- }
- public function getJson()
- {
- return $this->json;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableDataInsertAllResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'insertErrors';
- protected $internal_gapi_mappings = array(
- );
- protected $insertErrorsType = 'Postman_Google_Service_Bigquery_TableDataInsertAllResponseInsertErrors';
- protected $insertErrorsDataType = 'array';
- public $kind;
-
-
- public function setInsertErrors($insertErrors)
- {
- $this->insertErrors = $insertErrors;
- }
- public function getInsertErrors()
- {
- return $this->insertErrors;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableDataInsertAllResponseInsertErrors extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $errorsType = 'Postman_Google_Service_Bigquery_ErrorProto';
- protected $errorsDataType = 'array';
- public $index;
-
-
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setIndex($index)
- {
- $this->index = $index;
- }
- public function getIndex()
- {
- return $this->index;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableDataList extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- public $pageToken;
- protected $rowsType = 'Postman_Google_Service_Bigquery_TableRow';
- protected $rowsDataType = 'array';
- public $totalRows;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setTotalRows($totalRows)
- {
- $this->totalRows = $totalRows;
- }
- public function getTotalRows()
- {
- return $this->totalRows;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableFieldSchema extends Postman_Google_Collection
-{
- protected $collection_key = 'fields';
- protected $internal_gapi_mappings = array(
- );
- public $description;
- protected $fieldsType = 'Postman_Google_Service_Bigquery_TableFieldSchema';
- protected $fieldsDataType = 'array';
- public $mode;
- public $name;
- public $type;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFields($fields)
- {
- $this->fields = $fields;
- }
- public function getFields()
- {
- return $this->fields;
- }
- public function setMode($mode)
- {
- $this->mode = $mode;
- }
- public function getMode()
- {
- return $this->mode;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableList extends Postman_Google_Collection
-{
- protected $collection_key = 'tables';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- public $nextPageToken;
- protected $tablesType = 'Postman_Google_Service_Bigquery_TableListTables';
- protected $tablesDataType = 'array';
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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;
- }
- public function setTables($tables)
- {
- $this->tables = $tables;
- }
- public function getTables()
- {
- return $this->tables;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableListTables extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $friendlyName;
- public $id;
- public $kind;
- protected $tableReferenceType = 'Postman_Google_Service_Bigquery_TableReference';
- protected $tableReferenceDataType = '';
- public $type;
-
-
- public function setFriendlyName($friendlyName)
- {
- $this->friendlyName = $friendlyName;
- }
- public function getFriendlyName()
- {
- return $this->friendlyName;
- }
- 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 setTableReference(Postman_Google_Service_Bigquery_TableReference $tableReference)
- {
- $this->tableReference = $tableReference;
- }
- public function getTableReference()
- {
- return $this->tableReference;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $projectId;
- public $tableId;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableRow extends Postman_Google_Collection
-{
- protected $collection_key = 'f';
- protected $internal_gapi_mappings = array(
- );
- protected $fType = 'Postman_Google_Service_Bigquery_TableCell';
- protected $fDataType = 'array';
-
-
- public function setF($f)
- {
- $this->f = $f;
- }
- public function getF()
- {
- return $this->f;
- }
-}
-
-class Postman_Google_Service_Bigquery_TableSchema extends Postman_Google_Collection
-{
- protected $collection_key = 'fields';
- protected $internal_gapi_mappings = array(
- );
- protected $fieldsType = 'Postman_Google_Service_Bigquery_TableFieldSchema';
- protected $fieldsDataType = 'array';
-
-
- public function setFields($fields)
- {
- $this->fields = $fields;
- }
- public function getFields()
- {
- return $this->fields;
- }
-}
-
-class Postman_Google_Service_Bigquery_ViewDefinition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $query;
-
-
- public function setQuery($query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Blogger.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Blogger.php
deleted file mode 100644
index 016aebb..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Blogger.php
+++ /dev/null
@@ -1,3277 +0,0 @@
-
- * API for access to the data within Blogger.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Blogger extends Postman_Google_Service -{ - /** Manage your Blogger account. */ - const BLOGGER = - "https://www.googleapis.com/auth/blogger"; - /** View your Blogger account. */ - const BLOGGER_READONLY = - "https://www.googleapis.com/auth/blogger.readonly"; - - public $blogUserInfos; - public $blogs; - public $comments; - public $pageViews; - public $pages; - public $postUserInfos; - public $posts; - public $users; - - - /** - * Constructs the internal representation of the Blogger service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'blogger/v3/'; - $this->version = 'v3'; - $this->serviceName = 'blogger'; - - $this->blogUserInfos = new Postman_Google_Service_Blogger_BlogUserInfos_Resource( - $this, - $this->serviceName, - 'blogUserInfos', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}/blogs/{blogId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxPosts' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->blogs = new Postman_Google_Service_Blogger_Blogs_Resource( - $this, - $this->serviceName, - 'blogs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'blogs/{blogId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxPosts' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getByUrl' => array( - 'path' => 'blogs/byurl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'url' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listByUser' => array( - 'path' => 'users/{userId}/blogs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchUserInfo' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->comments = new Postman_Google_Service_Blogger_Comments_Resource( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'approve' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/approve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listByBlog' => array( - 'path' => 'blogs/{blogId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'markAsSpam' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/spam', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'removeContent' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/removecontent', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->pageViews = new Postman_Google_Service_Blogger_PageViews_Resource( - $this, - $this->serviceName, - 'pageViews', - array( - 'methods' => array( - 'get' => array( - 'path' => 'blogs/{blogId}/pageviews', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'range' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->pages = new Postman_Google_Service_Blogger_Pages_Resource( - $this, - $this->serviceName, - 'pages', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'blogs/{blogId}/pages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'isDraft' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'blogs/{blogId}/pages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'publish' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'revert' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}/revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->postUserInfos = new Postman_Google_Service_Blogger_PostUserInfos_Resource( - $this, - $this->serviceName, - 'postUserInfos', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}/blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'users/{userId}/blogs/{blogId}/posts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->posts = new Postman_Google_Service_Blogger_Posts_Resource( - $this, - $this->serviceName, - 'posts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getByPath' => array( - 'path' => 'blogs/{blogId}/posts/bypath', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'path' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'blogs/{blogId}/posts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'isDraft' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'blogs/{blogId}/posts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'publish' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'publishDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'blogs/{blogId}/posts/search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->users = new Postman_Google_Service_Blogger_Users_Resource( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "blogUserInfos" collection of methods. - * Typical usage is: - *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $blogUserInfos = $bloggerService->blogUserInfos;
- *
- */
-class Postman_Google_Service_Blogger_BlogUserInfos_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one blog and user info pair by blogId and userId. (blogUserInfos.get)
- *
- * @param string $userId ID of the user whose blogs are to be fetched. Either
- * the word 'self' (sans quote marks) or the user's profile identifier.
- * @param string $blogId The ID of the blog to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxPosts Maximum number of posts to pull back with the
- * blog.
- * @return Postman_Google_Service_Blogger_BlogUserInfo
- */
- public function get($userId, $blogId, $optParams = array())
- {
- $params = array('userId' => $userId, 'blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_BlogUserInfo");
- }
-}
-
-/**
- * The "blogs" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $blogs = $bloggerService->blogs;
- *
- */
-class Postman_Google_Service_Blogger_Blogs_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one blog by ID. (blogs.get)
- *
- * @param string $blogId The ID of the blog to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxPosts Maximum number of posts to pull back with the
- * blog.
- * @opt_param string view Access level with which to view the blog. Note that
- * some fields require elevated access.
- * @return Postman_Google_Service_Blogger_Blog
- */
- public function get($blogId, $optParams = array())
- {
- $params = array('blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_Blog");
- }
-
- /**
- * Retrieve a Blog by URL. (blogs.getByUrl)
- *
- * @param string $url The URL of the blog to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string view Access level with which to view the blog. Note that
- * some fields require elevated access.
- * @return Postman_Google_Service_Blogger_Blog
- */
- public function getByUrl($url, $optParams = array())
- {
- $params = array('url' => $url);
- $params = array_merge($params, $optParams);
- return $this->call('getByUrl', array($params), "Postman_Google_Service_Blogger_Blog");
- }
-
- /**
- * Retrieves a list of blogs, possibly filtered. (blogs.listByUser)
- *
- * @param string $userId ID of the user whose blogs are to be fetched. Either
- * the word 'self' (sans quote marks) or the user's profile identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool fetchUserInfo Whether the response is a list of blogs with
- * per-user information instead of just blogs.
- * @opt_param string status Blog statuses to include in the result (default:
- * Live blogs only). Note that ADMIN access is required to view deleted blogs.
- * @opt_param string role User access types for blogs to include in the results,
- * e.g. AUTHOR will return blogs where the user has author level access. If no
- * roles are specified, defaults to ADMIN and AUTHOR roles.
- * @opt_param string view Access level with which to view the blogs. Note that
- * some fields require elevated access.
- * @return Postman_Google_Service_Blogger_BlogList
- */
- public function listByUser($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('listByUser', array($params), "Postman_Google_Service_Blogger_BlogList");
- }
-}
-
-/**
- * The "comments" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $comments = $bloggerService->comments;
- *
- */
-class Postman_Google_Service_Blogger_Comments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Marks a comment as not spam. (comments.approve)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param string $commentId The ID of the comment to mark as not spam.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_Comment
- */
- public function approve($blogId, $postId, $commentId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('approve', array($params), "Postman_Google_Service_Blogger_Comment");
- }
-
- /**
- * Delete a comment by ID. (comments.delete)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param string $commentId The ID of the comment to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($blogId, $postId, $commentId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets one comment by ID. (comments.get)
- *
- * @param string $blogId ID of the blog to containing the comment.
- * @param string $postId ID of the post to fetch posts from.
- * @param string $commentId The ID of the comment to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string view Access level for the requested comment (default:
- * READER). Note that some comments will require elevated permissions, for
- * example comments where the parent posts which is in a draft state, or
- * comments that are pending moderation.
- * @return Postman_Google_Service_Blogger_Comment
- */
- public function get($blogId, $postId, $commentId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_Comment");
- }
-
- /**
- * Retrieves the comments for a post, possibly filtered. (comments.listComments)
- *
- * @param string $blogId ID of the blog to fetch comments from.
- * @param string $postId ID of the post to fetch posts from.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string status
- * @opt_param string startDate Earliest date of comment to fetch, a date-time
- * with RFC 3339 formatting.
- * @opt_param string endDate Latest date of comment to fetch, a date-time with
- * RFC 3339 formatting.
- * @opt_param string maxResults Maximum number of comments to include in the
- * result.
- * @opt_param string pageToken Continuation token if request is paged.
- * @opt_param bool fetchBodies Whether the body content of the comments is
- * included.
- * @opt_param string view Access level with which to view the returned result.
- * Note that some fields require elevated access.
- * @return Postman_Google_Service_Blogger_CommentList
- */
- public function listComments($blogId, $postId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Blogger_CommentList");
- }
-
- /**
- * Retrieves the comments for a blog, across all posts, possibly filtered.
- * (comments.listByBlog)
- *
- * @param string $blogId ID of the blog to fetch comments from.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string startDate Earliest date of comment to fetch, a date-time
- * with RFC 3339 formatting.
- * @opt_param string endDate Latest date of comment to fetch, a date-time with
- * RFC 3339 formatting.
- * @opt_param string maxResults Maximum number of comments to include in the
- * result.
- * @opt_param string pageToken Continuation token if request is paged.
- * @opt_param bool fetchBodies Whether the body content of the comments is
- * included.
- * @return Postman_Google_Service_Blogger_CommentList
- */
- public function listByBlog($blogId, $optParams = array())
- {
- $params = array('blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('listByBlog', array($params), "Postman_Google_Service_Blogger_CommentList");
- }
-
- /**
- * Marks a comment as spam. (comments.markAsSpam)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param string $commentId The ID of the comment to mark as spam.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_Comment
- */
- public function markAsSpam($blogId, $postId, $commentId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('markAsSpam', array($params), "Postman_Google_Service_Blogger_Comment");
- }
-
- /**
- * Removes the content of a comment. (comments.removeContent)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param string $commentId The ID of the comment to delete content from.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_Comment
- */
- public function removeContent($blogId, $postId, $commentId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('removeContent', array($params), "Postman_Google_Service_Blogger_Comment");
- }
-}
-
-/**
- * The "pageViews" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $pageViews = $bloggerService->pageViews;
- *
- */
-class Postman_Google_Service_Blogger_PageViews_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieve pageview stats for a Blog. (pageViews.get)
- *
- * @param string $blogId The ID of the blog to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string range
- * @return Postman_Google_Service_Blogger_Pageviews
- */
- public function get($blogId, $optParams = array())
- {
- $params = array('blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_Pageviews");
- }
-}
-
-/**
- * The "pages" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $pages = $bloggerService->pages;
- *
- */
-class Postman_Google_Service_Blogger_Pages_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a page by ID. (pages.delete)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $pageId The ID of the Page.
- * @param array $optParams Optional parameters.
- */
- public function delete($blogId, $pageId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'pageId' => $pageId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets one blog page by ID. (pages.get)
- *
- * @param string $blogId ID of the blog containing the page.
- * @param string $pageId The ID of the page to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string view
- * @return Postman_Google_Service_Blogger_Page
- */
- public function get($blogId, $pageId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'pageId' => $pageId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_Page");
- }
-
- /**
- * Add a page. (pages.insert)
- *
- * @param string $blogId ID of the blog to add the page to.
- * @param Postman_Google_Page $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool isDraft Whether to create the page as a draft (default:
- * false).
- * @return Postman_Google_Service_Blogger_Page
- */
- public function insert($blogId, Postman_Google_Service_Blogger_Page $postBody, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Blogger_Page");
- }
-
- /**
- * Retrieves the pages for a blog, optionally including non-LIVE statuses.
- * (pages.listPages)
- *
- * @param string $blogId ID of the blog to fetch pages from.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string status
- * @opt_param bool fetchBodies Whether to retrieve the Page bodies.
- * @opt_param string view Access level with which to view the returned result.
- * Note that some fields require elevated access.
- * @return Postman_Google_Service_Blogger_PageList
- */
- public function listPages($blogId, $optParams = array())
- {
- $params = array('blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Blogger_PageList");
- }
-
- /**
- * Update a page. This method supports patch semantics. (pages.patch)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $pageId The ID of the Page.
- * @param Postman_Google_Page $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool revert Whether a revert action should be performed when the
- * page is updated (default: false).
- * @opt_param bool publish Whether a publish action should be performed when the
- * page is updated (default: false).
- * @return Postman_Google_Service_Blogger_Page
- */
- public function patch($blogId, $pageId, Postman_Google_Service_Blogger_Page $postBody, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Blogger_Page");
- }
-
- /**
- * Publishes a draft page. (pages.publish)
- *
- * @param string $blogId The ID of the blog.
- * @param string $pageId The ID of the page.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_Page
- */
- public function publish($blogId, $pageId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'pageId' => $pageId);
- $params = array_merge($params, $optParams);
- return $this->call('publish', array($params), "Postman_Google_Service_Blogger_Page");
- }
-
- /**
- * Revert a published or scheduled page to draft state. (pages.revert)
- *
- * @param string $blogId The ID of the blog.
- * @param string $pageId The ID of the page.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_Page
- */
- public function revert($blogId, $pageId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'pageId' => $pageId);
- $params = array_merge($params, $optParams);
- return $this->call('revert', array($params), "Postman_Google_Service_Blogger_Page");
- }
-
- /**
- * Update a page. (pages.update)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $pageId The ID of the Page.
- * @param Postman_Google_Page $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool revert Whether a revert action should be performed when the
- * page is updated (default: false).
- * @opt_param bool publish Whether a publish action should be performed when the
- * page is updated (default: false).
- * @return Postman_Google_Service_Blogger_Page
- */
- public function update($blogId, $pageId, Postman_Google_Service_Blogger_Page $postBody, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Blogger_Page");
- }
-}
-
-/**
- * The "postUserInfos" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $postUserInfos = $bloggerService->postUserInfos;
- *
- */
-class Postman_Google_Service_Blogger_PostUserInfos_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one post and user info pair, by post ID and user ID. The post user info
- * contains per-user information about the post, such as access rights, specific
- * to the user. (postUserInfos.get)
- *
- * @param string $userId ID of the user for the per-user information to be
- * fetched. Either the word 'self' (sans quote marks) or the user's profile
- * identifier.
- * @param string $blogId The ID of the blog.
- * @param string $postId The ID of the post to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxComments Maximum number of comments to pull back on a
- * post.
- * @return Postman_Google_Service_Blogger_PostUserInfo
- */
- public function get($userId, $blogId, $postId, $optParams = array())
- {
- $params = array('userId' => $userId, 'blogId' => $blogId, 'postId' => $postId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_PostUserInfo");
- }
-
- /**
- * Retrieves a list of post and post user info pairs, possibly filtered. The
- * post user info contains per-user information about the post, such as access
- * rights, specific to the user. (postUserInfos.listPostUserInfos)
- *
- * @param string $userId ID of the user for the per-user information to be
- * fetched. Either the word 'self' (sans quote marks) or the user's profile
- * identifier.
- * @param string $blogId ID of the blog to fetch posts from.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Sort order applied to search results. Default is
- * published.
- * @opt_param string startDate Earliest post date to fetch, a date-time with RFC
- * 3339 formatting.
- * @opt_param string endDate Latest post date to fetch, a date-time with RFC
- * 3339 formatting.
- * @opt_param string labels Comma-separated list of labels to search for.
- * @opt_param string maxResults Maximum number of posts to fetch.
- * @opt_param string pageToken Continuation token if the request is paged.
- * @opt_param string status
- * @opt_param bool fetchBodies Whether the body content of posts is included.
- * Default is false.
- * @opt_param string view Access level with which to view the returned result.
- * Note that some fields require elevated access.
- * @return Postman_Google_Service_Blogger_PostUserInfosList
- */
- public function listPostUserInfos($userId, $blogId, $optParams = array())
- {
- $params = array('userId' => $userId, 'blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Blogger_PostUserInfosList");
- }
-}
-
-/**
- * The "posts" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $posts = $bloggerService->posts;
- *
- */
-class Postman_Google_Service_Blogger_Posts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a post by ID. (posts.delete)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param array $optParams Optional parameters.
- */
- public function delete($blogId, $postId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Get a post by ID. (posts.get)
- *
- * @param string $blogId ID of the blog to fetch the post from.
- * @param string $postId The ID of the post
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool fetchBody Whether the body content of the post is included
- * (default: true). This should be set to false when the post bodies are not
- * required, to help minimize traffic.
- * @opt_param string maxComments Maximum number of comments to pull back on a
- * post.
- * @opt_param bool fetchImages Whether image URL metadata for each post is
- * included (default: false).
- * @opt_param string view Access level with which to view the returned result.
- * Note that some fields require elevated access.
- * @return Postman_Google_Service_Blogger_Post
- */
- public function get($blogId, $postId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_Post");
- }
-
- /**
- * Retrieve a Post by Path. (posts.getByPath)
- *
- * @param string $blogId ID of the blog to fetch the post from.
- * @param string $path Path of the Post to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxComments Maximum number of comments to pull back on a
- * post.
- * @opt_param string view Access level with which to view the returned result.
- * Note that some fields require elevated access.
- * @return Postman_Google_Service_Blogger_Post
- */
- public function getByPath($blogId, $path, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'path' => $path);
- $params = array_merge($params, $optParams);
- return $this->call('getByPath', array($params), "Postman_Google_Service_Blogger_Post");
- }
-
- /**
- * Add a post. (posts.insert)
- *
- * @param string $blogId ID of the blog to add the post to.
- * @param Postman_Google_Post $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool fetchImages Whether image URL metadata for each post is
- * included in the returned result (default: false).
- * @opt_param bool isDraft Whether to create the post as a draft (default:
- * false).
- * @opt_param bool fetchBody Whether the body content of the post is included
- * with the result (default: true).
- * @return Postman_Google_Service_Blogger_Post
- */
- public function insert($blogId, Postman_Google_Service_Blogger_Post $postBody, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Blogger_Post");
- }
-
- /**
- * Retrieves a list of posts, possibly filtered. (posts.listPosts)
- *
- * @param string $blogId ID of the blog to fetch posts from.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Sort search results
- * @opt_param string startDate Earliest post date to fetch, a date-time with RFC
- * 3339 formatting.
- * @opt_param string endDate Latest post date to fetch, a date-time with RFC
- * 3339 formatting.
- * @opt_param string labels Comma-separated list of labels to search for.
- * @opt_param string maxResults Maximum number of posts to fetch.
- * @opt_param bool fetchImages Whether image URL metadata for each post is
- * included.
- * @opt_param string pageToken Continuation token if the request is paged.
- * @opt_param string status Statuses to include in the results.
- * @opt_param bool fetchBodies Whether the body content of posts is included
- * (default: true). This should be set to false when the post bodies are not
- * required, to help minimize traffic.
- * @opt_param string view Access level with which to view the returned result.
- * Note that some fields require escalated access.
- * @return Postman_Google_Service_Blogger_PostList
- */
- public function listPosts($blogId, $optParams = array())
- {
- $params = array('blogId' => $blogId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Blogger_PostList");
- }
-
- /**
- * Update a post. This method supports patch semantics. (posts.patch)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param Postman_Google_Post $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool revert Whether a revert action should be performed when the
- * post is updated (default: false).
- * @opt_param bool publish Whether a publish action should be performed when the
- * post is updated (default: false).
- * @opt_param bool fetchBody Whether the body content of the post is included
- * with the result (default: true).
- * @opt_param string maxComments Maximum number of comments to retrieve with the
- * returned post.
- * @opt_param bool fetchImages Whether image URL metadata for each post is
- * included in the returned result (default: false).
- * @return Postman_Google_Service_Blogger_Post
- */
- public function patch($blogId, $postId, Postman_Google_Service_Blogger_Post $postBody, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Blogger_Post");
- }
-
- /**
- * Publishes a draft post, optionally at the specific time of the given
- * publishDate parameter. (posts.publish)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string publishDate Optional date and time to schedule the
- * publishing of the Blog. If no publishDate parameter is given, the post is
- * either published at the a previously saved schedule date (if present), or the
- * current time. If a future date is given, the post will be scheduled to be
- * published.
- * @return Postman_Google_Service_Blogger_Post
- */
- public function publish($blogId, $postId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId);
- $params = array_merge($params, $optParams);
- return $this->call('publish', array($params), "Postman_Google_Service_Blogger_Post");
- }
-
- /**
- * Revert a published or scheduled post to draft state. (posts.revert)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_Post
- */
- public function revert($blogId, $postId, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId);
- $params = array_merge($params, $optParams);
- return $this->call('revert', array($params), "Postman_Google_Service_Blogger_Post");
- }
-
- /**
- * Search for a post. (posts.search)
- *
- * @param string $blogId ID of the blog to fetch the post from.
- * @param string $q Query terms to search this blog for matching posts.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Sort search results
- * @opt_param bool fetchBodies Whether the body content of posts is included
- * (default: true). This should be set to false when the post bodies are not
- * required, to help minimize traffic.
- * @return Postman_Google_Service_Blogger_PostList
- */
- public function search($blogId, $q, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'q' => $q);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Blogger_PostList");
- }
-
- /**
- * Update a post. (posts.update)
- *
- * @param string $blogId The ID of the Blog.
- * @param string $postId The ID of the Post.
- * @param Postman_Google_Post $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool revert Whether a revert action should be performed when the
- * post is updated (default: false).
- * @opt_param bool publish Whether a publish action should be performed when the
- * post is updated (default: false).
- * @opt_param bool fetchBody Whether the body content of the post is included
- * with the result (default: true).
- * @opt_param string maxComments Maximum number of comments to retrieve with the
- * returned post.
- * @opt_param bool fetchImages Whether image URL metadata for each post is
- * included in the returned result (default: false).
- * @return Postman_Google_Service_Blogger_Post
- */
- public function update($blogId, $postId, Postman_Google_Service_Blogger_Post $postBody, $optParams = array())
- {
- $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Blogger_Post");
- }
-}
-
-/**
- * The "users" collection of methods.
- * Typical usage is:
- *
- * $bloggerService = new Postman_Google_Service_Blogger(...);
- * $users = $bloggerService->users;
- *
- */
-class Postman_Google_Service_Blogger_Users_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one user by ID. (users.get)
- *
- * @param string $userId The ID of the user to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Blogger_User
- */
- public function get($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Blogger_User");
- }
-}
-
-
-
-
-class Postman_Google_Service_Blogger_Blog extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customMetaData;
- public $description;
- public $id;
- public $kind;
- protected $localeType = 'Postman_Google_Service_Blogger_BlogLocale';
- protected $localeDataType = '';
- public $name;
- protected $pagesType = 'Postman_Google_Service_Blogger_BlogPages';
- protected $pagesDataType = '';
- protected $postsType = 'Postman_Google_Service_Blogger_BlogPosts';
- protected $postsDataType = '';
- public $published;
- public $selfLink;
- public $status;
- public $updated;
- public $url;
-
-
- public function setCustomMetaData($customMetaData)
- {
- $this->customMetaData = $customMetaData;
- }
- public function getCustomMetaData()
- {
- return $this->customMetaData;
- }
- 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 setLocale(Postman_Google_Service_Blogger_BlogLocale $locale)
- {
- $this->locale = $locale;
- }
- public function getLocale()
- {
- return $this->locale;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPages(Postman_Google_Service_Blogger_BlogPages $pages)
- {
- $this->pages = $pages;
- }
- public function getPages()
- {
- return $this->pages;
- }
- public function setPosts(Postman_Google_Service_Blogger_BlogPosts $posts)
- {
- $this->posts = $posts;
- }
- public function getPosts()
- {
- return $this->posts;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_BlogList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $blogUserInfosType = 'Postman_Google_Service_Blogger_BlogUserInfo';
- protected $blogUserInfosDataType = 'array';
- protected $itemsType = 'Postman_Google_Service_Blogger_Blog';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setBlogUserInfos($blogUserInfos)
- {
- $this->blogUserInfos = $blogUserInfos;
- }
- public function getBlogUserInfos()
- {
- return $this->blogUserInfos;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Blogger_BlogLocale extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $country;
- public $language;
- public $variant;
-
-
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setVariant($variant)
- {
- $this->variant = $variant;
- }
- public function getVariant()
- {
- return $this->variant;
- }
-}
-
-class Postman_Google_Service_Blogger_BlogPages extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Blogger_BlogPerUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $blogId;
- public $hasAdminAccess;
- public $kind;
- public $photosAlbumKey;
- public $role;
- public $userId;
-
-
- public function setBlogId($blogId)
- {
- $this->blogId = $blogId;
- }
- public function getBlogId()
- {
- return $this->blogId;
- }
- public function setHasAdminAccess($hasAdminAccess)
- {
- $this->hasAdminAccess = $hasAdminAccess;
- }
- public function getHasAdminAccess()
- {
- return $this->hasAdminAccess;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPhotosAlbumKey($photosAlbumKey)
- {
- $this->photosAlbumKey = $photosAlbumKey;
- }
- public function getPhotosAlbumKey()
- {
- return $this->photosAlbumKey;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setUserId($userId)
- {
- $this->userId = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
-}
-
-class Postman_Google_Service_Blogger_BlogPosts extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Blogger_Post';
- protected $itemsDataType = 'array';
- public $selfLink;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Blogger_BlogUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "blogUserInfo" => "blog_user_info",
- );
- protected $blogType = 'Postman_Google_Service_Blogger_Blog';
- protected $blogDataType = '';
- protected $blogUserInfoType = 'Postman_Google_Service_Blogger_BlogPerUserInfo';
- protected $blogUserInfoDataType = '';
- public $kind;
-
-
- public function setBlog(Postman_Google_Service_Blogger_Blog $blog)
- {
- $this->blog = $blog;
- }
- public function getBlog()
- {
- return $this->blog;
- }
- public function setBlogUserInfo(Postman_Google_Service_Blogger_BlogPerUserInfo $blogUserInfo)
- {
- $this->blogUserInfo = $blogUserInfo;
- }
- public function getBlogUserInfo()
- {
- return $this->blogUserInfo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Blogger_Comment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $authorType = 'Postman_Google_Service_Blogger_CommentAuthor';
- protected $authorDataType = '';
- protected $blogType = 'Postman_Google_Service_Blogger_CommentBlog';
- protected $blogDataType = '';
- public $content;
- public $id;
- protected $inReplyToType = 'Postman_Google_Service_Blogger_CommentInReplyTo';
- protected $inReplyToDataType = '';
- public $kind;
- protected $postType = 'Postman_Google_Service_Blogger_CommentPost';
- protected $postDataType = '';
- public $published;
- public $selfLink;
- public $status;
- public $updated;
-
-
- public function setAuthor(Postman_Google_Service_Blogger_CommentAuthor $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setBlog(Postman_Google_Service_Blogger_CommentBlog $blog)
- {
- $this->blog = $blog;
- }
- public function getBlog()
- {
- return $this->blog;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInReplyTo(Postman_Google_Service_Blogger_CommentInReplyTo $inReplyTo)
- {
- $this->inReplyTo = $inReplyTo;
- }
- public function getInReplyTo()
- {
- return $this->inReplyTo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPost(Postman_Google_Service_Blogger_CommentPost $post)
- {
- $this->post = $post;
- }
- public function getPost()
- {
- return $this->post;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Blogger_CommentAuthor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_Blogger_CommentAuthorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Blogger_CommentAuthorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_CommentAuthorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_CommentBlog extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Blogger_CommentInReplyTo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Blogger_CommentList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Blogger_Comment';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $prevPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
-}
-
-class Postman_Google_Service_Blogger_CommentPost extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Blogger_Page extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $authorType = 'Postman_Google_Service_Blogger_PageAuthor';
- protected $authorDataType = '';
- protected $blogType = 'Postman_Google_Service_Blogger_PageBlog';
- protected $blogDataType = '';
- public $content;
- public $etag;
- public $id;
- public $kind;
- public $published;
- public $selfLink;
- public $status;
- public $title;
- public $updated;
- public $url;
-
-
- public function setAuthor(Postman_Google_Service_Blogger_PageAuthor $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setBlog(Postman_Google_Service_Blogger_PageBlog $blog)
- {
- $this->blog = $blog;
- }
- public function getBlog()
- {
- return $this->blog;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PageAuthor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_Blogger_PageAuthorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Blogger_PageAuthorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PageAuthorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PageBlog extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Blogger_PageList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Blogger_Page';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Blogger_Pageviews extends Postman_Google_Collection
-{
- protected $collection_key = 'counts';
- protected $internal_gapi_mappings = array(
- );
- public $blogId;
- protected $countsType = 'Postman_Google_Service_Blogger_PageviewsCounts';
- protected $countsDataType = 'array';
- public $kind;
-
-
- public function setBlogId($blogId)
- {
- $this->blogId = $blogId;
- }
- public function getBlogId()
- {
- return $this->blogId;
- }
- public function setCounts($counts)
- {
- $this->counts = $counts;
- }
- public function getCounts()
- {
- return $this->counts;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Blogger_PageviewsCounts extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $timeRange;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setTimeRange($timeRange)
- {
- $this->timeRange = $timeRange;
- }
- public function getTimeRange()
- {
- return $this->timeRange;
- }
-}
-
-class Postman_Google_Service_Blogger_Post extends Postman_Google_Collection
-{
- protected $collection_key = 'labels';
- protected $internal_gapi_mappings = array(
- );
- protected $authorType = 'Postman_Google_Service_Blogger_PostAuthor';
- protected $authorDataType = '';
- protected $blogType = 'Postman_Google_Service_Blogger_PostBlog';
- protected $blogDataType = '';
- public $content;
- public $customMetaData;
- public $etag;
- public $id;
- protected $imagesType = 'Postman_Google_Service_Blogger_PostImages';
- protected $imagesDataType = 'array';
- public $kind;
- public $labels;
- protected $locationType = 'Postman_Google_Service_Blogger_PostLocation';
- protected $locationDataType = '';
- public $published;
- public $readerComments;
- protected $repliesType = 'Postman_Google_Service_Blogger_PostReplies';
- protected $repliesDataType = '';
- public $selfLink;
- public $status;
- public $title;
- public $titleLink;
- public $updated;
- public $url;
-
-
- public function setAuthor(Postman_Google_Service_Blogger_PostAuthor $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setBlog(Postman_Google_Service_Blogger_PostBlog $blog)
- {
- $this->blog = $blog;
- }
- public function getBlog()
- {
- return $this->blog;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setCustomMetaData($customMetaData)
- {
- $this->customMetaData = $customMetaData;
- }
- public function getCustomMetaData()
- {
- return $this->customMetaData;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImages($images)
- {
- $this->images = $images;
- }
- public function getImages()
- {
- return $this->images;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
- public function setLocation(Postman_Google_Service_Blogger_PostLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setReaderComments($readerComments)
- {
- $this->readerComments = $readerComments;
- }
- public function getReaderComments()
- {
- return $this->readerComments;
- }
- public function setReplies(Postman_Google_Service_Blogger_PostReplies $replies)
- {
- $this->replies = $replies;
- }
- public function getReplies()
- {
- return $this->replies;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setTitleLink($titleLink)
- {
- $this->titleLink = $titleLink;
- }
- public function getTitleLink()
- {
- return $this->titleLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PostAuthor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_Blogger_PostAuthorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Blogger_PostAuthorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PostAuthorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PostBlog extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Blogger_PostImages extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_PostList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Blogger_Post';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Blogger_PostLocation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $lat;
- public $lng;
- public $name;
- public $span;
-
-
- public function setLat($lat)
- {
- $this->lat = $lat;
- }
- public function getLat()
- {
- return $this->lat;
- }
- public function setLng($lng)
- {
- $this->lng = $lng;
- }
- public function getLng()
- {
- return $this->lng;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setSpan($span)
- {
- $this->span = $span;
- }
- public function getSpan()
- {
- return $this->span;
- }
-}
-
-class Postman_Google_Service_Blogger_PostPerUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $blogId;
- public $hasEditAccess;
- public $kind;
- public $postId;
- public $userId;
-
-
- public function setBlogId($blogId)
- {
- $this->blogId = $blogId;
- }
- public function getBlogId()
- {
- return $this->blogId;
- }
- public function setHasEditAccess($hasEditAccess)
- {
- $this->hasEditAccess = $hasEditAccess;
- }
- public function getHasEditAccess()
- {
- return $this->hasEditAccess;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPostId($postId)
- {
- $this->postId = $postId;
- }
- public function getPostId()
- {
- return $this->postId;
- }
- public function setUserId($userId)
- {
- $this->userId = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
-}
-
-class Postman_Google_Service_Blogger_PostReplies extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Blogger_Comment';
- protected $itemsDataType = 'array';
- public $selfLink;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Blogger_PostUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "postUserInfo" => "post_user_info",
- );
- public $kind;
- protected $postType = 'Postman_Google_Service_Blogger_Post';
- protected $postDataType = '';
- protected $postUserInfoType = 'Postman_Google_Service_Blogger_PostPerUserInfo';
- protected $postUserInfoDataType = '';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPost(Postman_Google_Service_Blogger_Post $post)
- {
- $this->post = $post;
- }
- public function getPost()
- {
- return $this->post;
- }
- public function setPostUserInfo(Postman_Google_Service_Blogger_PostPerUserInfo $postUserInfo)
- {
- $this->postUserInfo = $postUserInfo;
- }
- public function getPostUserInfo()
- {
- return $this->postUserInfo;
- }
-}
-
-class Postman_Google_Service_Blogger_PostUserInfosList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Blogger_PostUserInfo';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Blogger_User extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $about;
- protected $blogsType = 'Postman_Google_Service_Blogger_UserBlogs';
- protected $blogsDataType = '';
- public $created;
- public $displayName;
- public $id;
- public $kind;
- protected $localeType = 'Postman_Google_Service_Blogger_UserLocale';
- protected $localeDataType = '';
- public $selfLink;
- public $url;
-
-
- public function setAbout($about)
- {
- $this->about = $about;
- }
- public function getAbout()
- {
- return $this->about;
- }
- public function setBlogs(Postman_Google_Service_Blogger_UserBlogs $blogs)
- {
- $this->blogs = $blogs;
- }
- public function getBlogs()
- {
- return $this->blogs;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- 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 setLocale(Postman_Google_Service_Blogger_UserLocale $locale)
- {
- $this->locale = $locale;
- }
- public function getLocale()
- {
- return $this->locale;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Blogger_UserBlogs extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Blogger_UserLocale extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $country;
- public $language;
- public $variant;
-
-
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setVariant($variant)
- {
- $this->variant = $variant;
- }
- public function getVariant()
- {
- return $this->variant;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Books.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Books.php
deleted file mode 100644
index 48f61b3..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Books.php
+++ /dev/null
@@ -1,6411 +0,0 @@
-
- * Lets you search for books and manage your Google Books library.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Books extends Postman_Google_Service -{ - /** Manage your books. */ - const BOOKS = - "https://www.googleapis.com/auth/books"; - - public $bookshelves; - public $bookshelves_volumes; - public $cloudloading; - public $dictionary; - public $layers; - public $layers_annotationData; - public $layers_volumeAnnotations; - public $myconfig; - public $mylibrary_annotations; - public $mylibrary_bookshelves; - public $mylibrary_bookshelves_volumes; - public $mylibrary_readingpositions; - public $promooffer; - public $volumes; - public $volumes_associated; - public $volumes_mybooks; - public $volumes_recommended; - public $volumes_useruploaded; - - - /** - * Constructs the internal representation of the Books service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'books/v1/'; - $this->version = 'v1'; - $this->serviceName = 'books'; - - $this->bookshelves = new Postman_Google_Service_Books_Bookshelves_Resource( - $this, - $this->serviceName, - 'bookshelves', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}/bookshelves/{shelf}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'users/{userId}/bookshelves', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->bookshelves_volumes = new Postman_Google_Service_Books_BookshelvesVolumes_Resource( - $this, - $this->serviceName, - 'volumes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'users/{userId}/bookshelves/{shelf}/volumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->cloudloading = new Postman_Google_Service_Books_Cloudloading_Resource( - $this, - $this->serviceName, - 'cloudloading', - array( - 'methods' => array( - 'addBook' => array( - 'path' => 'cloudloading/addBook', - 'httpMethod' => 'POST', - 'parameters' => array( - 'upload_client_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'drive_document_id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mime_type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteBook' => array( - 'path' => 'cloudloading/deleteBook', - 'httpMethod' => 'POST', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateBook' => array( - 'path' => 'cloudloading/updateBook', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->dictionary = new Postman_Google_Service_Books_Dictionary_Resource( - $this, - $this->serviceName, - 'dictionary', - array( - 'methods' => array( - 'listOfflineMetadata' => array( - 'path' => 'dictionary/listOfflineMetadata', - 'httpMethod' => 'GET', - 'parameters' => array( - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->layers = new Postman_Google_Service_Books_Layers_Resource( - $this, - $this->serviceName, - 'layers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}/layersummary/{summaryId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'summaryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'volumes/{volumeId}/layersummary', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->layers_annotationData = new Postman_Google_Service_Books_LayersAnnotationData_Resource( - $this, - $this->serviceName, - 'annotationData', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}/data/{annotationDataId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'annotationDataId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'scale' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'allowWebDefinitions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'h' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'w' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}/data', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'scale' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'h' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'updatedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'annotationDataId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'w' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->layers_volumeAnnotations = new Postman_Google_Service_Books_LayersVolumeAnnotations_Resource( - $this, - $this->serviceName, - 'volumeAnnotations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}/annotations/{annotationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'volumeAnnotationsVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endPosition' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endOffset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startOffset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startPosition' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->myconfig = new Postman_Google_Service_Books_Myconfig_Resource( - $this, - $this->serviceName, - 'myconfig', - array( - 'methods' => array( - 'releaseDownloadAccess' => array( - 'path' => 'myconfig/releaseDownloadAccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'volumeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'requestAccess' => array( - 'path' => 'myconfig/requestAccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'nonce' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'licenseTypes' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'syncVolumeLicenses' => array( - 'path' => 'myconfig/syncVolumeLicenses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'nonce' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'features' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'volumeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->mylibrary_annotations = new Postman_Google_Service_Books_MylibraryAnnotations_Resource( - $this, - $this->serviceName, - 'annotations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'mylibrary/annotations/{annotationId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'mylibrary/annotations/{annotationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'mylibrary/annotations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showOnlySummaryInResponse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'mylibrary/annotations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'layerIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'layerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'summary' => array( - 'path' => 'mylibrary/annotations/summary', - 'httpMethod' => 'POST', - 'parameters' => array( - 'layerIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'mylibrary/annotations/{annotationId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->mylibrary_bookshelves = new Postman_Google_Service_Books_MylibraryBookshelves_Resource( - $this, - $this->serviceName, - 'bookshelves', - array( - 'methods' => array( - 'addVolume' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/addVolume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'clearVolumes' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/clearVolumes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'mylibrary/bookshelves/{shelf}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'mylibrary/bookshelves', - 'httpMethod' => 'GET', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'moveVolume' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/moveVolume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'volumePosition' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeVolume' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/removeVolume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->mylibrary_bookshelves_volumes = new Postman_Google_Service_Books_MylibraryBookshelvesVolumes_Resource( - $this, - $this->serviceName, - 'volumes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/volumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->mylibrary_readingpositions = new Postman_Google_Service_Books_MylibraryReadingpositions_Resource( - $this, - $this->serviceName, - 'readingpositions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'mylibrary/readingpositions/{volumeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setPosition' => array( - 'path' => 'mylibrary/readingpositions/{volumeId}/setPosition', - 'httpMethod' => 'POST', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timestamp' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'position' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'deviceCookie' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->promooffer = new Postman_Google_Service_Books_Promooffer_Resource( - $this, - $this->serviceName, - 'promooffer', - array( - 'methods' => array( - 'accept' => array( - 'path' => 'promooffer/accept', - 'httpMethod' => 'POST', - 'parameters' => array( - 'product' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'androidId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'device' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serial' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'manufacturer' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'dismiss' => array( - 'path' => 'promooffer/dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'product' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'androidId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'device' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serial' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'manufacturer' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'promooffer/get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'product' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'androidId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'device' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serial' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'manufacturer' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes = new Postman_Google_Service_Books_Volumes_Resource( - $this, - $this->serviceName, - 'volumes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'partner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'volumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'libraryRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'langRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'printType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'download' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'partner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes_associated = new Postman_Google_Service_Books_VolumesAssociated_Resource( - $this, - $this->serviceName, - 'associated', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/{volumeId}/associated', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'association' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes_mybooks = new Postman_Google_Service_Books_VolumesMybooks_Resource( - $this, - $this->serviceName, - 'mybooks', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/mybooks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'acquireMethod' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'processingState' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->volumes_recommended = new Postman_Google_Service_Books_VolumesRecommended_Resource( - $this, - $this->serviceName, - 'recommended', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/recommended', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rate' => array( - 'path' => 'volumes/recommended/rate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'rating' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes_useruploaded = new Postman_Google_Service_Books_VolumesUseruploaded_Resource( - $this, - $this->serviceName, - 'useruploaded', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/useruploaded', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'processingState' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "bookshelves" collection of methods. - * Typical usage is: - *
- * $booksService = new Postman_Google_Service_Books(...);
- * $bookshelves = $booksService->bookshelves;
- *
- */
-class Postman_Google_Service_Books_Bookshelves_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves metadata for a specific bookshelf for the specified user.
- * (bookshelves.get)
- *
- * @param string $userId ID of user for whom to retrieve bookshelves.
- * @param string $shelf ID of bookshelf to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Bookshelf
- */
- public function get($userId, $shelf, $optParams = array())
- {
- $params = array('userId' => $userId, 'shelf' => $shelf);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Bookshelf");
- }
-
- /**
- * Retrieves a list of public bookshelves for the specified user.
- * (bookshelves.listBookshelves)
- *
- * @param string $userId ID of user for whom to retrieve bookshelves.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Bookshelves
- */
- public function listBookshelves($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Bookshelves");
- }
-}
-
-/**
- * The "volumes" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $volumes = $booksService->volumes;
- *
- */
-class Postman_Google_Service_Books_BookshelvesVolumes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves volumes in a specific bookshelf for the specified user.
- * (volumes.listBookshelvesVolumes)
- *
- * @param string $userId ID of user for whom to retrieve bookshelf volumes.
- * @param string $shelf ID of bookshelf to retrieve volumes.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool showPreorders Set to true to show pre-ordered books. Defaults
- * to false.
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string startIndex Index of the first element to return (starts at
- * 0)
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listBookshelvesVolumes($userId, $shelf, $optParams = array())
- {
- $params = array('userId' => $userId, 'shelf' => $shelf);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-
-/**
- * The "cloudloading" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $cloudloading = $booksService->cloudloading;
- *
- */
-class Postman_Google_Service_Books_Cloudloading_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (cloudloading.addBook)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string upload_client_token
- * @opt_param string drive_document_id A drive document id. The
- * upload_client_token must not be set.
- * @opt_param string mime_type The document MIME type. It can be set only if the
- * drive_document_id is set.
- * @opt_param string name The document name. It can be set only if the
- * drive_document_id is set.
- * @return Postman_Google_Service_Books_BooksCloudloadingResource
- */
- public function addBook($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('addBook', array($params), "Postman_Google_Service_Books_BooksCloudloadingResource");
- }
-
- /**
- * Remove the book and its contents (cloudloading.deleteBook)
- *
- * @param string $volumeId The id of the book to be removed.
- * @param array $optParams Optional parameters.
- */
- public function deleteBook($volumeId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('deleteBook', array($params));
- }
-
- /**
- * (cloudloading.updateBook)
- *
- * @param Postman_Google_BooksCloudloadingResource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Books_BooksCloudloadingResource
- */
- public function updateBook(Postman_Google_Service_Books_BooksCloudloadingResource $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('updateBook', array($params), "Postman_Google_Service_Books_BooksCloudloadingResource");
- }
-}
-
-/**
- * The "dictionary" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $dictionary = $booksService->dictionary;
- *
- */
-class Postman_Google_Service_Books_Dictionary_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of offline dictionary meatadata available
- * (dictionary.listOfflineMetadata)
- *
- * @param string $cpksver The device/version ID from which to request the data.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Books_Metadata
- */
- public function listOfflineMetadata($cpksver, $optParams = array())
- {
- $params = array('cpksver' => $cpksver);
- $params = array_merge($params, $optParams);
- return $this->call('listOfflineMetadata', array($params), "Postman_Google_Service_Books_Metadata");
- }
-}
-
-/**
- * The "layers" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $layers = $booksService->layers;
- *
- */
-class Postman_Google_Service_Books_Layers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the layer summary for a volume. (layers.get)
- *
- * @param string $volumeId The volume to retrieve layers for.
- * @param string $summaryId The ID for the layer to get the summary for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string contentVersion The content version for the requested
- * volume.
- * @return Postman_Google_Service_Books_Layersummary
- */
- public function get($volumeId, $summaryId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId, 'summaryId' => $summaryId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Layersummary");
- }
-
- /**
- * List the layer summaries for a volume. (layers.listLayers)
- *
- * @param string $volumeId The volume to retrieve layers for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The value of the nextToken from the previous
- * page.
- * @opt_param string contentVersion The content version for the requested
- * volume.
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Layersummaries
- */
- public function listLayers($volumeId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Layersummaries");
- }
-}
-
-/**
- * The "annotationData" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $annotationData = $booksService->annotationData;
- *
- */
-class Postman_Google_Service_Books_LayersAnnotationData_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the annotation data. (annotationData.get)
- *
- * @param string $volumeId The volume to retrieve annotations for.
- * @param string $layerId The ID for the layer to get the annotations.
- * @param string $annotationDataId The ID of the annotation data to retrieve.
- * @param string $contentVersion The content version for the volume you are
- * trying to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int scale The requested scale for the image.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param bool allowWebDefinitions For the dictionary layer. Whether or not
- * to allow web definitions.
- * @opt_param int h The requested pixel height for any images. If height is
- * provided width must also be provided.
- * @opt_param string locale The locale information for the data. ISO-639-1
- * language and ISO-3166-1 country code. Ex: 'en_US'.
- * @opt_param int w The requested pixel width for any images. If width is
- * provided height must also be provided.
- * @return Postman_Google_Service_Books_Annotationdata
- */
- public function get($volumeId, $layerId, $annotationDataId, $contentVersion, $optParams = array())
- {
- $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'annotationDataId' => $annotationDataId, 'contentVersion' => $contentVersion);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Annotationdata");
- }
-
- /**
- * Gets the annotation data for a volume and layer.
- * (annotationData.listLayersAnnotationData)
- *
- * @param string $volumeId The volume to retrieve annotation data for.
- * @param string $layerId The ID for the layer to get the annotation data.
- * @param string $contentVersion The content version for the requested volume.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int scale The requested scale for the image.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string locale The locale information for the data. ISO-639-1
- * language and ISO-3166-1 country code. Ex: 'en_US'.
- * @opt_param int h The requested pixel height for any images. If height is
- * provided width must also be provided.
- * @opt_param string updatedMax RFC 3339 timestamp to restrict to items updated
- * prior to this timestamp (exclusive).
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string annotationDataId The list of Annotation Data Ids to
- * retrieve. Pagination is ignored if this is set.
- * @opt_param string pageToken The value of the nextToken from the previous
- * page.
- * @opt_param int w The requested pixel width for any images. If width is
- * provided height must also be provided.
- * @opt_param string updatedMin RFC 3339 timestamp to restrict to items updated
- * since this timestamp (inclusive).
- * @return Postman_Google_Service_Books_Annotationsdata
- */
- public function listLayersAnnotationData($volumeId, $layerId, $contentVersion, $optParams = array())
- {
- $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'contentVersion' => $contentVersion);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Annotationsdata");
- }
-}
-/**
- * The "volumeAnnotations" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $volumeAnnotations = $booksService->volumeAnnotations;
- *
- */
-class Postman_Google_Service_Books_LayersVolumeAnnotations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the volume annotation. (volumeAnnotations.get)
- *
- * @param string $volumeId The volume to retrieve annotations for.
- * @param string $layerId The ID for the layer to get the annotations.
- * @param string $annotationId The ID of the volume annotation to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale The locale information for the data. ISO-639-1
- * language and ISO-3166-1 country code. Ex: 'en_US'.
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Volumeannotation
- */
- public function get($volumeId, $layerId, $annotationId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'annotationId' => $annotationId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Volumeannotation");
- }
-
- /**
- * Gets the volume annotations for a volume and layer.
- * (volumeAnnotations.listLayersVolumeAnnotations)
- *
- * @param string $volumeId The volume to retrieve annotations for.
- * @param string $layerId The ID for the layer to get the annotations.
- * @param string $contentVersion The content version for the requested volume.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool showDeleted Set to true to return deleted annotations.
- * updatedMin must be in the request to use this. Defaults to false.
- * @opt_param string volumeAnnotationsVersion The version of the volume
- * annotations that you are requesting.
- * @opt_param string endPosition The end position to end retrieving data from.
- * @opt_param string endOffset The end offset to end retrieving data from.
- * @opt_param string locale The locale information for the data. ISO-639-1
- * language and ISO-3166-1 country code. Ex: 'en_US'.
- * @opt_param string updatedMin RFC 3339 timestamp to restrict to items updated
- * since this timestamp (inclusive).
- * @opt_param string updatedMax RFC 3339 timestamp to restrict to items updated
- * prior to this timestamp (exclusive).
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string pageToken The value of the nextToken from the previous
- * page.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string startOffset The start offset to start retrieving data from.
- * @opt_param string startPosition The start position to start retrieving data
- * from.
- * @return Postman_Google_Service_Books_Volumeannotations
- */
- public function listLayersVolumeAnnotations($volumeId, $layerId, $contentVersion, $optParams = array())
- {
- $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'contentVersion' => $contentVersion);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumeannotations");
- }
-}
-
-/**
- * The "myconfig" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $myconfig = $booksService->myconfig;
- *
- */
-class Postman_Google_Service_Books_Myconfig_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Release downloaded content access restriction.
- * (myconfig.releaseDownloadAccess)
- *
- * @param string $volumeIds The volume(s) to release restrictions for.
- * @param string $cpksver The device/version ID from which to release the
- * restriction.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale ISO-639-1, ISO-3166-1 codes for message
- * localization, i.e. en_US.
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_DownloadAccesses
- */
- public function releaseDownloadAccess($volumeIds, $cpksver, $optParams = array())
- {
- $params = array('volumeIds' => $volumeIds, 'cpksver' => $cpksver);
- $params = array_merge($params, $optParams);
- return $this->call('releaseDownloadAccess', array($params), "Postman_Google_Service_Books_DownloadAccesses");
- }
-
- /**
- * Request concurrent and download access restrictions. (myconfig.requestAccess)
- *
- * @param string $source String to identify the originator of this request.
- * @param string $volumeId The volume to request concurrent/download
- * restrictions for.
- * @param string $nonce The client nonce value.
- * @param string $cpksver The device/version ID from which to request the
- * restrictions.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string licenseTypes The type of access license to request. If not
- * specified, the default is BOTH.
- * @opt_param string locale ISO-639-1, ISO-3166-1 codes for message
- * localization, i.e. en_US.
- * @return Postman_Google_Service_Books_RequestAccess
- */
- public function requestAccess($source, $volumeId, $nonce, $cpksver, $optParams = array())
- {
- $params = array('source' => $source, 'volumeId' => $volumeId, 'nonce' => $nonce, 'cpksver' => $cpksver);
- $params = array_merge($params, $optParams);
- return $this->call('requestAccess', array($params), "Postman_Google_Service_Books_RequestAccess");
- }
-
- /**
- * Request downloaded content access for specified volumes on the My eBooks
- * shelf. (myconfig.syncVolumeLicenses)
- *
- * @param string $source String to identify the originator of this request.
- * @param string $nonce The client nonce value.
- * @param string $cpksver The device/version ID from which to release the
- * restriction.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string features List of features supported by the client, i.e.,
- * 'RENTALS'
- * @opt_param string locale ISO-639-1, ISO-3166-1 codes for message
- * localization, i.e. en_US.
- * @opt_param bool showPreorders Set to true to show pre-ordered books. Defaults
- * to false.
- * @opt_param string volumeIds The volume(s) to request download restrictions
- * for.
- * @return Postman_Google_Service_Books_Volumes
- */
- public function syncVolumeLicenses($source, $nonce, $cpksver, $optParams = array())
- {
- $params = array('source' => $source, 'nonce' => $nonce, 'cpksver' => $cpksver);
- $params = array_merge($params, $optParams);
- return $this->call('syncVolumeLicenses', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-
-/**
- * The "mylibrary" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $mylibrary = $booksService->mylibrary;
- *
- */
-class Postman_Google_Service_Books_Mylibrary_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "annotations" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $annotations = $booksService->annotations;
- *
- */
-class Postman_Google_Service_Books_MylibraryAnnotations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an annotation. (annotations.delete)
- *
- * @param string $annotationId The ID for the annotation to delete.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- */
- public function delete($annotationId, $optParams = array())
- {
- $params = array('annotationId' => $annotationId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets an annotation by its ID. (annotations.get)
- *
- * @param string $annotationId The ID for the annotation to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Annotation
- */
- public function get($annotationId, $optParams = array())
- {
- $params = array('annotationId' => $annotationId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Annotation");
- }
-
- /**
- * Inserts a new annotation. (annotations.insert)
- *
- * @param Postman_Google_Annotation $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string country ISO-3166-1 code to override the IP-based location.
- * @opt_param bool showOnlySummaryInResponse Requests that only the summary of
- * the specified layer be provided in the response.
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Annotation
- */
- public function insert(Postman_Google_Service_Books_Annotation $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Books_Annotation");
- }
-
- /**
- * Retrieves a list of annotations, possibly filtered.
- * (annotations.listMylibraryAnnotations)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool showDeleted Set to true to return deleted annotations.
- * updatedMin must be in the request to use this. Defaults to false.
- * @opt_param string updatedMin RFC 3339 timestamp to restrict to items updated
- * since this timestamp (inclusive).
- * @opt_param string layerIds The layer ID(s) to limit annotation by.
- * @opt_param string volumeId The volume to restrict annotations to.
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string pageToken The value of the nextToken from the previous
- * page.
- * @opt_param string pageIds The page ID(s) for the volume that is being
- * queried.
- * @opt_param string contentVersion The content version for the requested
- * volume.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string layerId The layer ID to limit annotation by.
- * @opt_param string updatedMax RFC 3339 timestamp to restrict to items updated
- * prior to this timestamp (exclusive).
- * @return Postman_Google_Service_Books_Annotations
- */
- public function listMylibraryAnnotations($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Annotations");
- }
-
- /**
- * Gets the summary of specified layers. (annotations.summary)
- *
- * @param string $layerIds Array of layer IDs to get the summary for.
- * @param string $volumeId Volume id to get the summary for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Books_AnnotationsSummary
- */
- public function summary($layerIds, $volumeId, $optParams = array())
- {
- $params = array('layerIds' => $layerIds, 'volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('summary', array($params), "Postman_Google_Service_Books_AnnotationsSummary");
- }
-
- /**
- * Updates an existing annotation. (annotations.update)
- *
- * @param string $annotationId The ID for the annotation to update.
- * @param Postman_Google_Annotation $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Annotation
- */
- public function update($annotationId, Postman_Google_Service_Books_Annotation $postBody, $optParams = array())
- {
- $params = array('annotationId' => $annotationId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Books_Annotation");
- }
-}
-/**
- * The "bookshelves" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $bookshelves = $booksService->bookshelves;
- *
- */
-class Postman_Google_Service_Books_MylibraryBookshelves_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Adds a volume to a bookshelf. (bookshelves.addVolume)
- *
- * @param string $shelf ID of bookshelf to which to add a volume.
- * @param string $volumeId ID of volume to add.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- */
- public function addVolume($shelf, $volumeId, $optParams = array())
- {
- $params = array('shelf' => $shelf, 'volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('addVolume', array($params));
- }
-
- /**
- * Clears all volumes from a bookshelf. (bookshelves.clearVolumes)
- *
- * @param string $shelf ID of bookshelf from which to remove a volume.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- */
- public function clearVolumes($shelf, $optParams = array())
- {
- $params = array('shelf' => $shelf);
- $params = array_merge($params, $optParams);
- return $this->call('clearVolumes', array($params));
- }
-
- /**
- * Retrieves metadata for a specific bookshelf belonging to the authenticated
- * user. (bookshelves.get)
- *
- * @param string $shelf ID of bookshelf to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Bookshelf
- */
- public function get($shelf, $optParams = array())
- {
- $params = array('shelf' => $shelf);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Bookshelf");
- }
-
- /**
- * Retrieves a list of bookshelves belonging to the authenticated user.
- * (bookshelves.listMylibraryBookshelves)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Bookshelves
- */
- public function listMylibraryBookshelves($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Bookshelves");
- }
-
- /**
- * Moves a volume within a bookshelf. (bookshelves.moveVolume)
- *
- * @param string $shelf ID of bookshelf with the volume.
- * @param string $volumeId ID of volume to move.
- * @param int $volumePosition Position on shelf to move the item (0 puts the
- * item before the current first item, 1 puts it between the first and the
- * second and so on.)
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- */
- public function moveVolume($shelf, $volumeId, $volumePosition, $optParams = array())
- {
- $params = array('shelf' => $shelf, 'volumeId' => $volumeId, 'volumePosition' => $volumePosition);
- $params = array_merge($params, $optParams);
- return $this->call('moveVolume', array($params));
- }
-
- /**
- * Removes a volume from a bookshelf. (bookshelves.removeVolume)
- *
- * @param string $shelf ID of bookshelf from which to remove a volume.
- * @param string $volumeId ID of volume to remove.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- */
- public function removeVolume($shelf, $volumeId, $optParams = array())
- {
- $params = array('shelf' => $shelf, 'volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('removeVolume', array($params));
- }
-}
-
-/**
- * The "volumes" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $volumes = $booksService->volumes;
- *
- */
-class Postman_Google_Service_Books_MylibraryBookshelvesVolumes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets volume information for volumes on a bookshelf.
- * (volumes.listMylibraryBookshelvesVolumes)
- *
- * @param string $shelf The bookshelf ID or name retrieve volumes for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @opt_param string country ISO-3166-1 code to override the IP-based location.
- * @opt_param bool showPreorders Set to true to show pre-ordered books. Defaults
- * to false.
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string q Full-text search query string in this bookshelf.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string startIndex Index of the first element to return (starts at
- * 0)
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listMylibraryBookshelvesVolumes($shelf, $optParams = array())
- {
- $params = array('shelf' => $shelf);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-/**
- * The "readingpositions" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $readingpositions = $booksService->readingpositions;
- *
- */
-class Postman_Google_Service_Books_MylibraryReadingpositions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves my reading position information for a volume.
- * (readingpositions.get)
- *
- * @param string $volumeId ID of volume for which to retrieve a reading
- * position.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string contentVersion Volume content version for which this
- * reading position is requested.
- * @return Postman_Google_Service_Books_ReadingPosition
- */
- public function get($volumeId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_ReadingPosition");
- }
-
- /**
- * Sets my reading position information for a volume.
- * (readingpositions.setPosition)
- *
- * @param string $volumeId ID of volume for which to update the reading
- * position.
- * @param string $timestamp RFC 3339 UTC format timestamp associated with this
- * reading position.
- * @param string $position Position string for the new volume reading position.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string deviceCookie Random persistent device cookie optional on
- * set position.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string contentVersion Volume content version for which this
- * reading position applies.
- * @opt_param string action Action that caused this reading position to be set.
- */
- public function setPosition($volumeId, $timestamp, $position, $optParams = array())
- {
- $params = array('volumeId' => $volumeId, 'timestamp' => $timestamp, 'position' => $position);
- $params = array_merge($params, $optParams);
- return $this->call('setPosition', array($params));
- }
-}
-
-/**
- * The "promooffer" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $promooffer = $booksService->promooffer;
- *
- */
-class Postman_Google_Service_Books_Promooffer_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (promooffer.accept)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string product device product
- * @opt_param string volumeId Volume id to exercise the offer
- * @opt_param string offerId
- * @opt_param string androidId device android_id
- * @opt_param string device device device
- * @opt_param string model device model
- * @opt_param string serial device serial
- * @opt_param string manufacturer device manufacturer
- */
- public function accept($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('accept', array($params));
- }
-
- /**
- * (promooffer.dismiss)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string product device product
- * @opt_param string offerId Offer to dimiss
- * @opt_param string androidId device android_id
- * @opt_param string device device device
- * @opt_param string model device model
- * @opt_param string serial device serial
- * @opt_param string manufacturer device manufacturer
- */
- public function dismiss($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('dismiss', array($params));
- }
-
- /**
- * Returns a list of promo offers available to the user (promooffer.get)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string product device product
- * @opt_param string androidId device android_id
- * @opt_param string device device device
- * @opt_param string model device model
- * @opt_param string serial device serial
- * @opt_param string manufacturer device manufacturer
- * @return Postman_Google_Service_Books_Offers
- */
- public function get($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Offers");
- }
-}
-
-/**
- * The "volumes" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $volumes = $booksService->volumes;
- *
- */
-class Postman_Google_Service_Books_Volumes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets volume information for a single volume. (volumes.get)
- *
- * @param string $volumeId ID of volume to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string country ISO-3166-1 code to override the IP-based location.
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @opt_param string partner Brand results for partner ID.
- * @return Postman_Google_Service_Books_Volume
- */
- public function get($volumeId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Books_Volume");
- }
-
- /**
- * Performs a book search. (volumes.listVolumes)
- *
- * @param string $q Full-text search query string.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Sort search results.
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @opt_param string libraryRestrict Restrict search to this user's library.
- * @opt_param string langRestrict Restrict results to books with this language
- * code.
- * @opt_param bool showPreorders Set to true to show books available for
- * preorder. Defaults to false.
- * @opt_param string printType Restrict to books or magazines.
- * @opt_param string maxResults Maximum number of results to return.
- * @opt_param string filter Filter search results.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string startIndex Index of the first result to return (starts at
- * 0)
- * @opt_param string download Restrict to volumes by download availability.
- * @opt_param string partner Restrict and brand results for partner ID.
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listVolumes($q, $optParams = array())
- {
- $params = array('q' => $q);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-
-/**
- * The "associated" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $associated = $booksService->associated;
- *
- */
-class Postman_Google_Service_Books_VolumesAssociated_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return a list of associated books. (associated.listVolumesAssociated)
- *
- * @param string $volumeId ID of the source volume.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex:
- * 'en_US'. Used for generating recommendations.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string association Association type.
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listVolumesAssociated($volumeId, $optParams = array())
- {
- $params = array('volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-/**
- * The "mybooks" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $mybooks = $booksService->mybooks;
- *
- */
-class Postman_Google_Service_Books_VolumesMybooks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return a list of books in My Library. (mybooks.listVolumesMybooks)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code.
- * Ex:'en_US'. Used for generating recommendations.
- * @opt_param string startIndex Index of the first result to return (starts at
- * 0)
- * @opt_param string maxResults Maximum number of results to return.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string acquireMethod How the book was aquired
- * @opt_param string processingState The processing state of the user uploaded
- * volumes to be returned. Applicable only if the UPLOADED is specified in the
- * acquireMethod.
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listVolumesMybooks($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-/**
- * The "recommended" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $recommended = $booksService->recommended;
- *
- */
-class Postman_Google_Service_Books_VolumesRecommended_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return a list of recommended books for the current user.
- * (recommended.listVolumesRecommended)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex:
- * 'en_US'. Used for generating recommendations.
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listVolumesRecommended($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-
- /**
- * Rate a recommended book for the current user. (recommended.rate)
- *
- * @param string $rating Rating to be given to the volume.
- * @param string $volumeId ID of the source volume.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex:
- * 'en_US'. Used for generating recommendations.
- * @opt_param string source String to identify the originator of this request.
- * @return Postman_Google_Service_Books_BooksVolumesRecommendedRateResponse
- */
- public function rate($rating, $volumeId, $optParams = array())
- {
- $params = array('rating' => $rating, 'volumeId' => $volumeId);
- $params = array_merge($params, $optParams);
- return $this->call('rate', array($params), "Postman_Google_Service_Books_BooksVolumesRecommendedRateResponse");
- }
-}
-/**
- * The "useruploaded" collection of methods.
- * Typical usage is:
- *
- * $booksService = new Postman_Google_Service_Books(...);
- * $useruploaded = $booksService->useruploaded;
- *
- */
-class Postman_Google_Service_Books_VolumesUseruploaded_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return a list of books uploaded by the current user.
- * (useruploaded.listVolumesUseruploaded)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex:
- * 'en_US'. Used for generating recommendations.
- * @opt_param string volumeId The ids of the volumes to be returned. If not
- * specified all that match the processingState are returned.
- * @opt_param string maxResults Maximum number of results to return.
- * @opt_param string source String to identify the originator of this request.
- * @opt_param string startIndex Index of the first result to return (starts at
- * 0)
- * @opt_param string processingState The processing state of the user uploaded
- * volumes to be returned.
- * @return Postman_Google_Service_Books_Volumes
- */
- public function listVolumesUseruploaded($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Books_Volumes");
- }
-}
-
-
-
-
-class Postman_Google_Service_Books_Annotation extends Postman_Google_Collection
-{
- protected $collection_key = 'pageIds';
- protected $internal_gapi_mappings = array(
- );
- public $afterSelectedText;
- public $beforeSelectedText;
- protected $clientVersionRangesType = 'Postman_Google_Service_Books_AnnotationClientVersionRanges';
- protected $clientVersionRangesDataType = '';
- public $created;
- protected $currentVersionRangesType = 'Postman_Google_Service_Books_AnnotationCurrentVersionRanges';
- protected $currentVersionRangesDataType = '';
- public $data;
- public $deleted;
- public $highlightStyle;
- public $id;
- public $kind;
- public $layerId;
- protected $layerSummaryType = 'Postman_Google_Service_Books_AnnotationLayerSummary';
- protected $layerSummaryDataType = '';
- public $pageIds;
- public $selectedText;
- public $selfLink;
- public $updated;
- public $volumeId;
-
-
- public function setAfterSelectedText($afterSelectedText)
- {
- $this->afterSelectedText = $afterSelectedText;
- }
- public function getAfterSelectedText()
- {
- return $this->afterSelectedText;
- }
- public function setBeforeSelectedText($beforeSelectedText)
- {
- $this->beforeSelectedText = $beforeSelectedText;
- }
- public function getBeforeSelectedText()
- {
- return $this->beforeSelectedText;
- }
- public function setClientVersionRanges(Postman_Google_Service_Books_AnnotationClientVersionRanges $clientVersionRanges)
- {
- $this->clientVersionRanges = $clientVersionRanges;
- }
- public function getClientVersionRanges()
- {
- return $this->clientVersionRanges;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setCurrentVersionRanges(Postman_Google_Service_Books_AnnotationCurrentVersionRanges $currentVersionRanges)
- {
- $this->currentVersionRanges = $currentVersionRanges;
- }
- public function getCurrentVersionRanges()
- {
- return $this->currentVersionRanges;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setHighlightStyle($highlightStyle)
- {
- $this->highlightStyle = $highlightStyle;
- }
- public function getHighlightStyle()
- {
- return $this->highlightStyle;
- }
- 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 setLayerId($layerId)
- {
- $this->layerId = $layerId;
- }
- public function getLayerId()
- {
- return $this->layerId;
- }
- public function setLayerSummary(Postman_Google_Service_Books_AnnotationLayerSummary $layerSummary)
- {
- $this->layerSummary = $layerSummary;
- }
- public function getLayerSummary()
- {
- return $this->layerSummary;
- }
- public function setPageIds($pageIds)
- {
- $this->pageIds = $pageIds;
- }
- public function getPageIds()
- {
- return $this->pageIds;
- }
- public function setSelectedText($selectedText)
- {
- $this->selectedText = $selectedText;
- }
- public function getSelectedText()
- {
- return $this->selectedText;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_AnnotationClientVersionRanges extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $cfiRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $cfiRangeDataType = '';
- public $contentVersion;
- protected $gbImageRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $gbImageRangeDataType = '';
- protected $gbTextRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $gbTextRangeDataType = '';
- protected $imageCfiRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $imageCfiRangeDataType = '';
-
-
- public function setCfiRange(Postman_Google_Service_Books_BooksAnnotationsRange $cfiRange)
- {
- $this->cfiRange = $cfiRange;
- }
- public function getCfiRange()
- {
- return $this->cfiRange;
- }
- public function setContentVersion($contentVersion)
- {
- $this->contentVersion = $contentVersion;
- }
- public function getContentVersion()
- {
- return $this->contentVersion;
- }
- public function setGbImageRange(Postman_Google_Service_Books_BooksAnnotationsRange $gbImageRange)
- {
- $this->gbImageRange = $gbImageRange;
- }
- public function getGbImageRange()
- {
- return $this->gbImageRange;
- }
- public function setGbTextRange(Postman_Google_Service_Books_BooksAnnotationsRange $gbTextRange)
- {
- $this->gbTextRange = $gbTextRange;
- }
- public function getGbTextRange()
- {
- return $this->gbTextRange;
- }
- public function setImageCfiRange(Postman_Google_Service_Books_BooksAnnotationsRange $imageCfiRange)
- {
- $this->imageCfiRange = $imageCfiRange;
- }
- public function getImageCfiRange()
- {
- return $this->imageCfiRange;
- }
-}
-
-class Postman_Google_Service_Books_AnnotationCurrentVersionRanges extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $cfiRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $cfiRangeDataType = '';
- public $contentVersion;
- protected $gbImageRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $gbImageRangeDataType = '';
- protected $gbTextRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $gbTextRangeDataType = '';
- protected $imageCfiRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $imageCfiRangeDataType = '';
-
-
- public function setCfiRange(Postman_Google_Service_Books_BooksAnnotationsRange $cfiRange)
- {
- $this->cfiRange = $cfiRange;
- }
- public function getCfiRange()
- {
- return $this->cfiRange;
- }
- public function setContentVersion($contentVersion)
- {
- $this->contentVersion = $contentVersion;
- }
- public function getContentVersion()
- {
- return $this->contentVersion;
- }
- public function setGbImageRange(Postman_Google_Service_Books_BooksAnnotationsRange $gbImageRange)
- {
- $this->gbImageRange = $gbImageRange;
- }
- public function getGbImageRange()
- {
- return $this->gbImageRange;
- }
- public function setGbTextRange(Postman_Google_Service_Books_BooksAnnotationsRange $gbTextRange)
- {
- $this->gbTextRange = $gbTextRange;
- }
- public function getGbTextRange()
- {
- return $this->gbTextRange;
- }
- public function setImageCfiRange(Postman_Google_Service_Books_BooksAnnotationsRange $imageCfiRange)
- {
- $this->imageCfiRange = $imageCfiRange;
- }
- public function getImageCfiRange()
- {
- return $this->imageCfiRange;
- }
-}
-
-class Postman_Google_Service_Books_AnnotationLayerSummary extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $allowedCharacterCount;
- public $limitType;
- public $remainingCharacterCount;
-
-
- public function setAllowedCharacterCount($allowedCharacterCount)
- {
- $this->allowedCharacterCount = $allowedCharacterCount;
- }
- public function getAllowedCharacterCount()
- {
- return $this->allowedCharacterCount;
- }
- public function setLimitType($limitType)
- {
- $this->limitType = $limitType;
- }
- public function getLimitType()
- {
- return $this->limitType;
- }
- public function setRemainingCharacterCount($remainingCharacterCount)
- {
- $this->remainingCharacterCount = $remainingCharacterCount;
- }
- public function getRemainingCharacterCount()
- {
- return $this->remainingCharacterCount;
- }
-}
-
-class Postman_Google_Service_Books_Annotationdata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "encodedData" => "encoded_data",
- );
- public $annotationType;
- public $data;
- public $encodedData;
- public $id;
- public $kind;
- public $layerId;
- public $selfLink;
- public $updated;
- public $volumeId;
-
-
- public function setAnnotationType($annotationType)
- {
- $this->annotationType = $annotationType;
- }
- public function getAnnotationType()
- {
- return $this->annotationType;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setEncodedData($encodedData)
- {
- $this->encodedData = $encodedData;
- }
- public function getEncodedData()
- {
- return $this->encodedData;
- }
- 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 setLayerId($layerId)
- {
- $this->layerId = $layerId;
- }
- public function getLayerId()
- {
- return $this->layerId;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_Annotations extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_Annotation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Books_AnnotationsSummary extends Postman_Google_Collection
-{
- protected $collection_key = 'layers';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $layersType = 'Postman_Google_Service_Books_AnnotationsSummaryLayers';
- protected $layersDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLayers($layers)
- {
- $this->layers = $layers;
- }
- public function getLayers()
- {
- return $this->layers;
- }
-}
-
-class Postman_Google_Service_Books_AnnotationsSummaryLayers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $allowedCharacterCount;
- public $layerId;
- public $limitType;
- public $remainingCharacterCount;
- public $updated;
-
-
- public function setAllowedCharacterCount($allowedCharacterCount)
- {
- $this->allowedCharacterCount = $allowedCharacterCount;
- }
- public function getAllowedCharacterCount()
- {
- return $this->allowedCharacterCount;
- }
- public function setLayerId($layerId)
- {
- $this->layerId = $layerId;
- }
- public function getLayerId()
- {
- return $this->layerId;
- }
- public function setLimitType($limitType)
- {
- $this->limitType = $limitType;
- }
- public function getLimitType()
- {
- return $this->limitType;
- }
- public function setRemainingCharacterCount($remainingCharacterCount)
- {
- $this->remainingCharacterCount = $remainingCharacterCount;
- }
- public function getRemainingCharacterCount()
- {
- return $this->remainingCharacterCount;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Books_Annotationsdata extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_Annotationdata';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Books_BooksAnnotationsRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endOffset;
- public $endPosition;
- public $startOffset;
- public $startPosition;
-
-
- public function setEndOffset($endOffset)
- {
- $this->endOffset = $endOffset;
- }
- public function getEndOffset()
- {
- return $this->endOffset;
- }
- public function setEndPosition($endPosition)
- {
- $this->endPosition = $endPosition;
- }
- public function getEndPosition()
- {
- return $this->endPosition;
- }
- public function setStartOffset($startOffset)
- {
- $this->startOffset = $startOffset;
- }
- public function getStartOffset()
- {
- return $this->startOffset;
- }
- public function setStartPosition($startPosition)
- {
- $this->startPosition = $startPosition;
- }
- public function getStartPosition()
- {
- return $this->startPosition;
- }
-}
-
-class Postman_Google_Service_Books_BooksCloudloadingResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $author;
- public $processingState;
- public $title;
- public $volumeId;
-
-
- public function setAuthor($author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setProcessingState($processingState)
- {
- $this->processingState = $processingState;
- }
- public function getProcessingState()
- {
- return $this->processingState;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_BooksVolumesRecommendedRateResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "consistencyToken" => "consistency_token",
- );
- public $consistencyToken;
-
-
- public function setConsistencyToken($consistencyToken)
- {
- $this->consistencyToken = $consistencyToken;
- }
- public function getConsistencyToken()
- {
- return $this->consistencyToken;
- }
-}
-
-class Postman_Google_Service_Books_Bookshelf extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $access;
- public $created;
- public $description;
- public $id;
- public $kind;
- public $selfLink;
- public $title;
- public $updated;
- public $volumeCount;
- public $volumesLastUpdated;
-
-
- public function setAccess($access)
- {
- $this->access = $access;
- }
- public function getAccess()
- {
- return $this->access;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- 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 setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVolumeCount($volumeCount)
- {
- $this->volumeCount = $volumeCount;
- }
- public function getVolumeCount()
- {
- return $this->volumeCount;
- }
- public function setVolumesLastUpdated($volumesLastUpdated)
- {
- $this->volumesLastUpdated = $volumesLastUpdated;
- }
- public function getVolumesLastUpdated()
- {
- return $this->volumesLastUpdated;
- }
-}
-
-class Postman_Google_Service_Books_Bookshelves extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_Bookshelf';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_ConcurrentAccessRestriction extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deviceAllowed;
- public $kind;
- public $maxConcurrentDevices;
- public $message;
- public $nonce;
- public $reasonCode;
- public $restricted;
- public $signature;
- public $source;
- public $timeWindowSeconds;
- public $volumeId;
-
-
- public function setDeviceAllowed($deviceAllowed)
- {
- $this->deviceAllowed = $deviceAllowed;
- }
- public function getDeviceAllowed()
- {
- return $this->deviceAllowed;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxConcurrentDevices($maxConcurrentDevices)
- {
- $this->maxConcurrentDevices = $maxConcurrentDevices;
- }
- public function getMaxConcurrentDevices()
- {
- return $this->maxConcurrentDevices;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setNonce($nonce)
- {
- $this->nonce = $nonce;
- }
- public function getNonce()
- {
- return $this->nonce;
- }
- public function setReasonCode($reasonCode)
- {
- $this->reasonCode = $reasonCode;
- }
- public function getReasonCode()
- {
- return $this->reasonCode;
- }
- public function setRestricted($restricted)
- {
- $this->restricted = $restricted;
- }
- public function getRestricted()
- {
- return $this->restricted;
- }
- public function setSignature($signature)
- {
- $this->signature = $signature;
- }
- public function getSignature()
- {
- return $this->signature;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setTimeWindowSeconds($timeWindowSeconds)
- {
- $this->timeWindowSeconds = $timeWindowSeconds;
- }
- public function getTimeWindowSeconds()
- {
- return $this->timeWindowSeconds;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_Dictlayerdata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $commonType = 'Postman_Google_Service_Books_DictlayerdataCommon';
- protected $commonDataType = '';
- protected $dictType = 'Postman_Google_Service_Books_DictlayerdataDict';
- protected $dictDataType = '';
- public $kind;
-
-
- public function setCommon(Postman_Google_Service_Books_DictlayerdataCommon $common)
- {
- $this->common = $common;
- }
- public function getCommon()
- {
- return $this->common;
- }
- public function setDict(Postman_Google_Service_Books_DictlayerdataDict $dict)
- {
- $this->dict = $dict;
- }
- public function getDict()
- {
- return $this->dict;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataCommon extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $title;
-
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDict extends Postman_Google_Collection
-{
- protected $collection_key = 'words';
- protected $internal_gapi_mappings = array(
- );
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictSource';
- protected $sourceDataType = '';
- protected $wordsType = 'Postman_Google_Service_Books_DictlayerdataDictWords';
- protected $wordsDataType = 'array';
-
-
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setWords($words)
- {
- $this->words = $words;
- }
- public function getWords()
- {
- return $this->words;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWords extends Postman_Google_Collection
-{
- protected $collection_key = 'senses';
- protected $internal_gapi_mappings = array(
- );
- protected $derivativesType = 'Postman_Google_Service_Books_DictlayerdataDictWordsDerivatives';
- protected $derivativesDataType = 'array';
- protected $examplesType = 'Postman_Google_Service_Books_DictlayerdataDictWordsExamples';
- protected $examplesDataType = 'array';
- protected $sensesType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSenses';
- protected $sensesDataType = 'array';
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSource';
- protected $sourceDataType = '';
-
-
- public function setDerivatives($derivatives)
- {
- $this->derivatives = $derivatives;
- }
- public function getDerivatives()
- {
- return $this->derivatives;
- }
- public function setExamples($examples)
- {
- $this->examples = $examples;
- }
- public function getExamples()
- {
- return $this->examples;
- }
- public function setSenses($senses)
- {
- $this->senses = $senses;
- }
- public function getSenses()
- {
- return $this->senses;
- }
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictWordsSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsDerivatives extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictWordsDerivativesSource';
- protected $sourceDataType = '';
- public $text;
-
-
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictWordsDerivativesSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsDerivativesSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsExamples extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictWordsExamplesSource';
- protected $sourceDataType = '';
- public $text;
-
-
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictWordsExamplesSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsExamplesSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSenses extends Postman_Google_Collection
-{
- protected $collection_key = 'synonyms';
- protected $internal_gapi_mappings = array(
- );
- protected $conjugationsType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesConjugations';
- protected $conjugationsDataType = 'array';
- protected $definitionsType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitions';
- protected $definitionsDataType = 'array';
- public $partOfSpeech;
- public $pronunciation;
- public $pronunciationUrl;
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesSource';
- protected $sourceDataType = '';
- public $syllabification;
- protected $synonymsType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesSynonyms';
- protected $synonymsDataType = 'array';
-
-
- public function setConjugations($conjugations)
- {
- $this->conjugations = $conjugations;
- }
- public function getConjugations()
- {
- return $this->conjugations;
- }
- public function setDefinitions($definitions)
- {
- $this->definitions = $definitions;
- }
- public function getDefinitions()
- {
- return $this->definitions;
- }
- public function setPartOfSpeech($partOfSpeech)
- {
- $this->partOfSpeech = $partOfSpeech;
- }
- public function getPartOfSpeech()
- {
- return $this->partOfSpeech;
- }
- public function setPronunciation($pronunciation)
- {
- $this->pronunciation = $pronunciation;
- }
- public function getPronunciation()
- {
- return $this->pronunciation;
- }
- public function setPronunciationUrl($pronunciationUrl)
- {
- $this->pronunciationUrl = $pronunciationUrl;
- }
- public function getPronunciationUrl()
- {
- return $this->pronunciationUrl;
- }
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictWordsSensesSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setSyllabification($syllabification)
- {
- $this->syllabification = $syllabification;
- }
- public function getSyllabification()
- {
- return $this->syllabification;
- }
- public function setSynonyms($synonyms)
- {
- $this->synonyms = $synonyms;
- }
- public function getSynonyms()
- {
- return $this->synonyms;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesConjugations extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitions extends Postman_Google_Collection
-{
- protected $collection_key = 'examples';
- protected $internal_gapi_mappings = array(
- );
- public $definition;
- protected $examplesType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamples';
- protected $examplesDataType = 'array';
-
-
- public function setDefinition($definition)
- {
- $this->definition = $definition;
- }
- public function getDefinition()
- {
- return $this->definition;
- }
- public function setExamples($examples)
- {
- $this->examples = $examples;
- }
- public function getExamples()
- {
- return $this->examples;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamples extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamplesSource';
- protected $sourceDataType = '';
- public $text;
-
-
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamplesSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamplesSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesSynonyms extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $sourceType = 'Postman_Google_Service_Books_DictlayerdataDictWordsSensesSynonymsSource';
- protected $sourceDataType = '';
- public $text;
-
-
- public function setSource(Postman_Google_Service_Books_DictlayerdataDictWordsSensesSynonymsSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSensesSynonymsSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DictlayerdataDictWordsSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $url;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_DownloadAccessRestriction extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deviceAllowed;
- public $downloadsAcquired;
- public $justAcquired;
- public $kind;
- public $maxDownloadDevices;
- public $message;
- public $nonce;
- public $reasonCode;
- public $restricted;
- public $signature;
- public $source;
- public $volumeId;
-
-
- public function setDeviceAllowed($deviceAllowed)
- {
- $this->deviceAllowed = $deviceAllowed;
- }
- public function getDeviceAllowed()
- {
- return $this->deviceAllowed;
- }
- public function setDownloadsAcquired($downloadsAcquired)
- {
- $this->downloadsAcquired = $downloadsAcquired;
- }
- public function getDownloadsAcquired()
- {
- return $this->downloadsAcquired;
- }
- public function setJustAcquired($justAcquired)
- {
- $this->justAcquired = $justAcquired;
- }
- public function getJustAcquired()
- {
- return $this->justAcquired;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxDownloadDevices($maxDownloadDevices)
- {
- $this->maxDownloadDevices = $maxDownloadDevices;
- }
- public function getMaxDownloadDevices()
- {
- return $this->maxDownloadDevices;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setNonce($nonce)
- {
- $this->nonce = $nonce;
- }
- public function getNonce()
- {
- return $this->nonce;
- }
- public function setReasonCode($reasonCode)
- {
- $this->reasonCode = $reasonCode;
- }
- public function getReasonCode()
- {
- return $this->reasonCode;
- }
- public function setRestricted($restricted)
- {
- $this->restricted = $restricted;
- }
- public function getRestricted()
- {
- return $this->restricted;
- }
- public function setSignature($signature)
- {
- $this->signature = $signature;
- }
- public function getSignature()
- {
- return $this->signature;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_DownloadAccesses extends Postman_Google_Collection
-{
- protected $collection_key = 'downloadAccessList';
- protected $internal_gapi_mappings = array(
- );
- protected $downloadAccessListType = 'Postman_Google_Service_Books_DownloadAccessRestriction';
- protected $downloadAccessListDataType = 'array';
- public $kind;
-
-
- public function setDownloadAccessList($downloadAccessList)
- {
- $this->downloadAccessList = $downloadAccessList;
- }
- public function getDownloadAccessList()
- {
- return $this->downloadAccessList;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_Geolayerdata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $commonType = 'Postman_Google_Service_Books_GeolayerdataCommon';
- protected $commonDataType = '';
- protected $geoType = 'Postman_Google_Service_Books_GeolayerdataGeo';
- protected $geoDataType = '';
- public $kind;
-
-
- public function setCommon(Postman_Google_Service_Books_GeolayerdataCommon $common)
- {
- $this->common = $common;
- }
- public function getCommon()
- {
- return $this->common;
- }
- public function setGeo(Postman_Google_Service_Books_GeolayerdataGeo $geo)
- {
- $this->geo = $geo;
- }
- public function getGeo()
- {
- return $this->geo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_GeolayerdataCommon extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $lang;
- public $previewImageUrl;
- public $snippet;
- public $snippetUrl;
- public $title;
-
-
- public function setLang($lang)
- {
- $this->lang = $lang;
- }
- public function getLang()
- {
- return $this->lang;
- }
- public function setPreviewImageUrl($previewImageUrl)
- {
- $this->previewImageUrl = $previewImageUrl;
- }
- public function getPreviewImageUrl()
- {
- return $this->previewImageUrl;
- }
- public function setSnippet($snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setSnippetUrl($snippetUrl)
- {
- $this->snippetUrl = $snippetUrl;
- }
- public function getSnippetUrl()
- {
- return $this->snippetUrl;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Books_GeolayerdataGeo extends Postman_Google_Collection
-{
- protected $collection_key = 'boundary';
- protected $internal_gapi_mappings = array(
- );
- protected $boundaryType = 'Postman_Google_Service_Books_GeolayerdataGeoBoundary';
- protected $boundaryDataType = 'array';
- public $cachePolicy;
- public $countryCode;
- public $latitude;
- public $longitude;
- public $mapType;
- protected $viewportType = 'Postman_Google_Service_Books_GeolayerdataGeoViewport';
- protected $viewportDataType = '';
- public $zoom;
-
-
- public function setBoundary($boundary)
- {
- $this->boundary = $boundary;
- }
- public function getBoundary()
- {
- return $this->boundary;
- }
- public function setCachePolicy($cachePolicy)
- {
- $this->cachePolicy = $cachePolicy;
- }
- public function getCachePolicy()
- {
- return $this->cachePolicy;
- }
- public function setCountryCode($countryCode)
- {
- $this->countryCode = $countryCode;
- }
- public function getCountryCode()
- {
- return $this->countryCode;
- }
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
- public function setMapType($mapType)
- {
- $this->mapType = $mapType;
- }
- public function getMapType()
- {
- return $this->mapType;
- }
- public function setViewport(Postman_Google_Service_Books_GeolayerdataGeoViewport $viewport)
- {
- $this->viewport = $viewport;
- }
- public function getViewport()
- {
- return $this->viewport;
- }
- public function setZoom($zoom)
- {
- $this->zoom = $zoom;
- }
- public function getZoom()
- {
- return $this->zoom;
- }
-}
-
-class Postman_Google_Service_Books_GeolayerdataGeoBoundary extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $latitude;
- public $longitude;
-
-
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Books_GeolayerdataGeoViewport extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $hiType = 'Postman_Google_Service_Books_GeolayerdataGeoViewportHi';
- protected $hiDataType = '';
- protected $loType = 'Postman_Google_Service_Books_GeolayerdataGeoViewportLo';
- protected $loDataType = '';
-
-
- public function setHi(Postman_Google_Service_Books_GeolayerdataGeoViewportHi $hi)
- {
- $this->hi = $hi;
- }
- public function getHi()
- {
- return $this->hi;
- }
- public function setLo(Postman_Google_Service_Books_GeolayerdataGeoViewportLo $lo)
- {
- $this->lo = $lo;
- }
- public function getLo()
- {
- return $this->lo;
- }
-}
-
-class Postman_Google_Service_Books_GeolayerdataGeoViewportHi extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $latitude;
- public $longitude;
-
-
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Books_GeolayerdataGeoViewportLo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $latitude;
- public $longitude;
-
-
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Books_Layersummaries extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_Layersummary';
- protected $itemsDataType = 'array';
- public $kind;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Books_Layersummary extends Postman_Google_Collection
-{
- protected $collection_key = 'annotationTypes';
- protected $internal_gapi_mappings = array(
- );
- public $annotationCount;
- public $annotationTypes;
- public $annotationsDataLink;
- public $annotationsLink;
- public $contentVersion;
- public $dataCount;
- public $id;
- public $kind;
- public $layerId;
- public $selfLink;
- public $updated;
- public $volumeAnnotationsVersion;
- public $volumeId;
-
-
- public function setAnnotationCount($annotationCount)
- {
- $this->annotationCount = $annotationCount;
- }
- public function getAnnotationCount()
- {
- return $this->annotationCount;
- }
- public function setAnnotationTypes($annotationTypes)
- {
- $this->annotationTypes = $annotationTypes;
- }
- public function getAnnotationTypes()
- {
- return $this->annotationTypes;
- }
- public function setAnnotationsDataLink($annotationsDataLink)
- {
- $this->annotationsDataLink = $annotationsDataLink;
- }
- public function getAnnotationsDataLink()
- {
- return $this->annotationsDataLink;
- }
- public function setAnnotationsLink($annotationsLink)
- {
- $this->annotationsLink = $annotationsLink;
- }
- public function getAnnotationsLink()
- {
- return $this->annotationsLink;
- }
- public function setContentVersion($contentVersion)
- {
- $this->contentVersion = $contentVersion;
- }
- public function getContentVersion()
- {
- return $this->contentVersion;
- }
- public function setDataCount($dataCount)
- {
- $this->dataCount = $dataCount;
- }
- public function getDataCount()
- {
- return $this->dataCount;
- }
- 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 setLayerId($layerId)
- {
- $this->layerId = $layerId;
- }
- public function getLayerId()
- {
- return $this->layerId;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVolumeAnnotationsVersion($volumeAnnotationsVersion)
- {
- $this->volumeAnnotationsVersion = $volumeAnnotationsVersion;
- }
- public function getVolumeAnnotationsVersion()
- {
- return $this->volumeAnnotationsVersion;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_Metadata extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_MetadataItems';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_MetadataItems extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "downloadUrl" => "download_url",
- "encryptedKey" => "encrypted_key",
- );
- public $downloadUrl;
- public $encryptedKey;
- public $language;
- public $size;
- public $version;
-
-
- public function setDownloadUrl($downloadUrl)
- {
- $this->downloadUrl = $downloadUrl;
- }
- public function getDownloadUrl()
- {
- return $this->downloadUrl;
- }
- public function setEncryptedKey($encryptedKey)
- {
- $this->encryptedKey = $encryptedKey;
- }
- public function getEncryptedKey()
- {
- return $this->encryptedKey;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Books_Offers extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_OffersItems';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_OffersItems extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $artUrl;
- public $id;
- protected $itemsType = 'Postman_Google_Service_Books_OffersItemsItems';
- protected $itemsDataType = 'array';
-
-
- public function setArtUrl($artUrl)
- {
- $this->artUrl = $artUrl;
- }
- public function getArtUrl()
- {
- return $this->artUrl;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
-}
-
-class Postman_Google_Service_Books_OffersItemsItems extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $author;
- public $canonicalVolumeLink;
- public $coverUrl;
- public $description;
- public $title;
- public $volumeId;
-
-
- public function setAuthor($author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setCanonicalVolumeLink($canonicalVolumeLink)
- {
- $this->canonicalVolumeLink = $canonicalVolumeLink;
- }
- public function getCanonicalVolumeLink()
- {
- return $this->canonicalVolumeLink;
- }
- public function setCoverUrl($coverUrl)
- {
- $this->coverUrl = $coverUrl;
- }
- public function getCoverUrl()
- {
- return $this->coverUrl;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_ReadingPosition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $epubCfiPosition;
- public $gbImagePosition;
- public $gbTextPosition;
- public $kind;
- public $pdfPosition;
- public $updated;
- public $volumeId;
-
-
- public function setEpubCfiPosition($epubCfiPosition)
- {
- $this->epubCfiPosition = $epubCfiPosition;
- }
- public function getEpubCfiPosition()
- {
- return $this->epubCfiPosition;
- }
- public function setGbImagePosition($gbImagePosition)
- {
- $this->gbImagePosition = $gbImagePosition;
- }
- public function getGbImagePosition()
- {
- return $this->gbImagePosition;
- }
- public function setGbTextPosition($gbTextPosition)
- {
- $this->gbTextPosition = $gbTextPosition;
- }
- public function getGbTextPosition()
- {
- return $this->gbTextPosition;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPdfPosition($pdfPosition)
- {
- $this->pdfPosition = $pdfPosition;
- }
- public function getPdfPosition()
- {
- return $this->pdfPosition;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_RequestAccess extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $concurrentAccessType = 'Postman_Google_Service_Books_ConcurrentAccessRestriction';
- protected $concurrentAccessDataType = '';
- protected $downloadAccessType = 'Postman_Google_Service_Books_DownloadAccessRestriction';
- protected $downloadAccessDataType = '';
- public $kind;
-
-
- public function setConcurrentAccess(Postman_Google_Service_Books_ConcurrentAccessRestriction $concurrentAccess)
- {
- $this->concurrentAccess = $concurrentAccess;
- }
- public function getConcurrentAccess()
- {
- return $this->concurrentAccess;
- }
- public function setDownloadAccess(Postman_Google_Service_Books_DownloadAccessRestriction $downloadAccess)
- {
- $this->downloadAccess = $downloadAccess;
- }
- public function getDownloadAccess()
- {
- return $this->downloadAccess;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Books_Review extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $authorType = 'Postman_Google_Service_Books_ReviewAuthor';
- protected $authorDataType = '';
- public $content;
- public $date;
- public $fullTextUrl;
- public $kind;
- public $rating;
- protected $sourceType = 'Postman_Google_Service_Books_ReviewSource';
- protected $sourceDataType = '';
- public $title;
- public $type;
- public $volumeId;
-
-
- public function setAuthor(Postman_Google_Service_Books_ReviewAuthor $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setFullTextUrl($fullTextUrl)
- {
- $this->fullTextUrl = $fullTextUrl;
- }
- public function getFullTextUrl()
- {
- return $this->fullTextUrl;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRating($rating)
- {
- $this->rating = $rating;
- }
- public function getRating()
- {
- return $this->rating;
- }
- public function setSource(Postman_Google_Service_Books_ReviewSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_ReviewAuthor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
-}
-
-class Postman_Google_Service_Books_ReviewSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $extraDescription;
- public $url;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setExtraDescription($extraDescription)
- {
- $this->extraDescription = $extraDescription;
- }
- public function getExtraDescription()
- {
- return $this->extraDescription;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Books_Volume extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accessInfoType = 'Postman_Google_Service_Books_VolumeAccessInfo';
- protected $accessInfoDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $layerInfoType = 'Postman_Google_Service_Books_VolumeLayerInfo';
- protected $layerInfoDataType = '';
- protected $recommendedInfoType = 'Postman_Google_Service_Books_VolumeRecommendedInfo';
- protected $recommendedInfoDataType = '';
- protected $saleInfoType = 'Postman_Google_Service_Books_VolumeSaleInfo';
- protected $saleInfoDataType = '';
- protected $searchInfoType = 'Postman_Google_Service_Books_VolumeSearchInfo';
- protected $searchInfoDataType = '';
- public $selfLink;
- protected $userInfoType = 'Postman_Google_Service_Books_VolumeUserInfo';
- protected $userInfoDataType = '';
- protected $volumeInfoType = 'Postman_Google_Service_Books_VolumeVolumeInfo';
- protected $volumeInfoDataType = '';
-
-
- public function setAccessInfo(Postman_Google_Service_Books_VolumeAccessInfo $accessInfo)
- {
- $this->accessInfo = $accessInfo;
- }
- public function getAccessInfo()
- {
- return $this->accessInfo;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setLayerInfo(Postman_Google_Service_Books_VolumeLayerInfo $layerInfo)
- {
- $this->layerInfo = $layerInfo;
- }
- public function getLayerInfo()
- {
- return $this->layerInfo;
- }
- public function setRecommendedInfo(Postman_Google_Service_Books_VolumeRecommendedInfo $recommendedInfo)
- {
- $this->recommendedInfo = $recommendedInfo;
- }
- public function getRecommendedInfo()
- {
- return $this->recommendedInfo;
- }
- public function setSaleInfo(Postman_Google_Service_Books_VolumeSaleInfo $saleInfo)
- {
- $this->saleInfo = $saleInfo;
- }
- public function getSaleInfo()
- {
- return $this->saleInfo;
- }
- public function setSearchInfo(Postman_Google_Service_Books_VolumeSearchInfo $searchInfo)
- {
- $this->searchInfo = $searchInfo;
- }
- public function getSearchInfo()
- {
- return $this->searchInfo;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUserInfo(Postman_Google_Service_Books_VolumeUserInfo $userInfo)
- {
- $this->userInfo = $userInfo;
- }
- public function getUserInfo()
- {
- return $this->userInfo;
- }
- public function setVolumeInfo(Postman_Google_Service_Books_VolumeVolumeInfo $volumeInfo)
- {
- $this->volumeInfo = $volumeInfo;
- }
- public function getVolumeInfo()
- {
- return $this->volumeInfo;
- }
-}
-
-class Postman_Google_Service_Books_VolumeAccessInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accessViewStatus;
- public $country;
- protected $downloadAccessType = 'Postman_Google_Service_Books_DownloadAccessRestriction';
- protected $downloadAccessDataType = '';
- public $driveImportedContentLink;
- public $embeddable;
- protected $epubType = 'Postman_Google_Service_Books_VolumeAccessInfoEpub';
- protected $epubDataType = '';
- public $explicitOfflineLicenseManagement;
- protected $pdfType = 'Postman_Google_Service_Books_VolumeAccessInfoPdf';
- protected $pdfDataType = '';
- public $publicDomain;
- public $quoteSharingAllowed;
- public $textToSpeechPermission;
- public $viewOrderUrl;
- public $viewability;
- public $webReaderLink;
-
-
- public function setAccessViewStatus($accessViewStatus)
- {
- $this->accessViewStatus = $accessViewStatus;
- }
- public function getAccessViewStatus()
- {
- return $this->accessViewStatus;
- }
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setDownloadAccess(Postman_Google_Service_Books_DownloadAccessRestriction $downloadAccess)
- {
- $this->downloadAccess = $downloadAccess;
- }
- public function getDownloadAccess()
- {
- return $this->downloadAccess;
- }
- public function setDriveImportedContentLink($driveImportedContentLink)
- {
- $this->driveImportedContentLink = $driveImportedContentLink;
- }
- public function getDriveImportedContentLink()
- {
- return $this->driveImportedContentLink;
- }
- public function setEmbeddable($embeddable)
- {
- $this->embeddable = $embeddable;
- }
- public function getEmbeddable()
- {
- return $this->embeddable;
- }
- public function setEpub(Postman_Google_Service_Books_VolumeAccessInfoEpub $epub)
- {
- $this->epub = $epub;
- }
- public function getEpub()
- {
- return $this->epub;
- }
- public function setExplicitOfflineLicenseManagement($explicitOfflineLicenseManagement)
- {
- $this->explicitOfflineLicenseManagement = $explicitOfflineLicenseManagement;
- }
- public function getExplicitOfflineLicenseManagement()
- {
- return $this->explicitOfflineLicenseManagement;
- }
- public function setPdf(Postman_Google_Service_Books_VolumeAccessInfoPdf $pdf)
- {
- $this->pdf = $pdf;
- }
- public function getPdf()
- {
- return $this->pdf;
- }
- public function setPublicDomain($publicDomain)
- {
- $this->publicDomain = $publicDomain;
- }
- public function getPublicDomain()
- {
- return $this->publicDomain;
- }
- public function setQuoteSharingAllowed($quoteSharingAllowed)
- {
- $this->quoteSharingAllowed = $quoteSharingAllowed;
- }
- public function getQuoteSharingAllowed()
- {
- return $this->quoteSharingAllowed;
- }
- public function setTextToSpeechPermission($textToSpeechPermission)
- {
- $this->textToSpeechPermission = $textToSpeechPermission;
- }
- public function getTextToSpeechPermission()
- {
- return $this->textToSpeechPermission;
- }
- public function setViewOrderUrl($viewOrderUrl)
- {
- $this->viewOrderUrl = $viewOrderUrl;
- }
- public function getViewOrderUrl()
- {
- return $this->viewOrderUrl;
- }
- public function setViewability($viewability)
- {
- $this->viewability = $viewability;
- }
- public function getViewability()
- {
- return $this->viewability;
- }
- public function setWebReaderLink($webReaderLink)
- {
- $this->webReaderLink = $webReaderLink;
- }
- public function getWebReaderLink()
- {
- return $this->webReaderLink;
- }
-}
-
-class Postman_Google_Service_Books_VolumeAccessInfoEpub extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $acsTokenLink;
- public $downloadLink;
- public $isAvailable;
-
-
- public function setAcsTokenLink($acsTokenLink)
- {
- $this->acsTokenLink = $acsTokenLink;
- }
- public function getAcsTokenLink()
- {
- return $this->acsTokenLink;
- }
- public function setDownloadLink($downloadLink)
- {
- $this->downloadLink = $downloadLink;
- }
- public function getDownloadLink()
- {
- return $this->downloadLink;
- }
- public function setIsAvailable($isAvailable)
- {
- $this->isAvailable = $isAvailable;
- }
- public function getIsAvailable()
- {
- return $this->isAvailable;
- }
-}
-
-class Postman_Google_Service_Books_VolumeAccessInfoPdf extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $acsTokenLink;
- public $downloadLink;
- public $isAvailable;
-
-
- public function setAcsTokenLink($acsTokenLink)
- {
- $this->acsTokenLink = $acsTokenLink;
- }
- public function getAcsTokenLink()
- {
- return $this->acsTokenLink;
- }
- public function setDownloadLink($downloadLink)
- {
- $this->downloadLink = $downloadLink;
- }
- public function getDownloadLink()
- {
- return $this->downloadLink;
- }
- public function setIsAvailable($isAvailable)
- {
- $this->isAvailable = $isAvailable;
- }
- public function getIsAvailable()
- {
- return $this->isAvailable;
- }
-}
-
-class Postman_Google_Service_Books_VolumeLayerInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'layers';
- protected $internal_gapi_mappings = array(
- );
- protected $layersType = 'Postman_Google_Service_Books_VolumeLayerInfoLayers';
- protected $layersDataType = 'array';
-
-
- public function setLayers($layers)
- {
- $this->layers = $layers;
- }
- public function getLayers()
- {
- return $this->layers;
- }
-}
-
-class Postman_Google_Service_Books_VolumeLayerInfoLayers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $layerId;
- public $volumeAnnotationsVersion;
-
-
- public function setLayerId($layerId)
- {
- $this->layerId = $layerId;
- }
- public function getLayerId()
- {
- return $this->layerId;
- }
- public function setVolumeAnnotationsVersion($volumeAnnotationsVersion)
- {
- $this->volumeAnnotationsVersion = $volumeAnnotationsVersion;
- }
- public function getVolumeAnnotationsVersion()
- {
- return $this->volumeAnnotationsVersion;
- }
-}
-
-class Postman_Google_Service_Books_VolumeRecommendedInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $explanation;
-
-
- public function setExplanation($explanation)
- {
- $this->explanation = $explanation;
- }
- public function getExplanation()
- {
- return $this->explanation;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'offers';
- protected $internal_gapi_mappings = array(
- );
- public $buyLink;
- public $country;
- public $isEbook;
- protected $listPriceType = 'Postman_Google_Service_Books_VolumeSaleInfoListPrice';
- protected $listPriceDataType = '';
- protected $offersType = 'Postman_Google_Service_Books_VolumeSaleInfoOffers';
- protected $offersDataType = 'array';
- public $onSaleDate;
- protected $retailPriceType = 'Postman_Google_Service_Books_VolumeSaleInfoRetailPrice';
- protected $retailPriceDataType = '';
- public $saleability;
-
-
- public function setBuyLink($buyLink)
- {
- $this->buyLink = $buyLink;
- }
- public function getBuyLink()
- {
- return $this->buyLink;
- }
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setIsEbook($isEbook)
- {
- $this->isEbook = $isEbook;
- }
- public function getIsEbook()
- {
- return $this->isEbook;
- }
- public function setListPrice(Postman_Google_Service_Books_VolumeSaleInfoListPrice $listPrice)
- {
- $this->listPrice = $listPrice;
- }
- public function getListPrice()
- {
- return $this->listPrice;
- }
- public function setOffers($offers)
- {
- $this->offers = $offers;
- }
- public function getOffers()
- {
- return $this->offers;
- }
- public function setOnSaleDate($onSaleDate)
- {
- $this->onSaleDate = $onSaleDate;
- }
- public function getOnSaleDate()
- {
- return $this->onSaleDate;
- }
- public function setRetailPrice(Postman_Google_Service_Books_VolumeSaleInfoRetailPrice $retailPrice)
- {
- $this->retailPrice = $retailPrice;
- }
- public function getRetailPrice()
- {
- return $this->retailPrice;
- }
- public function setSaleability($saleability)
- {
- $this->saleability = $saleability;
- }
- public function getSaleability()
- {
- return $this->saleability;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfoListPrice extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $amount;
- public $currencyCode;
-
-
- public function setAmount($amount)
- {
- $this->amount = $amount;
- }
- public function getAmount()
- {
- return $this->amount;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfoOffers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $finskyOfferType;
- protected $listPriceType = 'Postman_Google_Service_Books_VolumeSaleInfoOffersListPrice';
- protected $listPriceDataType = '';
- protected $rentalDurationType = 'Postman_Google_Service_Books_VolumeSaleInfoOffersRentalDuration';
- protected $rentalDurationDataType = '';
- protected $retailPriceType = 'Postman_Google_Service_Books_VolumeSaleInfoOffersRetailPrice';
- protected $retailPriceDataType = '';
-
-
- public function setFinskyOfferType($finskyOfferType)
- {
- $this->finskyOfferType = $finskyOfferType;
- }
- public function getFinskyOfferType()
- {
- return $this->finskyOfferType;
- }
- public function setListPrice(Postman_Google_Service_Books_VolumeSaleInfoOffersListPrice $listPrice)
- {
- $this->listPrice = $listPrice;
- }
- public function getListPrice()
- {
- return $this->listPrice;
- }
- public function setRentalDuration(Postman_Google_Service_Books_VolumeSaleInfoOffersRentalDuration $rentalDuration)
- {
- $this->rentalDuration = $rentalDuration;
- }
- public function getRentalDuration()
- {
- return $this->rentalDuration;
- }
- public function setRetailPrice(Postman_Google_Service_Books_VolumeSaleInfoOffersRetailPrice $retailPrice)
- {
- $this->retailPrice = $retailPrice;
- }
- public function getRetailPrice()
- {
- return $this->retailPrice;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfoOffersListPrice extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $amountInMicros;
- public $currencyCode;
-
-
- public function setAmountInMicros($amountInMicros)
- {
- $this->amountInMicros = $amountInMicros;
- }
- public function getAmountInMicros()
- {
- return $this->amountInMicros;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfoOffersRentalDuration extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $unit;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setUnit($unit)
- {
- $this->unit = $unit;
- }
- public function getUnit()
- {
- return $this->unit;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfoOffersRetailPrice extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $amountInMicros;
- public $currencyCode;
-
-
- public function setAmountInMicros($amountInMicros)
- {
- $this->amountInMicros = $amountInMicros;
- }
- public function getAmountInMicros()
- {
- return $this->amountInMicros;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSaleInfoRetailPrice extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $amount;
- public $currencyCode;
-
-
- public function setAmount($amount)
- {
- $this->amount = $amount;
- }
- public function getAmount()
- {
- return $this->amount;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
-}
-
-class Postman_Google_Service_Books_VolumeSearchInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $textSnippet;
-
-
- public function setTextSnippet($textSnippet)
- {
- $this->textSnippet = $textSnippet;
- }
- public function getTextSnippet()
- {
- return $this->textSnippet;
- }
-}
-
-class Postman_Google_Service_Books_VolumeUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $copyType = 'Postman_Google_Service_Books_VolumeUserInfoCopy';
- protected $copyDataType = '';
- public $isInMyBooks;
- public $isPreordered;
- public $isPurchased;
- public $isUploaded;
- protected $readingPositionType = 'Postman_Google_Service_Books_ReadingPosition';
- protected $readingPositionDataType = '';
- protected $rentalPeriodType = 'Postman_Google_Service_Books_VolumeUserInfoRentalPeriod';
- protected $rentalPeriodDataType = '';
- public $rentalState;
- protected $reviewType = 'Postman_Google_Service_Books_Review';
- protected $reviewDataType = '';
- public $updated;
- protected $userUploadedVolumeInfoType = 'Postman_Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo';
- protected $userUploadedVolumeInfoDataType = '';
-
-
- public function setCopy(Postman_Google_Service_Books_VolumeUserInfoCopy $copy)
- {
- $this->copy = $copy;
- }
- public function getCopy()
- {
- return $this->copy;
- }
- public function setIsInMyBooks($isInMyBooks)
- {
- $this->isInMyBooks = $isInMyBooks;
- }
- public function getIsInMyBooks()
- {
- return $this->isInMyBooks;
- }
- public function setIsPreordered($isPreordered)
- {
- $this->isPreordered = $isPreordered;
- }
- public function getIsPreordered()
- {
- return $this->isPreordered;
- }
- public function setIsPurchased($isPurchased)
- {
- $this->isPurchased = $isPurchased;
- }
- public function getIsPurchased()
- {
- return $this->isPurchased;
- }
- public function setIsUploaded($isUploaded)
- {
- $this->isUploaded = $isUploaded;
- }
- public function getIsUploaded()
- {
- return $this->isUploaded;
- }
- public function setReadingPosition(Postman_Google_Service_Books_ReadingPosition $readingPosition)
- {
- $this->readingPosition = $readingPosition;
- }
- public function getReadingPosition()
- {
- return $this->readingPosition;
- }
- public function setRentalPeriod(Postman_Google_Service_Books_VolumeUserInfoRentalPeriod $rentalPeriod)
- {
- $this->rentalPeriod = $rentalPeriod;
- }
- public function getRentalPeriod()
- {
- return $this->rentalPeriod;
- }
- public function setRentalState($rentalState)
- {
- $this->rentalState = $rentalState;
- }
- public function getRentalState()
- {
- return $this->rentalState;
- }
- public function setReview(Postman_Google_Service_Books_Review $review)
- {
- $this->review = $review;
- }
- public function getReview()
- {
- return $this->review;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUserUploadedVolumeInfo(Postman_Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo $userUploadedVolumeInfo)
- {
- $this->userUploadedVolumeInfo = $userUploadedVolumeInfo;
- }
- public function getUserUploadedVolumeInfo()
- {
- return $this->userUploadedVolumeInfo;
- }
-}
-
-class Postman_Google_Service_Books_VolumeUserInfoCopy extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $allowedCharacterCount;
- public $limitType;
- public $remainingCharacterCount;
- public $updated;
-
-
- public function setAllowedCharacterCount($allowedCharacterCount)
- {
- $this->allowedCharacterCount = $allowedCharacterCount;
- }
- public function getAllowedCharacterCount()
- {
- return $this->allowedCharacterCount;
- }
- public function setLimitType($limitType)
- {
- $this->limitType = $limitType;
- }
- public function getLimitType()
- {
- return $this->limitType;
- }
- public function setRemainingCharacterCount($remainingCharacterCount)
- {
- $this->remainingCharacterCount = $remainingCharacterCount;
- }
- public function getRemainingCharacterCount()
- {
- return $this->remainingCharacterCount;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Books_VolumeUserInfoRentalPeriod extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endUtcSec;
- public $startUtcSec;
-
-
- public function setEndUtcSec($endUtcSec)
- {
- $this->endUtcSec = $endUtcSec;
- }
- public function getEndUtcSec()
- {
- return $this->endUtcSec;
- }
- public function setStartUtcSec($startUtcSec)
- {
- $this->startUtcSec = $startUtcSec;
- }
- public function getStartUtcSec()
- {
- return $this->startUtcSec;
- }
-}
-
-class Postman_Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $processingState;
-
-
- public function setProcessingState($processingState)
- {
- $this->processingState = $processingState;
- }
- public function getProcessingState()
- {
- return $this->processingState;
- }
-}
-
-class Postman_Google_Service_Books_VolumeVolumeInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'industryIdentifiers';
- protected $internal_gapi_mappings = array(
- );
- public $authors;
- public $averageRating;
- public $canonicalVolumeLink;
- public $categories;
- public $contentVersion;
- public $description;
- protected $dimensionsType = 'Postman_Google_Service_Books_VolumeVolumeInfoDimensions';
- protected $dimensionsDataType = '';
- protected $imageLinksType = 'Postman_Google_Service_Books_VolumeVolumeInfoImageLinks';
- protected $imageLinksDataType = '';
- protected $industryIdentifiersType = 'Postman_Google_Service_Books_VolumeVolumeInfoIndustryIdentifiers';
- protected $industryIdentifiersDataType = 'array';
- public $infoLink;
- public $language;
- public $mainCategory;
- public $pageCount;
- public $previewLink;
- public $printType;
- public $printedPageCount;
- public $publishedDate;
- public $publisher;
- public $ratingsCount;
- public $readingModes;
- public $subtitle;
- public $title;
-
-
- public function setAuthors($authors)
- {
- $this->authors = $authors;
- }
- public function getAuthors()
- {
- return $this->authors;
- }
- public function setAverageRating($averageRating)
- {
- $this->averageRating = $averageRating;
- }
- public function getAverageRating()
- {
- return $this->averageRating;
- }
- public function setCanonicalVolumeLink($canonicalVolumeLink)
- {
- $this->canonicalVolumeLink = $canonicalVolumeLink;
- }
- public function getCanonicalVolumeLink()
- {
- return $this->canonicalVolumeLink;
- }
- public function setCategories($categories)
- {
- $this->categories = $categories;
- }
- public function getCategories()
- {
- return $this->categories;
- }
- public function setContentVersion($contentVersion)
- {
- $this->contentVersion = $contentVersion;
- }
- public function getContentVersion()
- {
- return $this->contentVersion;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDimensions(Postman_Google_Service_Books_VolumeVolumeInfoDimensions $dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setImageLinks(Postman_Google_Service_Books_VolumeVolumeInfoImageLinks $imageLinks)
- {
- $this->imageLinks = $imageLinks;
- }
- public function getImageLinks()
- {
- return $this->imageLinks;
- }
- public function setIndustryIdentifiers($industryIdentifiers)
- {
- $this->industryIdentifiers = $industryIdentifiers;
- }
- public function getIndustryIdentifiers()
- {
- return $this->industryIdentifiers;
- }
- public function setInfoLink($infoLink)
- {
- $this->infoLink = $infoLink;
- }
- public function getInfoLink()
- {
- return $this->infoLink;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setMainCategory($mainCategory)
- {
- $this->mainCategory = $mainCategory;
- }
- public function getMainCategory()
- {
- return $this->mainCategory;
- }
- public function setPageCount($pageCount)
- {
- $this->pageCount = $pageCount;
- }
- public function getPageCount()
- {
- return $this->pageCount;
- }
- public function setPreviewLink($previewLink)
- {
- $this->previewLink = $previewLink;
- }
- public function getPreviewLink()
- {
- return $this->previewLink;
- }
- public function setPrintType($printType)
- {
- $this->printType = $printType;
- }
- public function getPrintType()
- {
- return $this->printType;
- }
- public function setPrintedPageCount($printedPageCount)
- {
- $this->printedPageCount = $printedPageCount;
- }
- public function getPrintedPageCount()
- {
- return $this->printedPageCount;
- }
- public function setPublishedDate($publishedDate)
- {
- $this->publishedDate = $publishedDate;
- }
- public function getPublishedDate()
- {
- return $this->publishedDate;
- }
- public function setPublisher($publisher)
- {
- $this->publisher = $publisher;
- }
- public function getPublisher()
- {
- return $this->publisher;
- }
- public function setRatingsCount($ratingsCount)
- {
- $this->ratingsCount = $ratingsCount;
- }
- public function getRatingsCount()
- {
- return $this->ratingsCount;
- }
- public function setReadingModes($readingModes)
- {
- $this->readingModes = $readingModes;
- }
- public function getReadingModes()
- {
- return $this->readingModes;
- }
- public function setSubtitle($subtitle)
- {
- $this->subtitle = $subtitle;
- }
- public function getSubtitle()
- {
- return $this->subtitle;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Books_VolumeVolumeInfoDimensions extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $thickness;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setThickness($thickness)
- {
- $this->thickness = $thickness;
- }
- public function getThickness()
- {
- return $this->thickness;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Books_VolumeVolumeInfoImageLinks extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $extraLarge;
- public $large;
- public $medium;
- public $small;
- public $smallThumbnail;
- public $thumbnail;
-
-
- public function setExtraLarge($extraLarge)
- {
- $this->extraLarge = $extraLarge;
- }
- public function getExtraLarge()
- {
- return $this->extraLarge;
- }
- public function setLarge($large)
- {
- $this->large = $large;
- }
- public function getLarge()
- {
- return $this->large;
- }
- public function setMedium($medium)
- {
- $this->medium = $medium;
- }
- public function getMedium()
- {
- return $this->medium;
- }
- public function setSmall($small)
- {
- $this->small = $small;
- }
- public function getSmall()
- {
- return $this->small;
- }
- public function setSmallThumbnail($smallThumbnail)
- {
- $this->smallThumbnail = $smallThumbnail;
- }
- public function getSmallThumbnail()
- {
- return $this->smallThumbnail;
- }
- public function setThumbnail($thumbnail)
- {
- $this->thumbnail = $thumbnail;
- }
- public function getThumbnail()
- {
- return $this->thumbnail;
- }
-}
-
-class Postman_Google_Service_Books_VolumeVolumeInfoIndustryIdentifiers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $identifier;
- public $type;
-
-
- public function setIdentifier($identifier)
- {
- $this->identifier = $identifier;
- }
- public function getIdentifier()
- {
- return $this->identifier;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Books_Volumeannotation extends Postman_Google_Collection
-{
- protected $collection_key = 'pageIds';
- protected $internal_gapi_mappings = array(
- );
- public $annotationDataId;
- public $annotationDataLink;
- public $annotationType;
- protected $contentRangesType = 'Postman_Google_Service_Books_VolumeannotationContentRanges';
- protected $contentRangesDataType = '';
- public $data;
- public $deleted;
- public $id;
- public $kind;
- public $layerId;
- public $pageIds;
- public $selectedText;
- public $selfLink;
- public $updated;
- public $volumeId;
-
-
- public function setAnnotationDataId($annotationDataId)
- {
- $this->annotationDataId = $annotationDataId;
- }
- public function getAnnotationDataId()
- {
- return $this->annotationDataId;
- }
- public function setAnnotationDataLink($annotationDataLink)
- {
- $this->annotationDataLink = $annotationDataLink;
- }
- public function getAnnotationDataLink()
- {
- return $this->annotationDataLink;
- }
- public function setAnnotationType($annotationType)
- {
- $this->annotationType = $annotationType;
- }
- public function getAnnotationType()
- {
- return $this->annotationType;
- }
- public function setContentRanges(Postman_Google_Service_Books_VolumeannotationContentRanges $contentRanges)
- {
- $this->contentRanges = $contentRanges;
- }
- public function getContentRanges()
- {
- return $this->contentRanges;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- 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 setLayerId($layerId)
- {
- $this->layerId = $layerId;
- }
- public function getLayerId()
- {
- return $this->layerId;
- }
- public function setPageIds($pageIds)
- {
- $this->pageIds = $pageIds;
- }
- public function getPageIds()
- {
- return $this->pageIds;
- }
- public function setSelectedText($selectedText)
- {
- $this->selectedText = $selectedText;
- }
- public function getSelectedText()
- {
- return $this->selectedText;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVolumeId($volumeId)
- {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId()
- {
- return $this->volumeId;
- }
-}
-
-class Postman_Google_Service_Books_VolumeannotationContentRanges extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $cfiRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $cfiRangeDataType = '';
- public $contentVersion;
- protected $gbImageRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $gbImageRangeDataType = '';
- protected $gbTextRangeType = 'Postman_Google_Service_Books_BooksAnnotationsRange';
- protected $gbTextRangeDataType = '';
-
-
- public function setCfiRange(Postman_Google_Service_Books_BooksAnnotationsRange $cfiRange)
- {
- $this->cfiRange = $cfiRange;
- }
- public function getCfiRange()
- {
- return $this->cfiRange;
- }
- public function setContentVersion($contentVersion)
- {
- $this->contentVersion = $contentVersion;
- }
- public function getContentVersion()
- {
- return $this->contentVersion;
- }
- public function setGbImageRange(Postman_Google_Service_Books_BooksAnnotationsRange $gbImageRange)
- {
- $this->gbImageRange = $gbImageRange;
- }
- public function getGbImageRange()
- {
- return $this->gbImageRange;
- }
- public function setGbTextRange(Postman_Google_Service_Books_BooksAnnotationsRange $gbTextRange)
- {
- $this->gbTextRange = $gbTextRange;
- }
- public function getGbTextRange()
- {
- return $this->gbTextRange;
- }
-}
-
-class Postman_Google_Service_Books_Volumeannotations extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_Volumeannotation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
- public $version;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Books_Volumes extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Books_Volume';
- protected $itemsDataType = 'array';
- public $kind;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Calendar.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Calendar.php
deleted file mode 100644
index bc2c893..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Calendar.php
+++ /dev/null
@@ -1,3751 +0,0 @@
-
- * Lets you manipulate events and other calendar data.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Calendar extends Postman_Google_Service -{ - /** Manage your calendars. */ - const CALENDAR = - "https://www.googleapis.com/auth/calendar"; - /** View your calendars. */ - const CALENDAR_READONLY = - "https://www.googleapis.com/auth/calendar.readonly"; - - public $acl; - public $calendarList; - public $calendars; - public $channels; - public $colors; - public $events; - public $freebusy; - public $settings; - - - /** - * Constructs the internal representation of the Calendar service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'calendar/v3/'; - $this->version = 'v3'; - $this->serviceName = 'calendar'; - - $this->acl = new Postman_Google_Service_Calendar_Acl_Resource( - $this, - $this->serviceName, - 'acl', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'calendars/{calendarId}/acl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'calendars/{calendarId}/acl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'watch' => array( - 'path' => 'calendars/{calendarId}/acl/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->calendarList = new Postman_Google_Service_Calendar_CalendarList_Resource( - $this, - $this->serviceName, - 'calendarList', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'users/me/calendarList', - 'httpMethod' => 'POST', - 'parameters' => array( - 'colorRgbFormat' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'users/me/calendarList', - 'httpMethod' => 'GET', - 'parameters' => array( - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'minAccessRole' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showHidden' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'colorRgbFormat' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'colorRgbFormat' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'watch' => array( - 'path' => 'users/me/calendarList/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'minAccessRole' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showHidden' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->calendars = new Postman_Google_Service_Calendar_Calendars_Resource( - $this, - $this->serviceName, - 'calendars', - array( - 'methods' => array( - 'clear' => array( - 'path' => 'calendars/{calendarId}/clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'calendars', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->channels = new Postman_Google_Service_Calendar_Channels_Resource( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => 'channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->colors = new Postman_Google_Service_Calendar_Colors_Resource( - $this, - $this->serviceName, - 'colors', - array( - 'methods' => array( - 'get' => array( - 'path' => 'colors', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->events = new Postman_Google_Service_Calendar_Events_Resource( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'import' => array( - 'path' => 'calendars/{calendarId}/events/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'calendars/{calendarId}/events', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'instances' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timeMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'originalStart' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'calendars/{calendarId}/events', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showHiddenInvitations' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'iCalUID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'singleEvents' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timeMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'privateExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sharedExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'move' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}/move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destination' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'quickAdd' => array( - 'path' => 'calendars/{calendarId}/events/quickAdd', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'text' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'watch' => array( - 'path' => 'calendars/{calendarId}/events/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showHiddenInvitations' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'iCalUID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'singleEvents' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timeMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'privateExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sharedExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->freebusy = new Postman_Google_Service_Calendar_Freebusy_Resource( - $this, - $this->serviceName, - 'freebusy', - array( - 'methods' => array( - 'query' => array( - 'path' => 'freeBusy', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->settings = new Postman_Google_Service_Calendar_Settings_Resource( - $this, - $this->serviceName, - 'settings', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/me/settings/{setting}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'setting' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/me/settings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'users/me/settings/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "acl" collection of methods. - * Typical usage is: - *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $acl = $calendarService->acl;
- *
- */
-class Postman_Google_Service_Calendar_Acl_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an access control rule. (acl.delete)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $ruleId ACL rule identifier.
- * @param array $optParams Optional parameters.
- */
- public function delete($calendarId, $ruleId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns an access control rule. (acl.get)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $ruleId ACL rule identifier.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_AclRule
- */
- public function get($calendarId, $ruleId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Calendar_AclRule");
- }
-
- /**
- * Creates an access control rule. (acl.insert)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_AclRule $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_AclRule
- */
- public function insert($calendarId, Postman_Google_Service_Calendar_AclRule $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Calendar_AclRule");
- }
-
- /**
- * Returns the rules in the access control list for the calendar. (acl.listAcl)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. All entries deleted since the previous list request will always be in
- * the result set and it is not allowed to set showDeleted to False. If the
- * syncToken expires, the server will respond with a 410 GONE response code and
- * the client should clear its storage and perform a full synchronization
- * without any syncToken. Learn more about incremental synchronization.
- * Optional. The default is to return all entries.
- * @opt_param int maxResults Maximum number of entries returned on one result
- * page. By default the value is 100 entries. The page size can never be larger
- * than 250 entries. Optional.
- * @opt_param bool showDeleted Whether to include deleted ACLs in the result.
- * Deleted ACLs are represented by role equal to "none". Deleted ACLs will
- * always be included if syncToken is provided. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_Acl
- */
- public function listAcl($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Calendar_Acl");
- }
-
- /**
- * Updates an access control rule. This method supports patch semantics.
- * (acl.patch)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $ruleId ACL rule identifier.
- * @param Postman_Google_AclRule $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_AclRule
- */
- public function patch($calendarId, $ruleId, Postman_Google_Service_Calendar_AclRule $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Calendar_AclRule");
- }
-
- /**
- * Updates an access control rule. (acl.update)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $ruleId ACL rule identifier.
- * @param Postman_Google_AclRule $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_AclRule
- */
- public function update($calendarId, $ruleId, Postman_Google_Service_Calendar_AclRule $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Calendar_AclRule");
- }
-
- /**
- * Watch for changes to ACL resources. (acl.watch)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. All entries deleted since the previous list request will always be in
- * the result set and it is not allowed to set showDeleted to False. If the
- * syncToken expires, the server will respond with a 410 GONE response code and
- * the client should clear its storage and perform a full synchronization
- * without any syncToken. Learn more about incremental synchronization.
- * Optional. The default is to return all entries.
- * @opt_param int maxResults Maximum number of entries returned on one result
- * page. By default the value is 100 entries. The page size can never be larger
- * than 250 entries. Optional.
- * @opt_param bool showDeleted Whether to include deleted ACLs in the result.
- * Deleted ACLs are represented by role equal to "none". Deleted ACLs will
- * always be included if syncToken is provided. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_Channel
- */
- public function watch($calendarId, Postman_Google_Service_Calendar_Channel $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Calendar_Channel");
- }
-}
-
-/**
- * The "calendarList" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $calendarList = $calendarService->calendarList;
- *
- */
-class Postman_Google_Service_Calendar_CalendarList_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an entry on the user's calendar list. (calendarList.delete)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- */
- public function delete($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns an entry on the user's calendar list. (calendarList.get)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_CalendarListEntry
- */
- public function get($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Calendar_CalendarListEntry");
- }
-
- /**
- * Adds an entry to the user's calendar list. (calendarList.insert)
- *
- * @param Postman_Google_CalendarListEntry $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool colorRgbFormat Whether to use the foregroundColor and
- * backgroundColor fields to write the calendar colors (RGB). If this feature is
- * used, the index-based colorId field will be set to the best matching option
- * automatically. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_CalendarListEntry
- */
- public function insert(Postman_Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Calendar_CalendarListEntry");
- }
-
- /**
- * Returns entries on the user's calendar list. (calendarList.listCalendarList)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. If only read-only fields such as calendar properties or ACLs have
- * changed, the entry won't be returned. All entries deleted and hidden since
- * the previous list request will always be in the result set and it is not
- * allowed to set showDeleted neither showHidden to False. To ensure client
- * state consistency minAccessRole query parameter cannot be specified together
- * with nextSyncToken. If the syncToken expires, the server will respond with a
- * 410 GONE response code and the client should clear its storage and perform a
- * full synchronization without any syncToken. Learn more about incremental
- * synchronization. Optional. The default is to return all entries.
- * @opt_param bool showDeleted Whether to include deleted calendar list entries
- * in the result. Optional. The default is False.
- * @opt_param string minAccessRole The minimum access role for the user in the
- * returned entires. Optional. The default is no restriction.
- * @opt_param int maxResults Maximum number of entries returned on one result
- * page. By default the value is 100 entries. The page size can never be larger
- * than 250 entries. Optional.
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param bool showHidden Whether to show hidden entries. Optional. The
- * default is False.
- * @return Postman_Google_Service_Calendar_CalendarList
- */
- public function listCalendarList($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Calendar_CalendarList");
- }
-
- /**
- * Updates an entry on the user's calendar list. This method supports patch
- * semantics. (calendarList.patch)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_CalendarListEntry $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool colorRgbFormat Whether to use the foregroundColor and
- * backgroundColor fields to write the calendar colors (RGB). If this feature is
- * used, the index-based colorId field will be set to the best matching option
- * automatically. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_CalendarListEntry
- */
- public function patch($calendarId, Postman_Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Calendar_CalendarListEntry");
- }
-
- /**
- * Updates an entry on the user's calendar list. (calendarList.update)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_CalendarListEntry $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool colorRgbFormat Whether to use the foregroundColor and
- * backgroundColor fields to write the calendar colors (RGB). If this feature is
- * used, the index-based colorId field will be set to the best matching option
- * automatically. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_CalendarListEntry
- */
- public function update($calendarId, Postman_Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Calendar_CalendarListEntry");
- }
-
- /**
- * Watch for changes to CalendarList resources. (calendarList.watch)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. If only read-only fields such as calendar properties or ACLs have
- * changed, the entry won't be returned. All entries deleted and hidden since
- * the previous list request will always be in the result set and it is not
- * allowed to set showDeleted neither showHidden to False. To ensure client
- * state consistency minAccessRole query parameter cannot be specified together
- * with nextSyncToken. If the syncToken expires, the server will respond with a
- * 410 GONE response code and the client should clear its storage and perform a
- * full synchronization without any syncToken. Learn more about incremental
- * synchronization. Optional. The default is to return all entries.
- * @opt_param bool showDeleted Whether to include deleted calendar list entries
- * in the result. Optional. The default is False.
- * @opt_param string minAccessRole The minimum access role for the user in the
- * returned entires. Optional. The default is no restriction.
- * @opt_param int maxResults Maximum number of entries returned on one result
- * page. By default the value is 100 entries. The page size can never be larger
- * than 250 entries. Optional.
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param bool showHidden Whether to show hidden entries. Optional. The
- * default is False.
- * @return Postman_Google_Service_Calendar_Channel
- */
- public function watch(Postman_Google_Service_Calendar_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Calendar_Channel");
- }
-}
-
-/**
- * The "calendars" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $calendars = $calendarService->calendars;
- *
- */
-class Postman_Google_Service_Calendar_Calendars_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Clears a primary calendar. This operation deletes all data associated with
- * the primary calendar of an account and cannot be undone. (calendars.clear)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- */
- public function clear($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('clear', array($params));
- }
-
- /**
- * Deletes a secondary calendar. (calendars.delete)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- */
- public function delete($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns metadata for a calendar. (calendars.get)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Calendar
- */
- public function get($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Calendar_Calendar");
- }
-
- /**
- * Creates a secondary calendar. (calendars.insert)
- *
- * @param Postman_Google_Calendar $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Calendar
- */
- public function insert(Postman_Google_Service_Calendar_Calendar $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Calendar_Calendar");
- }
-
- /**
- * Updates metadata for a calendar. This method supports patch semantics.
- * (calendars.patch)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_Calendar $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Calendar
- */
- public function patch($calendarId, Postman_Google_Service_Calendar_Calendar $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Calendar_Calendar");
- }
-
- /**
- * Updates metadata for a calendar. (calendars.update)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_Calendar $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Calendar
- */
- public function update($calendarId, Postman_Google_Service_Calendar_Calendar $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Calendar_Calendar");
- }
-}
-
-/**
- * The "channels" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $channels = $calendarService->channels;
- *
- */
-class Postman_Google_Service_Calendar_Channels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Stop watching resources through this channel (channels.stop)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- */
- public function stop(Postman_Google_Service_Calendar_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('stop', array($params));
- }
-}
-
-/**
- * The "colors" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $colors = $calendarService->colors;
- *
- */
-class Postman_Google_Service_Calendar_Colors_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the color definitions for calendars and events. (colors.get)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Colors
- */
- public function get($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Calendar_Colors");
- }
-}
-
-/**
- * The "events" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $events = $calendarService->events;
- *
- */
-class Postman_Google_Service_Calendar_Events_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an event. (events.delete)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $eventId Event identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool sendNotifications Whether to send notifications about the
- * deletion of the event. Optional. The default is False.
- */
- public function delete($calendarId, $eventId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'eventId' => $eventId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns an event. (events.get)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $eventId Event identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string timeZone Time zone used in the response. Optional. The
- * default is the time zone of the calendar.
- * @opt_param bool alwaysIncludeEmail Whether to always include a value in the
- * email field for the organizer, creator and attendees, even if no real email
- * is available (i.e. a generated, non-working value will be provided). The use
- * of this option is discouraged and should only be used by clients which cannot
- * handle the absence of an email address value in the mentioned places.
- * Optional. The default is False.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function get($calendarId, $eventId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'eventId' => $eventId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Imports an event. This operation is used to add a private copy of an existing
- * event to a calendar. (events.import)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_Event $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function import($calendarId, Postman_Google_Service_Calendar_Event $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('import', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Creates an event. (events.insert)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_Event $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool sendNotifications Whether to send notifications about the
- * creation of the new event. Optional. The default is False.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function insert($calendarId, Postman_Google_Service_Calendar_Event $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Returns instances of the specified recurring event. (events.instances)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $eventId Recurring event identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool showDeleted Whether to include deleted events (with status
- * equals "cancelled") in the result. Cancelled instances of recurring events
- * will still be included if singleEvents is False. Optional. The default is
- * False.
- * @opt_param string timeMax Upper bound (exclusive) for an event's start time
- * to filter by. Optional. The default is not to filter by start time.
- * @opt_param bool alwaysIncludeEmail Whether to always include a value in the
- * email field for the organizer, creator and attendees, even if no real email
- * is available (i.e. a generated, non-working value will be provided). The use
- * of this option is discouraged and should only be used by clients which cannot
- * handle the absence of an email address value in the mentioned places.
- * Optional. The default is False.
- * @opt_param int maxResults Maximum number of events returned on one result
- * page. By default the value is 250 events. The page size can never be larger
- * than 2500 events. Optional.
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param string timeMin Lower bound (inclusive) for an event's end time to
- * filter by. Optional. The default is not to filter by end time.
- * @opt_param string timeZone Time zone used in the response. Optional. The
- * default is the time zone of the calendar.
- * @opt_param string originalStart The original start time of the instance in
- * the result. Optional.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Events
- */
- public function instances($calendarId, $eventId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'eventId' => $eventId);
- $params = array_merge($params, $optParams);
- return $this->call('instances', array($params), "Postman_Google_Service_Calendar_Events");
- }
-
- /**
- * Returns events on the specified calendar. (events.listEvents)
- *
- * @param string $calendarId Calendar identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy The order of the events returned in the result.
- * Optional. The default is an unspecified, stable order.
- * @opt_param bool showHiddenInvitations Whether to include hidden invitations
- * in the result. Optional. The default is False.
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. All events deleted since the previous list request will always be in
- * the result set and it is not allowed to set showDeleted to False. There are
- * several query parameters that cannot be specified together with nextSyncToken
- * to ensure consistency of the client state.
- *
- * These are: - iCalUID - orderBy - privateExtendedProperty - q -
- * sharedExtendedProperty - timeMin - timeMax - updatedMin If the syncToken
- * expires, the server will respond with a 410 GONE response code and the client
- * should clear its storage and perform a full synchronization without any
- * syncToken. Learn more about incremental synchronization. Optional. The
- * default is to return all entries.
- * @opt_param bool showDeleted Whether to include deleted events (with status
- * equals "cancelled") in the result. Cancelled instances of recurring events
- * (but not the underlying recurring event) will still be included if
- * showDeleted and singleEvents are both False. If showDeleted and singleEvents
- * are both True, only single instances of deleted events (but not the
- * underlying recurring events) are returned. Optional. The default is False.
- * @opt_param string iCalUID Specifies event ID in the iCalendar format to be
- * included in the response. Optional.
- * @opt_param string updatedMin Lower bound for an event's last modification
- * time (as a RFC 3339 timestamp) to filter by. When specified, entries deleted
- * since this time will always be included regardless of showDeleted. Optional.
- * The default is not to filter by last modification time.
- * @opt_param bool singleEvents Whether to expand recurring events into
- * instances and only return single one-off events and instances of recurring
- * events, but not the underlying recurring events themselves. Optional. The
- * default is False.
- * @opt_param string timeMax Upper bound (exclusive) for an event's start time
- * to filter by. Optional. The default is not to filter by start time.
- * @opt_param bool alwaysIncludeEmail Whether to always include a value in the
- * email field for the organizer, creator and attendees, even if no real email
- * is available (i.e. a generated, non-working value will be provided). The use
- * of this option is discouraged and should only be used by clients which cannot
- * handle the absence of an email address value in the mentioned places.
- * Optional. The default is False.
- * @opt_param int maxResults Maximum number of events returned on one result
- * page. By default the value is 250 events. The page size can never be larger
- * than 2500 events. Optional.
- * @opt_param string q Free text search terms to find events that match these
- * terms in any field, except for extended properties. Optional.
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param string timeMin Lower bound (inclusive) for an event's end time to
- * filter by. Optional. The default is not to filter by end time.
- * @opt_param string timeZone Time zone used in the response. Optional. The
- * default is the time zone of the calendar.
- * @opt_param string privateExtendedProperty Extended properties constraint
- * specified as propertyName=value. Matches only private properties. This
- * parameter might be repeated multiple times to return events that match all
- * given constraints.
- * @opt_param string sharedExtendedProperty Extended properties constraint
- * specified as propertyName=value. Matches only shared properties. This
- * parameter might be repeated multiple times to return events that match all
- * given constraints.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Events
- */
- public function listEvents($calendarId, $optParams = array())
- {
- $params = array('calendarId' => $calendarId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Calendar_Events");
- }
-
- /**
- * Moves an event to another calendar, i.e. changes an event's organizer.
- * (events.move)
- *
- * @param string $calendarId Calendar identifier of the source calendar where
- * the event currently is on.
- * @param string $eventId Event identifier.
- * @param string $destination Calendar identifier of the target calendar where
- * the event is to be moved to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool sendNotifications Whether to send notifications about the
- * change of the event's organizer. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function move($calendarId, $eventId, $destination, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'destination' => $destination);
- $params = array_merge($params, $optParams);
- return $this->call('move', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Updates an event. This method supports patch semantics. (events.patch)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $eventId Event identifier.
- * @param Postman_Google_Event $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool sendNotifications Whether to send notifications about the
- * event update (e.g. attendee's responses, title changes, etc.). Optional. The
- * default is False.
- * @opt_param bool alwaysIncludeEmail Whether to always include a value in the
- * email field for the organizer, creator and attendees, even if no real email
- * is available (i.e. a generated, non-working value will be provided). The use
- * of this option is discouraged and should only be used by clients which cannot
- * handle the absence of an email address value in the mentioned places.
- * Optional. The default is False.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function patch($calendarId, $eventId, Postman_Google_Service_Calendar_Event $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Creates an event based on a simple text string. (events.quickAdd)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $text The text describing the event to be created.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool sendNotifications Whether to send notifications about the
- * creation of the event. Optional. The default is False.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function quickAdd($calendarId, $text, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'text' => $text);
- $params = array_merge($params, $optParams);
- return $this->call('quickAdd', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Updates an event. (events.update)
- *
- * @param string $calendarId Calendar identifier.
- * @param string $eventId Event identifier.
- * @param Postman_Google_Event $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool sendNotifications Whether to send notifications about the
- * event update (e.g. attendee's responses, title changes, etc.). Optional. The
- * default is False.
- * @opt_param bool alwaysIncludeEmail Whether to always include a value in the
- * email field for the organizer, creator and attendees, even if no real email
- * is available (i.e. a generated, non-working value will be provided). The use
- * of this option is discouraged and should only be used by clients which cannot
- * handle the absence of an email address value in the mentioned places.
- * Optional. The default is False.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Event
- */
- public function update($calendarId, $eventId, Postman_Google_Service_Calendar_Event $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Calendar_Event");
- }
-
- /**
- * Watch for changes to Events resources. (events.watch)
- *
- * @param string $calendarId Calendar identifier.
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy The order of the events returned in the result.
- * Optional. The default is an unspecified, stable order.
- * @opt_param bool showHiddenInvitations Whether to include hidden invitations
- * in the result. Optional. The default is False.
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. All events deleted since the previous list request will always be in
- * the result set and it is not allowed to set showDeleted to False. There are
- * several query parameters that cannot be specified together with nextSyncToken
- * to ensure consistency of the client state.
- *
- * These are: - iCalUID - orderBy - privateExtendedProperty - q -
- * sharedExtendedProperty - timeMin - timeMax - updatedMin If the syncToken
- * expires, the server will respond with a 410 GONE response code and the client
- * should clear its storage and perform a full synchronization without any
- * syncToken. Learn more about incremental synchronization. Optional. The
- * default is to return all entries.
- * @opt_param bool showDeleted Whether to include deleted events (with status
- * equals "cancelled") in the result. Cancelled instances of recurring events
- * (but not the underlying recurring event) will still be included if
- * showDeleted and singleEvents are both False. If showDeleted and singleEvents
- * are both True, only single instances of deleted events (but not the
- * underlying recurring events) are returned. Optional. The default is False.
- * @opt_param string iCalUID Specifies event ID in the iCalendar format to be
- * included in the response. Optional.
- * @opt_param string updatedMin Lower bound for an event's last modification
- * time (as a RFC 3339 timestamp) to filter by. When specified, entries deleted
- * since this time will always be included regardless of showDeleted. Optional.
- * The default is not to filter by last modification time.
- * @opt_param bool singleEvents Whether to expand recurring events into
- * instances and only return single one-off events and instances of recurring
- * events, but not the underlying recurring events themselves. Optional. The
- * default is False.
- * @opt_param string timeMax Upper bound (exclusive) for an event's start time
- * to filter by. Optional. The default is not to filter by start time.
- * @opt_param bool alwaysIncludeEmail Whether to always include a value in the
- * email field for the organizer, creator and attendees, even if no real email
- * is available (i.e. a generated, non-working value will be provided). The use
- * of this option is discouraged and should only be used by clients which cannot
- * handle the absence of an email address value in the mentioned places.
- * Optional. The default is False.
- * @opt_param int maxResults Maximum number of events returned on one result
- * page. By default the value is 250 events. The page size can never be larger
- * than 2500 events. Optional.
- * @opt_param string q Free text search terms to find events that match these
- * terms in any field, except for extended properties. Optional.
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param string timeMin Lower bound (inclusive) for an event's end time to
- * filter by. Optional. The default is not to filter by end time.
- * @opt_param string timeZone Time zone used in the response. Optional. The
- * default is the time zone of the calendar.
- * @opt_param string privateExtendedProperty Extended properties constraint
- * specified as propertyName=value. Matches only private properties. This
- * parameter might be repeated multiple times to return events that match all
- * given constraints.
- * @opt_param string sharedExtendedProperty Extended properties constraint
- * specified as propertyName=value. Matches only shared properties. This
- * parameter might be repeated multiple times to return events that match all
- * given constraints.
- * @opt_param int maxAttendees The maximum number of attendees to include in the
- * response. If there are more than the specified number of attendees, only the
- * participant is returned. Optional.
- * @return Postman_Google_Service_Calendar_Channel
- */
- public function watch($calendarId, Postman_Google_Service_Calendar_Channel $postBody, $optParams = array())
- {
- $params = array('calendarId' => $calendarId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Calendar_Channel");
- }
-}
-
-/**
- * The "freebusy" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $freebusy = $calendarService->freebusy;
- *
- */
-class Postman_Google_Service_Calendar_Freebusy_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns free/busy information for a set of calendars. (freebusy.query)
- *
- * @param Postman_Google_FreeBusyRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_FreeBusyResponse
- */
- public function query(Postman_Google_Service_Calendar_FreeBusyRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('query', array($params), "Postman_Google_Service_Calendar_FreeBusyResponse");
- }
-}
-
-/**
- * The "settings" collection of methods.
- * Typical usage is:
- *
- * $calendarService = new Postman_Google_Service_Calendar(...);
- * $settings = $calendarService->settings;
- *
- */
-class Postman_Google_Service_Calendar_Settings_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a single user setting. (settings.get)
- *
- * @param string $setting The id of the user setting.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Calendar_Setting
- */
- public function get($setting, $optParams = array())
- {
- $params = array('setting' => $setting);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Calendar_Setting");
- }
-
- /**
- * Returns all user settings for the authenticated user. (settings.listSettings)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param int maxResults Maximum number of entries returned on one result
- * page. By default the value is 100 entries. The page size can never be larger
- * than 250 entries. Optional.
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. If the syncToken expires, the server will respond with a 410 GONE
- * response code and the client should clear its storage and perform a full
- * synchronization without any syncToken. Learn more about incremental
- * synchronization. Optional. The default is to return all entries.
- * @return Postman_Google_Service_Calendar_Settings
- */
- public function listSettings($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Calendar_Settings");
- }
-
- /**
- * Watch for changes to Settings resources. (settings.watch)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token specifying which result page to return.
- * Optional.
- * @opt_param int maxResults Maximum number of entries returned on one result
- * page. By default the value is 100 entries. The page size can never be larger
- * than 250 entries. Optional.
- * @opt_param string syncToken Token obtained from the nextSyncToken field
- * returned on the last page of results from the previous list request. It makes
- * the result of this list request contain only entries that have changed since
- * then. If the syncToken expires, the server will respond with a 410 GONE
- * response code and the client should clear its storage and perform a full
- * synchronization without any syncToken. Learn more about incremental
- * synchronization. Optional. The default is to return all entries.
- * @return Postman_Google_Service_Calendar_Channel
- */
- public function watch(Postman_Google_Service_Calendar_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Calendar_Channel");
- }
-}
-
-
-
-
-class Postman_Google_Service_Calendar_Acl extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Calendar_AclRule';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $nextSyncToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setNextSyncToken($nextSyncToken)
- {
- $this->nextSyncToken = $nextSyncToken;
- }
- public function getNextSyncToken()
- {
- return $this->nextSyncToken;
- }
-}
-
-class Postman_Google_Service_Calendar_AclRule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- public $role;
- protected $scopeType = 'Postman_Google_Service_Calendar_AclRuleScope';
- protected $scopeDataType = '';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setScope(Postman_Google_Service_Calendar_AclRuleScope $scope)
- {
- $this->scope = $scope;
- }
- public function getScope()
- {
- return $this->scope;
- }
-}
-
-class Postman_Google_Service_Calendar_AclRuleScope extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Calendar_Calendar extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $etag;
- public $id;
- public $kind;
- public $location;
- public $summary;
- public $timeZone;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setSummary($summary)
- {
- $this->summary = $summary;
- }
- public function getSummary()
- {
- return $this->summary;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
-}
-
-class Postman_Google_Service_Calendar_CalendarList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Calendar_CalendarListEntry';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $nextSyncToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setNextSyncToken($nextSyncToken)
- {
- $this->nextSyncToken = $nextSyncToken;
- }
- public function getNextSyncToken()
- {
- return $this->nextSyncToken;
- }
-}
-
-class Postman_Google_Service_Calendar_CalendarListEntry extends Postman_Google_Collection
-{
- protected $collection_key = 'defaultReminders';
- protected $internal_gapi_mappings = array(
- );
- public $accessRole;
- public $backgroundColor;
- public $colorId;
- protected $defaultRemindersType = 'Postman_Google_Service_Calendar_EventReminder';
- protected $defaultRemindersDataType = 'array';
- public $deleted;
- public $description;
- public $etag;
- public $foregroundColor;
- public $hidden;
- public $id;
- public $kind;
- public $location;
- protected $notificationSettingsType = 'Postman_Google_Service_Calendar_CalendarListEntryNotificationSettings';
- protected $notificationSettingsDataType = '';
- public $primary;
- public $selected;
- public $summary;
- public $summaryOverride;
- public $timeZone;
-
-
- public function setAccessRole($accessRole)
- {
- $this->accessRole = $accessRole;
- }
- public function getAccessRole()
- {
- return $this->accessRole;
- }
- public function setBackgroundColor($backgroundColor)
- {
- $this->backgroundColor = $backgroundColor;
- }
- public function getBackgroundColor()
- {
- return $this->backgroundColor;
- }
- public function setColorId($colorId)
- {
- $this->colorId = $colorId;
- }
- public function getColorId()
- {
- return $this->colorId;
- }
- public function setDefaultReminders($defaultReminders)
- {
- $this->defaultReminders = $defaultReminders;
- }
- public function getDefaultReminders()
- {
- return $this->defaultReminders;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setForegroundColor($foregroundColor)
- {
- $this->foregroundColor = $foregroundColor;
- }
- public function getForegroundColor()
- {
- return $this->foregroundColor;
- }
- public function setHidden($hidden)
- {
- $this->hidden = $hidden;
- }
- public function getHidden()
- {
- return $this->hidden;
- }
- 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 setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setNotificationSettings(Postman_Google_Service_Calendar_CalendarListEntryNotificationSettings $notificationSettings)
- {
- $this->notificationSettings = $notificationSettings;
- }
- public function getNotificationSettings()
- {
- return $this->notificationSettings;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setSelected($selected)
- {
- $this->selected = $selected;
- }
- public function getSelected()
- {
- return $this->selected;
- }
- public function setSummary($summary)
- {
- $this->summary = $summary;
- }
- public function getSummary()
- {
- return $this->summary;
- }
- public function setSummaryOverride($summaryOverride)
- {
- $this->summaryOverride = $summaryOverride;
- }
- public function getSummaryOverride()
- {
- return $this->summaryOverride;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
-}
-
-class Postman_Google_Service_Calendar_CalendarListEntryNotificationSettings extends Postman_Google_Collection
-{
- protected $collection_key = 'notifications';
- protected $internal_gapi_mappings = array(
- );
- protected $notificationsType = 'Postman_Google_Service_Calendar_CalendarNotification';
- protected $notificationsDataType = 'array';
-
-
- public function setNotifications($notifications)
- {
- $this->notifications = $notifications;
- }
- public function getNotifications()
- {
- return $this->notifications;
- }
-}
-
-class Postman_Google_Service_Calendar_CalendarNotification extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $method;
- public $type;
-
-
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Calendar_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $expiration;
- public $id;
- public $kind;
- public $params;
- public $payload;
- public $resourceId;
- public $resourceUri;
- public $token;
- public $type;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setExpiration($expiration)
- {
- $this->expiration = $expiration;
- }
- public function getExpiration()
- {
- return $this->expiration;
- }
- 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 setParams($params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setResourceId($resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setResourceUri($resourceUri)
- {
- $this->resourceUri = $resourceUri;
- }
- public function getResourceUri()
- {
- return $this->resourceUri;
- }
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Calendar_ChannelParams extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_ColorDefinition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $background;
- public $foreground;
-
-
- public function setBackground($background)
- {
- $this->background = $background;
- }
- public function getBackground()
- {
- return $this->background;
- }
- public function setForeground($foreground)
- {
- $this->foreground = $foreground;
- }
- public function getForeground()
- {
- return $this->foreground;
- }
-}
-
-class Postman_Google_Service_Calendar_Colors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $calendarType = 'Postman_Google_Service_Calendar_ColorDefinition';
- protected $calendarDataType = 'map';
- protected $eventType = 'Postman_Google_Service_Calendar_ColorDefinition';
- protected $eventDataType = 'map';
- public $kind;
- public $updated;
-
-
- public function setCalendar($calendar)
- {
- $this->calendar = $calendar;
- }
- public function getCalendar()
- {
- return $this->calendar;
- }
- public function setEvent($event)
- {
- $this->event = $event;
- }
- public function getEvent()
- {
- return $this->event;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Calendar_ColorsCalendar extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_ColorsEvent extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_Error extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $domain;
- public $reason;
-
-
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_Calendar_Event extends Postman_Google_Collection
-{
- protected $collection_key = 'recurrence';
- protected $internal_gapi_mappings = array(
- );
- public $anyoneCanAddSelf;
- protected $attendeesType = 'Postman_Google_Service_Calendar_EventAttendee';
- protected $attendeesDataType = 'array';
- public $attendeesOmitted;
- public $colorId;
- public $created;
- protected $creatorType = 'Postman_Google_Service_Calendar_EventCreator';
- protected $creatorDataType = '';
- public $description;
- protected $endType = 'Postman_Google_Service_Calendar_EventDateTime';
- protected $endDataType = '';
- public $endTimeUnspecified;
- public $etag;
- protected $extendedPropertiesType = 'Postman_Google_Service_Calendar_EventExtendedProperties';
- protected $extendedPropertiesDataType = '';
- protected $gadgetType = 'Postman_Google_Service_Calendar_EventGadget';
- protected $gadgetDataType = '';
- public $guestsCanInviteOthers;
- public $guestsCanModify;
- public $guestsCanSeeOtherGuests;
- public $hangoutLink;
- public $htmlLink;
- public $iCalUID;
- public $id;
- public $kind;
- public $location;
- public $locked;
- protected $organizerType = 'Postman_Google_Service_Calendar_EventOrganizer';
- protected $organizerDataType = '';
- protected $originalStartTimeType = 'Postman_Google_Service_Calendar_EventDateTime';
- protected $originalStartTimeDataType = '';
- public $privateCopy;
- public $recurrence;
- public $recurringEventId;
- protected $remindersType = 'Postman_Google_Service_Calendar_EventReminders';
- protected $remindersDataType = '';
- public $sequence;
- protected $sourceType = 'Postman_Google_Service_Calendar_EventSource';
- protected $sourceDataType = '';
- protected $startType = 'Postman_Google_Service_Calendar_EventDateTime';
- protected $startDataType = '';
- public $status;
- public $summary;
- public $transparency;
- public $updated;
- public $visibility;
-
-
- public function setAnyoneCanAddSelf($anyoneCanAddSelf)
- {
- $this->anyoneCanAddSelf = $anyoneCanAddSelf;
- }
- public function getAnyoneCanAddSelf()
- {
- return $this->anyoneCanAddSelf;
- }
- public function setAttendees($attendees)
- {
- $this->attendees = $attendees;
- }
- public function getAttendees()
- {
- return $this->attendees;
- }
- public function setAttendeesOmitted($attendeesOmitted)
- {
- $this->attendeesOmitted = $attendeesOmitted;
- }
- public function getAttendeesOmitted()
- {
- return $this->attendeesOmitted;
- }
- public function setColorId($colorId)
- {
- $this->colorId = $colorId;
- }
- public function getColorId()
- {
- return $this->colorId;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setCreator(Postman_Google_Service_Calendar_EventCreator $creator)
- {
- $this->creator = $creator;
- }
- public function getCreator()
- {
- return $this->creator;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEnd(Postman_Google_Service_Calendar_EventDateTime $end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setEndTimeUnspecified($endTimeUnspecified)
- {
- $this->endTimeUnspecified = $endTimeUnspecified;
- }
- public function getEndTimeUnspecified()
- {
- return $this->endTimeUnspecified;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExtendedProperties(Postman_Google_Service_Calendar_EventExtendedProperties $extendedProperties)
- {
- $this->extendedProperties = $extendedProperties;
- }
- public function getExtendedProperties()
- {
- return $this->extendedProperties;
- }
- public function setGadget(Postman_Google_Service_Calendar_EventGadget $gadget)
- {
- $this->gadget = $gadget;
- }
- public function getGadget()
- {
- return $this->gadget;
- }
- public function setGuestsCanInviteOthers($guestsCanInviteOthers)
- {
- $this->guestsCanInviteOthers = $guestsCanInviteOthers;
- }
- public function getGuestsCanInviteOthers()
- {
- return $this->guestsCanInviteOthers;
- }
- public function setGuestsCanModify($guestsCanModify)
- {
- $this->guestsCanModify = $guestsCanModify;
- }
- public function getGuestsCanModify()
- {
- return $this->guestsCanModify;
- }
- public function setGuestsCanSeeOtherGuests($guestsCanSeeOtherGuests)
- {
- $this->guestsCanSeeOtherGuests = $guestsCanSeeOtherGuests;
- }
- public function getGuestsCanSeeOtherGuests()
- {
- return $this->guestsCanSeeOtherGuests;
- }
- public function setHangoutLink($hangoutLink)
- {
- $this->hangoutLink = $hangoutLink;
- }
- public function getHangoutLink()
- {
- return $this->hangoutLink;
- }
- public function setHtmlLink($htmlLink)
- {
- $this->htmlLink = $htmlLink;
- }
- public function getHtmlLink()
- {
- return $this->htmlLink;
- }
- public function setICalUID($iCalUID)
- {
- $this->iCalUID = $iCalUID;
- }
- public function getICalUID()
- {
- return $this->iCalUID;
- }
- 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 setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setLocked($locked)
- {
- $this->locked = $locked;
- }
- public function getLocked()
- {
- return $this->locked;
- }
- public function setOrganizer(Postman_Google_Service_Calendar_EventOrganizer $organizer)
- {
- $this->organizer = $organizer;
- }
- public function getOrganizer()
- {
- return $this->organizer;
- }
- public function setOriginalStartTime(Postman_Google_Service_Calendar_EventDateTime $originalStartTime)
- {
- $this->originalStartTime = $originalStartTime;
- }
- public function getOriginalStartTime()
- {
- return $this->originalStartTime;
- }
- public function setPrivateCopy($privateCopy)
- {
- $this->privateCopy = $privateCopy;
- }
- public function getPrivateCopy()
- {
- return $this->privateCopy;
- }
- public function setRecurrence($recurrence)
- {
- $this->recurrence = $recurrence;
- }
- public function getRecurrence()
- {
- return $this->recurrence;
- }
- public function setRecurringEventId($recurringEventId)
- {
- $this->recurringEventId = $recurringEventId;
- }
- public function getRecurringEventId()
- {
- return $this->recurringEventId;
- }
- public function setReminders(Postman_Google_Service_Calendar_EventReminders $reminders)
- {
- $this->reminders = $reminders;
- }
- public function getReminders()
- {
- return $this->reminders;
- }
- public function setSequence($sequence)
- {
- $this->sequence = $sequence;
- }
- public function getSequence()
- {
- return $this->sequence;
- }
- public function setSource(Postman_Google_Service_Calendar_EventSource $source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setStart(Postman_Google_Service_Calendar_EventDateTime $start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setSummary($summary)
- {
- $this->summary = $summary;
- }
- public function getSummary()
- {
- return $this->summary;
- }
- public function setTransparency($transparency)
- {
- $this->transparency = $transparency;
- }
- public function getTransparency()
- {
- return $this->transparency;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_Calendar_EventAttachment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $title;
-
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Calendar_EventAttendee extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $additionalGuests;
- public $comment;
- public $displayName;
- public $email;
- public $id;
- public $optional;
- public $organizer;
- public $resource;
- public $responseStatus;
- public $self;
-
-
- public function setAdditionalGuests($additionalGuests)
- {
- $this->additionalGuests = $additionalGuests;
- }
- public function getAdditionalGuests()
- {
- return $this->additionalGuests;
- }
- public function setComment($comment)
- {
- $this->comment = $comment;
- }
- public function getComment()
- {
- return $this->comment;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setOptional($optional)
- {
- $this->optional = $optional;
- }
- public function getOptional()
- {
- return $this->optional;
- }
- public function setOrganizer($organizer)
- {
- $this->organizer = $organizer;
- }
- public function getOrganizer()
- {
- return $this->organizer;
- }
- public function setResource($resource)
- {
- $this->resource = $resource;
- }
- public function getResource()
- {
- return $this->resource;
- }
- public function setResponseStatus($responseStatus)
- {
- $this->responseStatus = $responseStatus;
- }
- public function getResponseStatus()
- {
- return $this->responseStatus;
- }
- public function setSelf($self)
- {
- $this->self = $self;
- }
- public function getSelf()
- {
- return $this->self;
- }
-}
-
-class Postman_Google_Service_Calendar_EventCreator extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $email;
- public $id;
- public $self;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setSelf($self)
- {
- $this->self = $self;
- }
- public function getSelf()
- {
- return $this->self;
- }
-}
-
-class Postman_Google_Service_Calendar_EventDateTime extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $date;
- public $dateTime;
- public $timeZone;
-
-
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setDateTime($dateTime)
- {
- $this->dateTime = $dateTime;
- }
- public function getDateTime()
- {
- return $this->dateTime;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
-}
-
-class Postman_Google_Service_Calendar_EventExtendedProperties extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $private;
- public $shared;
-
-
- public function setPrivate($private)
- {
- $this->private = $private;
- }
- public function getPrivate()
- {
- return $this->private;
- }
- public function setShared($shared)
- {
- $this->shared = $shared;
- }
- public function getShared()
- {
- return $this->shared;
- }
-}
-
-class Postman_Google_Service_Calendar_EventExtendedPropertiesPrivate extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_EventExtendedPropertiesShared extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_EventGadget extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $display;
- public $height;
- public $iconLink;
- public $link;
- public $preferences;
- public $title;
- public $type;
- public $width;
-
-
- public function setDisplay($display)
- {
- $this->display = $display;
- }
- public function getDisplay()
- {
- return $this->display;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setIconLink($iconLink)
- {
- $this->iconLink = $iconLink;
- }
- public function getIconLink()
- {
- return $this->iconLink;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setPreferences($preferences)
- {
- $this->preferences = $preferences;
- }
- public function getPreferences()
- {
- return $this->preferences;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Calendar_EventGadgetPreferences extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_EventOrganizer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $email;
- public $id;
- public $self;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setSelf($self)
- {
- $this->self = $self;
- }
- public function getSelf()
- {
- return $this->self;
- }
-}
-
-class Postman_Google_Service_Calendar_EventReminder extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $method;
- public $minutes;
-
-
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
- public function setMinutes($minutes)
- {
- $this->minutes = $minutes;
- }
- public function getMinutes()
- {
- return $this->minutes;
- }
-}
-
-class Postman_Google_Service_Calendar_EventReminders extends Postman_Google_Collection
-{
- protected $collection_key = 'overrides';
- protected $internal_gapi_mappings = array(
- );
- protected $overridesType = 'Postman_Google_Service_Calendar_EventReminder';
- protected $overridesDataType = 'array';
- public $useDefault;
-
-
- public function setOverrides($overrides)
- {
- $this->overrides = $overrides;
- }
- public function getOverrides()
- {
- return $this->overrides;
- }
- public function setUseDefault($useDefault)
- {
- $this->useDefault = $useDefault;
- }
- public function getUseDefault()
- {
- return $this->useDefault;
- }
-}
-
-class Postman_Google_Service_Calendar_EventSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $title;
- public $url;
-
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Calendar_Events extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $accessRole;
- protected $defaultRemindersType = 'Postman_Google_Service_Calendar_EventReminder';
- protected $defaultRemindersDataType = 'array';
- public $description;
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Calendar_Event';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $nextSyncToken;
- public $summary;
- public $timeZone;
- public $updated;
-
-
- public function setAccessRole($accessRole)
- {
- $this->accessRole = $accessRole;
- }
- public function getAccessRole()
- {
- return $this->accessRole;
- }
- public function setDefaultReminders($defaultReminders)
- {
- $this->defaultReminders = $defaultReminders;
- }
- public function getDefaultReminders()
- {
- return $this->defaultReminders;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setNextSyncToken($nextSyncToken)
- {
- $this->nextSyncToken = $nextSyncToken;
- }
- public function getNextSyncToken()
- {
- return $this->nextSyncToken;
- }
- public function setSummary($summary)
- {
- $this->summary = $summary;
- }
- public function getSummary()
- {
- return $this->summary;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Calendar_FreeBusyCalendar extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $busyType = 'Postman_Google_Service_Calendar_TimePeriod';
- protected $busyDataType = 'array';
- protected $errorsType = 'Postman_Google_Service_Calendar_Error';
- protected $errorsDataType = 'array';
-
-
- public function setBusy($busy)
- {
- $this->busy = $busy;
- }
- public function getBusy()
- {
- return $this->busy;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_Calendar_FreeBusyGroup extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- public $calendars;
- protected $errorsType = 'Postman_Google_Service_Calendar_Error';
- protected $errorsDataType = 'array';
-
-
- public function setCalendars($calendars)
- {
- $this->calendars = $calendars;
- }
- public function getCalendars()
- {
- return $this->calendars;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_Calendar_FreeBusyRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $calendarExpansionMax;
- public $groupExpansionMax;
- protected $itemsType = 'Postman_Google_Service_Calendar_FreeBusyRequestItem';
- protected $itemsDataType = 'array';
- public $timeMax;
- public $timeMin;
- public $timeZone;
-
-
- public function setCalendarExpansionMax($calendarExpansionMax)
- {
- $this->calendarExpansionMax = $calendarExpansionMax;
- }
- public function getCalendarExpansionMax()
- {
- return $this->calendarExpansionMax;
- }
- public function setGroupExpansionMax($groupExpansionMax)
- {
- $this->groupExpansionMax = $groupExpansionMax;
- }
- public function getGroupExpansionMax()
- {
- return $this->groupExpansionMax;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setTimeMax($timeMax)
- {
- $this->timeMax = $timeMax;
- }
- public function getTimeMax()
- {
- return $this->timeMax;
- }
- public function setTimeMin($timeMin)
- {
- $this->timeMin = $timeMin;
- }
- public function getTimeMin()
- {
- return $this->timeMin;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
-}
-
-class Postman_Google_Service_Calendar_FreeBusyRequestItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Calendar_FreeBusyResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $calendarsType = 'Postman_Google_Service_Calendar_FreeBusyCalendar';
- protected $calendarsDataType = 'map';
- protected $groupsType = 'Postman_Google_Service_Calendar_FreeBusyGroup';
- protected $groupsDataType = 'map';
- public $kind;
- public $timeMax;
- public $timeMin;
-
-
- public function setCalendars($calendars)
- {
- $this->calendars = $calendars;
- }
- public function getCalendars()
- {
- return $this->calendars;
- }
- public function setGroups($groups)
- {
- $this->groups = $groups;
- }
- public function getGroups()
- {
- return $this->groups;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTimeMax($timeMax)
- {
- $this->timeMax = $timeMax;
- }
- public function getTimeMax()
- {
- return $this->timeMax;
- }
- public function setTimeMin($timeMin)
- {
- $this->timeMin = $timeMin;
- }
- public function getTimeMin()
- {
- return $this->timeMin;
- }
-}
-
-class Postman_Google_Service_Calendar_FreeBusyResponseCalendars extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_FreeBusyResponseGroups extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Calendar_Setting extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- public $value;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Calendar_Settings extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Calendar_Setting';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $nextSyncToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setNextSyncToken($nextSyncToken)
- {
- $this->nextSyncToken = $nextSyncToken;
- }
- public function getNextSyncToken()
- {
- return $this->nextSyncToken;
- }
-}
-
-class Postman_Google_Service_Calendar_TimePeriod extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $end;
- public $start;
-
-
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/CivicInfo.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/CivicInfo.php
deleted file mode 100644
index 788df7b..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/CivicInfo.php
+++ /dev/null
@@ -1,1568 +0,0 @@
-
- * An API for accessing civic information.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_CivicInfo extends Postman_Google_Service -{ - - - public $divisions; - public $elections; - public $representatives; - - - /** - * Constructs the internal representation of the CivicInfo service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'civicinfo/v2/'; - $this->version = 'v2'; - $this->serviceName = 'civicinfo'; - - $this->divisions = new Postman_Google_Service_CivicInfo_Divisions_Resource( - $this, - $this->serviceName, - 'divisions', - array( - 'methods' => array( - 'search' => array( - 'path' => 'divisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->elections = new Postman_Google_Service_CivicInfo_Elections_Resource( - $this, - $this->serviceName, - 'elections', - array( - 'methods' => array( - 'electionQuery' => array( - 'path' => 'elections', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'voterInfoQuery' => array( - 'path' => 'voterinfo', - 'httpMethod' => 'GET', - 'parameters' => array( - 'address' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'electionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'officialOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->representatives = new Postman_Google_Service_CivicInfo_Representatives_Resource( - $this, - $this->serviceName, - 'representatives', - array( - 'methods' => array( - 'representativeInfoByAddress' => array( - 'path' => 'representatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeOffices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'levels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'roles' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'representativeInfoByDivision' => array( - 'path' => 'representatives/{ocdId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ocdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'levels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'recursive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'roles' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "divisions" collection of methods. - * Typical usage is: - *
- * $civicinfoService = new Postman_Google_Service_CivicInfo(...);
- * $divisions = $civicinfoService->divisions;
- *
- */
-class Postman_Google_Service_CivicInfo_Divisions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Searches for political divisions by their natural name or OCD ID.
- * (divisions.search)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string query The search query. Queries can cover any parts of a
- * OCD ID or a human readable division name. All words given in the query are
- * treated as required patterns. In addition to that, most query operators of
- * the Apache Lucene library are supported. See
- * http://lucene.apache.org/core/2_9_4/queryparsersyntax.html
- * @return Postman_Google_Service_CivicInfo_DivisionSearchResponse
- */
- public function search($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_CivicInfo_DivisionSearchResponse");
- }
-}
-
-/**
- * The "elections" collection of methods.
- * Typical usage is:
- *
- * $civicinfoService = new Postman_Google_Service_CivicInfo(...);
- * $elections = $civicinfoService->elections;
- *
- */
-class Postman_Google_Service_CivicInfo_Elections_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List of available elections to query. (elections.electionQuery)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_CivicInfo_ElectionsQueryResponse
- */
- public function electionQuery($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('electionQuery', array($params), "Postman_Google_Service_CivicInfo_ElectionsQueryResponse");
- }
-
- /**
- * Looks up information relevant to a voter based on the voter's registered
- * address. (elections.voterInfoQuery)
- *
- * @param string $address The registered address of the voter to look up.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string electionId The unique ID of the election to look up. A list
- * of election IDs can be obtained at
- * https://www.googleapis.com/civicinfo/{version}/elections
- * @opt_param bool officialOnly If set to true, only data from official state
- * sources will be returned.
- * @return Postman_Google_Service_CivicInfo_VoterInfoResponse
- */
- public function voterInfoQuery($address, $optParams = array())
- {
- $params = array('address' => $address);
- $params = array_merge($params, $optParams);
- return $this->call('voterInfoQuery', array($params), "Postman_Google_Service_CivicInfo_VoterInfoResponse");
- }
-}
-
-/**
- * The "representatives" collection of methods.
- * Typical usage is:
- *
- * $civicinfoService = new Postman_Google_Service_CivicInfo(...);
- * $representatives = $civicinfoService->representatives;
- *
- */
-class Postman_Google_Service_CivicInfo_Representatives_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Looks up political geography and representative information for a single
- * address. (representatives.representativeInfoByAddress)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeOffices Whether to return information about offices
- * and officials. If false, only the top-level district information will be
- * returned.
- * @opt_param string levels A list of office levels to filter by. Only offices
- * that serve at least one of these levels will be returned. Divisions that
- * don't contain a matching office will not be returned.
- * @opt_param string roles A list of office roles to filter by. Only offices
- * fulfilling one of these roles will be returned. Divisions that don't contain
- * a matching office will not be returned.
- * @opt_param string address The address to look up. May only be specified if
- * the field ocdId is not given in the URL.
- * @return Postman_Google_Service_CivicInfo_RepresentativeInfoResponse
- */
- public function representativeInfoByAddress($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('representativeInfoByAddress', array($params), "Postman_Google_Service_CivicInfo_RepresentativeInfoResponse");
- }
-
- /**
- * Looks up representative information for a single geographic division.
- * (representatives.representativeInfoByDivision)
- *
- * @param string $ocdId The Open Civic Data division identifier of the division
- * to look up.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string levels A list of office levels to filter by. Only offices
- * that serve at least one of these levels will be returned. Divisions that
- * don't contain a matching office will not be returned.
- * @opt_param bool recursive If true, information about all divisions contained
- * in the division requested will be included as well. For example, if querying
- * ocd-division/country:us/district:dc, this would also return all DC's wards
- * and ANCs.
- * @opt_param string roles A list of office roles to filter by. Only offices
- * fulfilling one of these roles will be returned. Divisions that don't contain
- * a matching office will not be returned.
- * @return Postman_Google_Service_CivicInfo_RepresentativeInfoData
- */
- public function representativeInfoByDivision($ocdId, $optParams = array())
- {
- $params = array('ocdId' => $ocdId);
- $params = array_merge($params, $optParams);
- return $this->call('representativeInfoByDivision', array($params), "Postman_Google_Service_CivicInfo_RepresentativeInfoData");
- }
-}
-
-
-
-
-class Postman_Google_Service_CivicInfo_AdministrationRegion extends Postman_Google_Collection
-{
- protected $collection_key = 'sources';
- protected $internal_gapi_mappings = array(
- "localJurisdiction" => "local_jurisdiction",
- );
- protected $electionAdministrationBodyType = 'Postman_Google_Service_CivicInfo_AdministrativeBody';
- protected $electionAdministrationBodyDataType = '';
- public $id;
- protected $localJurisdictionType = 'Postman_Google_Service_CivicInfo_AdministrationRegion';
- protected $localJurisdictionDataType = '';
- public $name;
- protected $sourcesType = 'Postman_Google_Service_CivicInfo_Source';
- protected $sourcesDataType = 'array';
-
-
- public function setElectionAdministrationBody(Postman_Google_Service_CivicInfo_AdministrativeBody $electionAdministrationBody)
- {
- $this->electionAdministrationBody = $electionAdministrationBody;
- }
- public function getElectionAdministrationBody()
- {
- return $this->electionAdministrationBody;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLocalJurisdiction(Postman_Google_Service_CivicInfo_AdministrationRegion $localJurisdiction)
- {
- $this->localJurisdiction = $localJurisdiction;
- }
- public function getLocalJurisdiction()
- {
- return $this->localJurisdiction;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setSources($sources)
- {
- $this->sources = $sources;
- }
- public function getSources()
- {
- return $this->sources;
- }
-}
-
-class Postman_Google_Service_CivicInfo_AdministrativeBody extends Postman_Google_Collection
-{
- protected $collection_key = 'voter_services';
- protected $internal_gapi_mappings = array(
- "voterServices" => "voter_services",
- );
- public $absenteeVotingInfoUrl;
- public $ballotInfoUrl;
- protected $correspondenceAddressType = 'Postman_Google_Service_CivicInfo_SimpleAddressType';
- protected $correspondenceAddressDataType = '';
- public $electionInfoUrl;
- protected $electionOfficialsType = 'Postman_Google_Service_CivicInfo_ElectionOfficial';
- protected $electionOfficialsDataType = 'array';
- public $electionRegistrationConfirmationUrl;
- public $electionRegistrationUrl;
- public $electionRulesUrl;
- public $hoursOfOperation;
- public $name;
- protected $physicalAddressType = 'Postman_Google_Service_CivicInfo_SimpleAddressType';
- protected $physicalAddressDataType = '';
- public $voterServices;
- public $votingLocationFinderUrl;
-
-
- public function setAbsenteeVotingInfoUrl($absenteeVotingInfoUrl)
- {
- $this->absenteeVotingInfoUrl = $absenteeVotingInfoUrl;
- }
- public function getAbsenteeVotingInfoUrl()
- {
- return $this->absenteeVotingInfoUrl;
- }
- public function setBallotInfoUrl($ballotInfoUrl)
- {
- $this->ballotInfoUrl = $ballotInfoUrl;
- }
- public function getBallotInfoUrl()
- {
- return $this->ballotInfoUrl;
- }
- public function setCorrespondenceAddress(Postman_Google_Service_CivicInfo_SimpleAddressType $correspondenceAddress)
- {
- $this->correspondenceAddress = $correspondenceAddress;
- }
- public function getCorrespondenceAddress()
- {
- return $this->correspondenceAddress;
- }
- public function setElectionInfoUrl($electionInfoUrl)
- {
- $this->electionInfoUrl = $electionInfoUrl;
- }
- public function getElectionInfoUrl()
- {
- return $this->electionInfoUrl;
- }
- public function setElectionOfficials($electionOfficials)
- {
- $this->electionOfficials = $electionOfficials;
- }
- public function getElectionOfficials()
- {
- return $this->electionOfficials;
- }
- public function setElectionRegistrationConfirmationUrl($electionRegistrationConfirmationUrl)
- {
- $this->electionRegistrationConfirmationUrl = $electionRegistrationConfirmationUrl;
- }
- public function getElectionRegistrationConfirmationUrl()
- {
- return $this->electionRegistrationConfirmationUrl;
- }
- public function setElectionRegistrationUrl($electionRegistrationUrl)
- {
- $this->electionRegistrationUrl = $electionRegistrationUrl;
- }
- public function getElectionRegistrationUrl()
- {
- return $this->electionRegistrationUrl;
- }
- public function setElectionRulesUrl($electionRulesUrl)
- {
- $this->electionRulesUrl = $electionRulesUrl;
- }
- public function getElectionRulesUrl()
- {
- return $this->electionRulesUrl;
- }
- public function setHoursOfOperation($hoursOfOperation)
- {
- $this->hoursOfOperation = $hoursOfOperation;
- }
- public function getHoursOfOperation()
- {
- return $this->hoursOfOperation;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPhysicalAddress(Postman_Google_Service_CivicInfo_SimpleAddressType $physicalAddress)
- {
- $this->physicalAddress = $physicalAddress;
- }
- public function getPhysicalAddress()
- {
- return $this->physicalAddress;
- }
- public function setVoterServices($voterServices)
- {
- $this->voterServices = $voterServices;
- }
- public function getVoterServices()
- {
- return $this->voterServices;
- }
- public function setVotingLocationFinderUrl($votingLocationFinderUrl)
- {
- $this->votingLocationFinderUrl = $votingLocationFinderUrl;
- }
- public function getVotingLocationFinderUrl()
- {
- return $this->votingLocationFinderUrl;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Candidate extends Postman_Google_Collection
-{
- protected $collection_key = 'channels';
- protected $internal_gapi_mappings = array(
- );
- public $candidateUrl;
- protected $channelsType = 'Postman_Google_Service_CivicInfo_Channel';
- protected $channelsDataType = 'array';
- public $email;
- public $name;
- public $orderOnBallot;
- public $party;
- public $phone;
- public $photoUrl;
-
-
- public function setCandidateUrl($candidateUrl)
- {
- $this->candidateUrl = $candidateUrl;
- }
- public function getCandidateUrl()
- {
- return $this->candidateUrl;
- }
- public function setChannels($channels)
- {
- $this->channels = $channels;
- }
- public function getChannels()
- {
- return $this->channels;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOrderOnBallot($orderOnBallot)
- {
- $this->orderOnBallot = $orderOnBallot;
- }
- public function getOrderOnBallot()
- {
- return $this->orderOnBallot;
- }
- public function setParty($party)
- {
- $this->party = $party;
- }
- public function getParty()
- {
- return $this->party;
- }
- public function setPhone($phone)
- {
- $this->phone = $phone;
- }
- public function getPhone()
- {
- return $this->phone;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $type;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Contest extends Postman_Google_Collection
-{
- protected $collection_key = 'sources';
- protected $internal_gapi_mappings = array(
- );
- public $ballotPlacement;
- protected $candidatesType = 'Postman_Google_Service_CivicInfo_Candidate';
- protected $candidatesDataType = 'array';
- protected $districtType = 'Postman_Google_Service_CivicInfo_ElectoralDistrict';
- protected $districtDataType = '';
- public $electorateSpecifications;
- public $id;
- public $level;
- public $numberElected;
- public $numberVotingFor;
- public $office;
- public $primaryParty;
- public $referendumSubtitle;
- public $referendumTitle;
- public $referendumUrl;
- public $roles;
- protected $sourcesType = 'Postman_Google_Service_CivicInfo_Source';
- protected $sourcesDataType = 'array';
- public $special;
- public $type;
-
-
- public function setBallotPlacement($ballotPlacement)
- {
- $this->ballotPlacement = $ballotPlacement;
- }
- public function getBallotPlacement()
- {
- return $this->ballotPlacement;
- }
- public function setCandidates($candidates)
- {
- $this->candidates = $candidates;
- }
- public function getCandidates()
- {
- return $this->candidates;
- }
- public function setDistrict(Postman_Google_Service_CivicInfo_ElectoralDistrict $district)
- {
- $this->district = $district;
- }
- public function getDistrict()
- {
- return $this->district;
- }
- public function setElectorateSpecifications($electorateSpecifications)
- {
- $this->electorateSpecifications = $electorateSpecifications;
- }
- public function getElectorateSpecifications()
- {
- return $this->electorateSpecifications;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLevel($level)
- {
- $this->level = $level;
- }
- public function getLevel()
- {
- return $this->level;
- }
- public function setNumberElected($numberElected)
- {
- $this->numberElected = $numberElected;
- }
- public function getNumberElected()
- {
- return $this->numberElected;
- }
- public function setNumberVotingFor($numberVotingFor)
- {
- $this->numberVotingFor = $numberVotingFor;
- }
- public function getNumberVotingFor()
- {
- return $this->numberVotingFor;
- }
- public function setOffice($office)
- {
- $this->office = $office;
- }
- public function getOffice()
- {
- return $this->office;
- }
- public function setPrimaryParty($primaryParty)
- {
- $this->primaryParty = $primaryParty;
- }
- public function getPrimaryParty()
- {
- return $this->primaryParty;
- }
- public function setReferendumSubtitle($referendumSubtitle)
- {
- $this->referendumSubtitle = $referendumSubtitle;
- }
- public function getReferendumSubtitle()
- {
- return $this->referendumSubtitle;
- }
- public function setReferendumTitle($referendumTitle)
- {
- $this->referendumTitle = $referendumTitle;
- }
- public function getReferendumTitle()
- {
- return $this->referendumTitle;
- }
- public function setReferendumUrl($referendumUrl)
- {
- $this->referendumUrl = $referendumUrl;
- }
- public function getReferendumUrl()
- {
- return $this->referendumUrl;
- }
- public function setRoles($roles)
- {
- $this->roles = $roles;
- }
- public function getRoles()
- {
- return $this->roles;
- }
- public function setSources($sources)
- {
- $this->sources = $sources;
- }
- public function getSources()
- {
- return $this->sources;
- }
- public function setSpecial($special)
- {
- $this->special = $special;
- }
- public function getSpecial()
- {
- return $this->special;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_CivicInfo_DivisionSearchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'results';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $resultsType = 'Postman_Google_Service_CivicInfo_DivisionSearchResult';
- protected $resultsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setResults($results)
- {
- $this->results = $results;
- }
- public function getResults()
- {
- return $this->results;
- }
-}
-
-class Postman_Google_Service_CivicInfo_DivisionSearchResult extends Postman_Google_Collection
-{
- protected $collection_key = 'aliases';
- protected $internal_gapi_mappings = array(
- );
- public $aliases;
- public $name;
- public $ocdId;
-
-
- public function setAliases($aliases)
- {
- $this->aliases = $aliases;
- }
- public function getAliases()
- {
- return $this->aliases;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOcdId($ocdId)
- {
- $this->ocdId = $ocdId;
- }
- public function getOcdId()
- {
- return $this->ocdId;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Election extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $electionDay;
- public $id;
- public $name;
-
-
- public function setElectionDay($electionDay)
- {
- $this->electionDay = $electionDay;
- }
- public function getElectionDay()
- {
- return $this->electionDay;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_CivicInfo_ElectionOfficial extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $emailAddress;
- public $faxNumber;
- public $name;
- public $officePhoneNumber;
- public $title;
-
-
- public function setEmailAddress($emailAddress)
- {
- $this->emailAddress = $emailAddress;
- }
- public function getEmailAddress()
- {
- return $this->emailAddress;
- }
- public function setFaxNumber($faxNumber)
- {
- $this->faxNumber = $faxNumber;
- }
- public function getFaxNumber()
- {
- return $this->faxNumber;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOfficePhoneNumber($officePhoneNumber)
- {
- $this->officePhoneNumber = $officePhoneNumber;
- }
- public function getOfficePhoneNumber()
- {
- return $this->officePhoneNumber;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_CivicInfo_ElectionsQueryResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'elections';
- protected $internal_gapi_mappings = array(
- );
- protected $electionsType = 'Postman_Google_Service_CivicInfo_Election';
- protected $electionsDataType = 'array';
- public $kind;
-
-
- public function setElections($elections)
- {
- $this->elections = $elections;
- }
- public function getElections()
- {
- return $this->elections;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_CivicInfo_ElectoralDistrict extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $name;
- public $scope;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setScope($scope)
- {
- $this->scope = $scope;
- }
- public function getScope()
- {
- return $this->scope;
- }
-}
-
-class Postman_Google_Service_CivicInfo_GeographicDivision extends Postman_Google_Collection
-{
- protected $collection_key = 'officeIndices';
- protected $internal_gapi_mappings = array(
- );
- public $alsoKnownAs;
- public $name;
- public $officeIndices;
-
-
- public function setAlsoKnownAs($alsoKnownAs)
- {
- $this->alsoKnownAs = $alsoKnownAs;
- }
- public function getAlsoKnownAs()
- {
- return $this->alsoKnownAs;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOfficeIndices($officeIndices)
- {
- $this->officeIndices = $officeIndices;
- }
- public function getOfficeIndices()
- {
- return $this->officeIndices;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Office extends Postman_Google_Collection
-{
- protected $collection_key = 'sources';
- protected $internal_gapi_mappings = array(
- );
- public $divisionId;
- public $levels;
- public $name;
- public $officialIndices;
- public $roles;
- protected $sourcesType = 'Postman_Google_Service_CivicInfo_Source';
- protected $sourcesDataType = 'array';
-
-
- public function setDivisionId($divisionId)
- {
- $this->divisionId = $divisionId;
- }
- public function getDivisionId()
- {
- return $this->divisionId;
- }
- public function setLevels($levels)
- {
- $this->levels = $levels;
- }
- public function getLevels()
- {
- return $this->levels;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOfficialIndices($officialIndices)
- {
- $this->officialIndices = $officialIndices;
- }
- public function getOfficialIndices()
- {
- return $this->officialIndices;
- }
- public function setRoles($roles)
- {
- $this->roles = $roles;
- }
- public function getRoles()
- {
- return $this->roles;
- }
- public function setSources($sources)
- {
- $this->sources = $sources;
- }
- public function getSources()
- {
- return $this->sources;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Official extends Postman_Google_Collection
-{
- protected $collection_key = 'urls';
- protected $internal_gapi_mappings = array(
- );
- protected $addressType = 'Postman_Google_Service_CivicInfo_SimpleAddressType';
- protected $addressDataType = 'array';
- protected $channelsType = 'Postman_Google_Service_CivicInfo_Channel';
- protected $channelsDataType = 'array';
- public $emails;
- public $name;
- public $party;
- public $phones;
- public $photoUrl;
- public $urls;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setChannels($channels)
- {
- $this->channels = $channels;
- }
- public function getChannels()
- {
- return $this->channels;
- }
- public function setEmails($emails)
- {
- $this->emails = $emails;
- }
- public function getEmails()
- {
- return $this->emails;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setParty($party)
- {
- $this->party = $party;
- }
- public function getParty()
- {
- return $this->party;
- }
- public function setPhones($phones)
- {
- $this->phones = $phones;
- }
- public function getPhones()
- {
- return $this->phones;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
- public function setUrls($urls)
- {
- $this->urls = $urls;
- }
- public function getUrls()
- {
- return $this->urls;
- }
-}
-
-class Postman_Google_Service_CivicInfo_PollingLocation extends Postman_Google_Collection
-{
- protected $collection_key = 'sources';
- protected $internal_gapi_mappings = array(
- );
- protected $addressType = 'Postman_Google_Service_CivicInfo_SimpleAddressType';
- protected $addressDataType = '';
- public $endDate;
- public $id;
- public $name;
- public $notes;
- public $pollingHours;
- protected $sourcesType = 'Postman_Google_Service_CivicInfo_Source';
- protected $sourcesDataType = 'array';
- public $startDate;
- public $voterServices;
-
-
- public function setAddress(Postman_Google_Service_CivicInfo_SimpleAddressType $address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setPollingHours($pollingHours)
- {
- $this->pollingHours = $pollingHours;
- }
- public function getPollingHours()
- {
- return $this->pollingHours;
- }
- public function setSources($sources)
- {
- $this->sources = $sources;
- }
- public function getSources()
- {
- return $this->sources;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setVoterServices($voterServices)
- {
- $this->voterServices = $voterServices;
- }
- public function getVoterServices()
- {
- return $this->voterServices;
- }
-}
-
-class Postman_Google_Service_CivicInfo_RepresentativeInfoData extends Postman_Google_Collection
-{
- protected $collection_key = 'officials';
- protected $internal_gapi_mappings = array(
- );
- protected $divisionsType = 'Postman_Google_Service_CivicInfo_GeographicDivision';
- protected $divisionsDataType = 'map';
- protected $officesType = 'Postman_Google_Service_CivicInfo_Office';
- protected $officesDataType = 'array';
- protected $officialsType = 'Postman_Google_Service_CivicInfo_Official';
- protected $officialsDataType = 'array';
-
-
- public function setDivisions($divisions)
- {
- $this->divisions = $divisions;
- }
- public function getDivisions()
- {
- return $this->divisions;
- }
- public function setOffices($offices)
- {
- $this->offices = $offices;
- }
- public function getOffices()
- {
- return $this->offices;
- }
- public function setOfficials($officials)
- {
- $this->officials = $officials;
- }
- public function getOfficials()
- {
- return $this->officials;
- }
-}
-
-class Postman_Google_Service_CivicInfo_RepresentativeInfoDataDivisions extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_CivicInfo_RepresentativeInfoResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'officials';
- protected $internal_gapi_mappings = array(
- );
- protected $divisionsType = 'Postman_Google_Service_CivicInfo_GeographicDivision';
- protected $divisionsDataType = 'map';
- public $kind;
- protected $normalizedInputType = 'Postman_Google_Service_CivicInfo_SimpleAddressType';
- protected $normalizedInputDataType = '';
- protected $officesType = 'Postman_Google_Service_CivicInfo_Office';
- protected $officesDataType = 'array';
- protected $officialsType = 'Postman_Google_Service_CivicInfo_Official';
- protected $officialsDataType = 'array';
-
-
- public function setDivisions($divisions)
- {
- $this->divisions = $divisions;
- }
- public function getDivisions()
- {
- return $this->divisions;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNormalizedInput(Postman_Google_Service_CivicInfo_SimpleAddressType $normalizedInput)
- {
- $this->normalizedInput = $normalizedInput;
- }
- public function getNormalizedInput()
- {
- return $this->normalizedInput;
- }
- public function setOffices($offices)
- {
- $this->offices = $offices;
- }
- public function getOffices()
- {
- return $this->offices;
- }
- public function setOfficials($officials)
- {
- $this->officials = $officials;
- }
- public function getOfficials()
- {
- return $this->officials;
- }
-}
-
-class Postman_Google_Service_CivicInfo_RepresentativeInfoResponseDivisions extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_CivicInfo_SimpleAddressType extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $city;
- public $line1;
- public $line2;
- public $line3;
- public $locationName;
- public $state;
- public $zip;
-
-
- public function setCity($city)
- {
- $this->city = $city;
- }
- public function getCity()
- {
- return $this->city;
- }
- public function setLine1($line1)
- {
- $this->line1 = $line1;
- }
- public function getLine1()
- {
- return $this->line1;
- }
- public function setLine2($line2)
- {
- $this->line2 = $line2;
- }
- public function getLine2()
- {
- return $this->line2;
- }
- public function setLine3($line3)
- {
- $this->line3 = $line3;
- }
- public function getLine3()
- {
- return $this->line3;
- }
- public function setLocationName($locationName)
- {
- $this->locationName = $locationName;
- }
- public function getLocationName()
- {
- return $this->locationName;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setZip($zip)
- {
- $this->zip = $zip;
- }
- public function getZip()
- {
- return $this->zip;
- }
-}
-
-class Postman_Google_Service_CivicInfo_Source extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $official;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOfficial($official)
- {
- $this->official = $official;
- }
- public function getOfficial()
- {
- return $this->official;
- }
-}
-
-class Postman_Google_Service_CivicInfo_VoterInfoResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'state';
- protected $internal_gapi_mappings = array(
- );
- protected $contestsType = 'Postman_Google_Service_CivicInfo_Contest';
- protected $contestsDataType = 'array';
- protected $dropOffLocationsType = 'Postman_Google_Service_CivicInfo_PollingLocation';
- protected $dropOffLocationsDataType = 'array';
- protected $earlyVoteSitesType = 'Postman_Google_Service_CivicInfo_PollingLocation';
- protected $earlyVoteSitesDataType = 'array';
- protected $electionType = 'Postman_Google_Service_CivicInfo_Election';
- protected $electionDataType = '';
- public $kind;
- protected $normalizedInputType = 'Postman_Google_Service_CivicInfo_SimpleAddressType';
- protected $normalizedInputDataType = '';
- protected $otherElectionsType = 'Postman_Google_Service_CivicInfo_Election';
- protected $otherElectionsDataType = 'array';
- protected $pollingLocationsType = 'Postman_Google_Service_CivicInfo_PollingLocation';
- protected $pollingLocationsDataType = 'array';
- public $precinctId;
- protected $stateType = 'Postman_Google_Service_CivicInfo_AdministrationRegion';
- protected $stateDataType = 'array';
-
-
- public function setContests($contests)
- {
- $this->contests = $contests;
- }
- public function getContests()
- {
- return $this->contests;
- }
- public function setDropOffLocations($dropOffLocations)
- {
- $this->dropOffLocations = $dropOffLocations;
- }
- public function getDropOffLocations()
- {
- return $this->dropOffLocations;
- }
- public function setEarlyVoteSites($earlyVoteSites)
- {
- $this->earlyVoteSites = $earlyVoteSites;
- }
- public function getEarlyVoteSites()
- {
- return $this->earlyVoteSites;
- }
- public function setElection(Postman_Google_Service_CivicInfo_Election $election)
- {
- $this->election = $election;
- }
- public function getElection()
- {
- return $this->election;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNormalizedInput(Postman_Google_Service_CivicInfo_SimpleAddressType $normalizedInput)
- {
- $this->normalizedInput = $normalizedInput;
- }
- public function getNormalizedInput()
- {
- return $this->normalizedInput;
- }
- public function setOtherElections($otherElections)
- {
- $this->otherElections = $otherElections;
- }
- public function getOtherElections()
- {
- return $this->otherElections;
- }
- public function setPollingLocations($pollingLocations)
- {
- $this->pollingLocations = $pollingLocations;
- }
- public function getPollingLocations()
- {
- return $this->pollingLocations;
- }
- public function setPrecinctId($precinctId)
- {
- $this->precinctId = $precinctId;
- }
- public function getPrecinctId()
- {
- return $this->precinctId;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/CloudMonitoring.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/CloudMonitoring.php
deleted file mode 100644
index 4c00c46..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/CloudMonitoring.php
+++ /dev/null
@@ -1,953 +0,0 @@
-
- * API for accessing Google Cloud and API monitoring data.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_CloudMonitoring extends Postman_Google_Service -{ - /** View monitoring data for all of your Google Cloud and API projects. */ - const MONITORING_READONLY = - "https://www.googleapis.com/auth/monitoring.readonly"; - - public $metricDescriptors; - public $timeseries; - public $timeseriesDescriptors; - - - /** - * Constructs the internal representation of the CloudMonitoring service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'cloudmonitoring/v2beta1/projects/'; - $this->version = 'v2beta1'; - $this->serviceName = 'cloudmonitoring'; - - $this->metricDescriptors = new Postman_Google_Service_CloudMonitoring_MetricDescriptors_Resource( - $this, - $this->serviceName, - 'metricDescriptors', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/metricDescriptors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->timeseries = new Postman_Google_Service_CloudMonitoring_Timeseries_Resource( - $this, - $this->serviceName, - 'timeseries', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/timeseries/{metric}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metric' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'youngest' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'timespan' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'oldest' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->timeseriesDescriptors = new Postman_Google_Service_CloudMonitoring_TimeseriesDescriptors_Resource( - $this, - $this->serviceName, - 'timeseriesDescriptors', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/timeseriesDescriptors/{metric}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metric' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'youngest' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'timespan' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'oldest' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "metricDescriptors" collection of methods. - * Typical usage is: - *
- * $cloudmonitoringService = new Postman_Google_Service_CloudMonitoring(...);
- * $metricDescriptors = $cloudmonitoringService->metricDescriptors;
- *
- */
-class Postman_Google_Service_CloudMonitoring_MetricDescriptors_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List metric descriptors that match the query. If the query is not set, then
- * all of the metric descriptors will be returned. Large responses will be
- * paginated, use the nextPageToken returned in the response to request
- * subsequent pages of results by setting the pageToken query parameter to the
- * value of the nextPageToken. (metricDescriptors.listMetricDescriptors)
- *
- * @param string $project The project id. The value can be the numeric project
- * ID or string-based project name.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int count Maximum number of metric descriptors per page. Used for
- * pagination. If not specified, count = 100.
- * @opt_param string pageToken The pagination token, which is used to page
- * through large result sets. Set this value to the value of the nextPageToken
- * to retrieve the next page of results.
- * @opt_param string query The query used to search against existing metrics.
- * Separate keywords with a space; the service joins all keywords with AND,
- * meaning that all keywords must match for a metric to be returned. If this
- * field is omitted, all metrics are returned. If an empty string is passed with
- * this field, no metrics are returned.
- * @return Postman_Google_Service_CloudMonitoring_ListMetricDescriptorsResponse
- */
- public function listMetricDescriptors($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_CloudMonitoring_ListMetricDescriptorsResponse");
- }
-}
-
-/**
- * The "timeseries" collection of methods.
- * Typical usage is:
- *
- * $cloudmonitoringService = new Postman_Google_Service_CloudMonitoring(...);
- * $timeseries = $cloudmonitoringService->timeseries;
- *
- */
-class Postman_Google_Service_CloudMonitoring_Timeseries_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the data points of the time series that match the metric and labels
- * values and that have data points in the interval. Large responses are
- * paginated; use the nextPageToken returned in the response to request
- * subsequent pages of results by setting the pageToken query parameter to the
- * value of the nextPageToken. (timeseries.listTimeseries)
- *
- * @param string $project The project ID to which this time series belongs. The
- * value can be the numeric project ID or string-based project name.
- * @param string $metric Metric names are protocol-free URLs as listed in the
- * Supported Metrics page. For example,
- * compute.googleapis.com/instance/disk/read_ops_count.
- * @param string $youngest End of the time interval (inclusive), which is
- * expressed as an RFC 3339 timestamp.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int count Maximum number of data points per page, which is used
- * for pagination of results.
- * @opt_param string timespan Length of the time interval to query, which is an
- * alternative way to declare the interval: (youngest - timespan, youngest]. The
- * timespan and oldest parameters should not be used together. Units: - s:
- * second - m: minute - h: hour - d: day - w: week Examples: 2s, 3m, 4w.
- * Only one unit is allowed, for example: 2w3d is not allowed; you should use
- * 17d instead.
- *
- * If neither oldest nor timespan is specified, the default time interval will
- * be (youngest - 4 hours, youngest].
- * @opt_param string labels A collection of labels for the matching time series,
- * which are represented as: - key==value: key equals the value - key=~value:
- * key regex matches the value - key!=value: key does not equal the value -
- * key!~value: key regex does not match the value For example, to list all of
- * the time series descriptors for the region us-central1, you could specify:
- * label=cloud.googleapis.com%2Flocation=~us-central1.*
- * @opt_param string pageToken The pagination token, which is used to page
- * through large result sets. Set this value to the value of the nextPageToken
- * to retrieve the next page of results.
- * @opt_param string oldest Start of the time interval (exclusive), which is
- * expressed as an RFC 3339 timestamp. If neither oldest nor timespan is
- * specified, the default time interval will be (youngest - 4 hours, youngest]
- * @return Postman_Google_Service_CloudMonitoring_ListTimeseriesResponse
- */
- public function listTimeseries($project, $metric, $youngest, $optParams = array())
- {
- $params = array('project' => $project, 'metric' => $metric, 'youngest' => $youngest);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_CloudMonitoring_ListTimeseriesResponse");
- }
-}
-
-/**
- * The "timeseriesDescriptors" collection of methods.
- * Typical usage is:
- *
- * $cloudmonitoringService = new Postman_Google_Service_CloudMonitoring(...);
- * $timeseriesDescriptors = $cloudmonitoringService->timeseriesDescriptors;
- *
- */
-class Postman_Google_Service_CloudMonitoring_TimeseriesDescriptors_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the descriptors of the time series that match the metric and labels
- * values and that have data points in the interval. Large responses are
- * paginated; use the nextPageToken returned in the response to request
- * subsequent pages of results by setting the pageToken query parameter to the
- * value of the nextPageToken. (timeseriesDescriptors.listTimeseriesDescriptors)
- *
- * @param string $project The project ID to which this time series belongs. The
- * value can be the numeric project ID or string-based project name.
- * @param string $metric Metric names are protocol-free URLs as listed in the
- * Supported Metrics page. For example,
- * compute.googleapis.com/instance/disk/read_ops_count.
- * @param string $youngest End of the time interval (inclusive), which is
- * expressed as an RFC 3339 timestamp.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int count Maximum number of time series descriptors per page. Used
- * for pagination. If not specified, count = 100.
- * @opt_param string timespan Length of the time interval to query, which is an
- * alternative way to declare the interval: (youngest - timespan, youngest]. The
- * timespan and oldest parameters should not be used together. Units: - s:
- * second - m: minute - h: hour - d: day - w: week Examples: 2s, 3m, 4w.
- * Only one unit is allowed, for example: 2w3d is not allowed; you should use
- * 17d instead.
- *
- * If neither oldest nor timespan is specified, the default time interval will
- * be (youngest - 4 hours, youngest].
- * @opt_param string labels A collection of labels for the matching time series,
- * which are represented as: - key==value: key equals the value - key=~value:
- * key regex matches the value - key!=value: key does not equal the value -
- * key!~value: key regex does not match the value For example, to list all of
- * the time series descriptors for the region us-central1, you could specify:
- * label=cloud.googleapis.com%2Flocation=~us-central1.*
- * @opt_param string pageToken The pagination token, which is used to page
- * through large result sets. Set this value to the value of the nextPageToken
- * to retrieve the next page of results.
- * @opt_param string oldest Start of the time interval (exclusive), which is
- * expressed as an RFC 3339 timestamp. If neither oldest nor timespan is
- * specified, the default time interval will be (youngest - 4 hours, youngest]
- * @return Postman_Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse
- */
- public function listTimeseriesDescriptors($project, $metric, $youngest, $optParams = array())
- {
- $params = array('project' => $project, 'metric' => $metric, 'youngest' => $youngest);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_CloudMonitoring_ListMetricDescriptorsRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_ListMetricDescriptorsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'metrics';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $metricsType = 'Postman_Google_Service_CloudMonitoring_MetricDescriptor';
- protected $metricsDataType = 'array';
- public $nextPageToken;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_ListTimeseriesDescriptorsRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'timeseries';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- public $oldest;
- protected $timeseriesType = 'Postman_Google_Service_CloudMonitoring_TimeseriesDescriptor';
- protected $timeseriesDataType = 'array';
- public $youngest;
-
-
- 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;
- }
- public function setOldest($oldest)
- {
- $this->oldest = $oldest;
- }
- public function getOldest()
- {
- return $this->oldest;
- }
- public function setTimeseries($timeseries)
- {
- $this->timeseries = $timeseries;
- }
- public function getTimeseries()
- {
- return $this->timeseries;
- }
- public function setYoungest($youngest)
- {
- $this->youngest = $youngest;
- }
- public function getYoungest()
- {
- return $this->youngest;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_ListTimeseriesRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_ListTimeseriesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'timeseries';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- public $oldest;
- protected $timeseriesType = 'Postman_Google_Service_CloudMonitoring_Timeseries';
- protected $timeseriesDataType = 'array';
- public $youngest;
-
-
- 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;
- }
- public function setOldest($oldest)
- {
- $this->oldest = $oldest;
- }
- public function getOldest()
- {
- return $this->oldest;
- }
- public function setTimeseries($timeseries)
- {
- $this->timeseries = $timeseries;
- }
- public function getTimeseries()
- {
- return $this->timeseries;
- }
- public function setYoungest($youngest)
- {
- $this->youngest = $youngest;
- }
- public function getYoungest()
- {
- return $this->youngest;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_MetricDescriptor extends Postman_Google_Collection
-{
- protected $collection_key = 'labels';
- protected $internal_gapi_mappings = array(
- );
- public $description;
- protected $labelsType = 'Postman_Google_Service_CloudMonitoring_MetricDescriptorLabelDescriptor';
- protected $labelsDataType = 'array';
- public $name;
- public $project;
- protected $typeDescriptorType = 'Postman_Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor';
- protected $typeDescriptorDataType = '';
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProject($project)
- {
- $this->project = $project;
- }
- public function getProject()
- {
- return $this->project;
- }
- public function setTypeDescriptor(Postman_Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor $typeDescriptor)
- {
- $this->typeDescriptor = $typeDescriptor;
- }
- public function getTypeDescriptor()
- {
- return $this->typeDescriptor;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_MetricDescriptorLabelDescriptor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $key;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $metricType;
- public $valueType;
-
-
- public function setMetricType($metricType)
- {
- $this->metricType = $metricType;
- }
- public function getMetricType()
- {
- return $this->metricType;
- }
- public function setValueType($valueType)
- {
- $this->valueType = $valueType;
- }
- public function getValueType()
- {
- return $this->valueType;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_Point extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $boolValue;
- protected $distributionValueType = 'Postman_Google_Service_CloudMonitoring_PointDistribution';
- protected $distributionValueDataType = '';
- public $doubleValue;
- public $end;
- public $int64Value;
- public $start;
- public $stringValue;
-
-
- public function setBoolValue($boolValue)
- {
- $this->boolValue = $boolValue;
- }
- public function getBoolValue()
- {
- return $this->boolValue;
- }
- public function setDistributionValue(Postman_Google_Service_CloudMonitoring_PointDistribution $distributionValue)
- {
- $this->distributionValue = $distributionValue;
- }
- public function getDistributionValue()
- {
- return $this->distributionValue;
- }
- public function setDoubleValue($doubleValue)
- {
- $this->doubleValue = $doubleValue;
- }
- public function getDoubleValue()
- {
- return $this->doubleValue;
- }
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setInt64Value($int64Value)
- {
- $this->int64Value = $int64Value;
- }
- public function getInt64Value()
- {
- return $this->int64Value;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
- public function setStringValue($stringValue)
- {
- $this->stringValue = $stringValue;
- }
- public function getStringValue()
- {
- return $this->stringValue;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_PointDistribution extends Postman_Google_Collection
-{
- protected $collection_key = 'buckets';
- protected $internal_gapi_mappings = array(
- );
- protected $bucketsType = 'Postman_Google_Service_CloudMonitoring_PointDistributionBucket';
- protected $bucketsDataType = 'array';
- protected $overflowBucketType = 'Postman_Google_Service_CloudMonitoring_PointDistributionOverflowBucket';
- protected $overflowBucketDataType = '';
- protected $underflowBucketType = 'Postman_Google_Service_CloudMonitoring_PointDistributionUnderflowBucket';
- protected $underflowBucketDataType = '';
-
-
- public function setBuckets($buckets)
- {
- $this->buckets = $buckets;
- }
- public function getBuckets()
- {
- return $this->buckets;
- }
- public function setOverflowBucket(Postman_Google_Service_CloudMonitoring_PointDistributionOverflowBucket $overflowBucket)
- {
- $this->overflowBucket = $overflowBucket;
- }
- public function getOverflowBucket()
- {
- return $this->overflowBucket;
- }
- public function setUnderflowBucket(Postman_Google_Service_CloudMonitoring_PointDistributionUnderflowBucket $underflowBucket)
- {
- $this->underflowBucket = $underflowBucket;
- }
- public function getUnderflowBucket()
- {
- return $this->underflowBucket;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_PointDistributionBucket extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $lowerBound;
- public $upperBound;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setLowerBound($lowerBound)
- {
- $this->lowerBound = $lowerBound;
- }
- public function getLowerBound()
- {
- return $this->lowerBound;
- }
- public function setUpperBound($upperBound)
- {
- $this->upperBound = $upperBound;
- }
- public function getUpperBound()
- {
- return $this->upperBound;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_PointDistributionOverflowBucket extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $lowerBound;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setLowerBound($lowerBound)
- {
- $this->lowerBound = $lowerBound;
- }
- public function getLowerBound()
- {
- return $this->lowerBound;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_PointDistributionUnderflowBucket extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $upperBound;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setUpperBound($upperBound)
- {
- $this->upperBound = $upperBound;
- }
- public function getUpperBound()
- {
- return $this->upperBound;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_Timeseries extends Postman_Google_Collection
-{
- protected $collection_key = 'points';
- protected $internal_gapi_mappings = array(
- );
- protected $pointsType = 'Postman_Google_Service_CloudMonitoring_Point';
- protected $pointsDataType = 'array';
- protected $timeseriesDescType = 'Postman_Google_Service_CloudMonitoring_TimeseriesDescriptor';
- protected $timeseriesDescDataType = '';
-
-
- public function setPoints($points)
- {
- $this->points = $points;
- }
- public function getPoints()
- {
- return $this->points;
- }
- public function setTimeseriesDesc(Postman_Google_Service_CloudMonitoring_TimeseriesDescriptor $timeseriesDesc)
- {
- $this->timeseriesDesc = $timeseriesDesc;
- }
- public function getTimeseriesDesc()
- {
- return $this->timeseriesDesc;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_TimeseriesDescriptor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $labels;
- public $metric;
- public $project;
-
-
- public function setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
- public function setMetric($metric)
- {
- $this->metric = $metric;
- }
- public function getMetric()
- {
- return $this->metric;
- }
- public function setProject($project)
- {
- $this->project = $project;
- }
- public function getProject()
- {
- return $this->project;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_TimeseriesDescriptorLabel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_CloudMonitoring_TimeseriesDescriptorLabels extends Postman_Google_Model
-{
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Compute.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Compute.php
deleted file mode 100644
index 0905aa1..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Compute.php
+++ /dev/null
@@ -1,12150 +0,0 @@
-
- * API for the Google Compute Engine service.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Compute extends Postman_Google_Service -{ - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - - public $addresses; - public $backendServices; - public $diskTypes; - public $disks; - public $firewalls; - public $forwardingRules; - public $globalAddresses; - public $globalForwardingRules; - public $globalOperations; - public $httpHealthChecks; - public $images; - public $instanceTemplates; - public $instances; - public $licenses; - public $machineTypes; - public $networks; - public $projects; - public $regionOperations; - public $regions; - public $routes; - public $snapshots; - public $targetHttpProxies; - public $targetInstances; - public $targetPools; - public $urlMaps; - public $zoneOperations; - public $zones; - - - /** - * Constructs the internal representation of the Compute service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'compute/v1/projects/'; - $this->version = 'v1'; - $this->serviceName = 'compute'; - - $this->addresses = new Postman_Google_Service_Compute_Addresses_Resource( - $this, - $this->serviceName, - 'addresses', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/addresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/addresses/{address}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/addresses/{address}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/addresses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/addresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->backendServices = new Postman_Google_Service_Compute_BackendServices_Resource( - $this, - $this->serviceName, - 'backendServices', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getHealth' => array( - 'path' => '{project}/global/backendServices/{backendService}/getHealth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/backendServices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/backendServices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->diskTypes = new Postman_Google_Service_Compute_DiskTypes_Resource( - $this, - $this->serviceName, - 'diskTypes', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/diskTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/diskTypes/{diskType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'diskType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/diskTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->disks = new Postman_Google_Service_Compute_Disks_Resource( - $this, - $this->serviceName, - 'disks', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/disks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'createSnapshot' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}/createSnapshot', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/disks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sourceImage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/disks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->firewalls = new Postman_Google_Service_Compute_Firewalls_Resource( - $this, - $this->serviceName, - 'firewalls', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/firewalls', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/firewalls', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->forwardingRules = new Postman_Google_Service_Compute_ForwardingRules_Resource( - $this, - $this->serviceName, - 'forwardingRules', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/forwardingRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/forwardingRules', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/forwardingRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setTarget' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}/setTarget', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->globalAddresses = new Postman_Google_Service_Compute_GlobalAddresses_Resource( - $this, - $this->serviceName, - 'globalAddresses', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/addresses/{address}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/addresses/{address}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/addresses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/addresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->globalForwardingRules = new Postman_Google_Service_Compute_GlobalForwardingRules_Resource( - $this, - $this->serviceName, - 'globalForwardingRules', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/forwardingRules', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/forwardingRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setTarget' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}/setTarget', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->globalOperations = new Postman_Google_Service_Compute_GlobalOperations_Resource( - $this, - $this->serviceName, - 'globalOperations', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->httpHealthChecks = new Postman_Google_Service_Compute_HttpHealthChecks_Resource( - $this, - $this->serviceName, - 'httpHealthChecks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/httpHealthChecks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/httpHealthChecks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->images = new Postman_Google_Service_Compute_Images_Resource( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/images/{image}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'image' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deprecate' => array( - 'path' => '{project}/global/images/{image}/deprecate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'image' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/images/{image}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'image' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/images', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/images', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->instanceTemplates = new Postman_Google_Service_Compute_InstanceTemplates_Resource( - $this, - $this->serviceName, - 'instanceTemplates', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/instanceTemplates/{instanceTemplate}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceTemplate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/instanceTemplates/{instanceTemplate}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceTemplate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/instanceTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/instanceTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->instances = new Postman_Google_Service_Compute_Instances_Resource( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'addAccessConfig' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/addAccessConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkInterface' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'attachDisk' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/attachDisk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteAccessConfig' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/deleteAccessConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accessConfig' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'networkInterface' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'detachDisk' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/detachDisk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getSerialPortOutput' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/serialPort', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'reset' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setDiskAutoDelete' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setDiskAutoDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoDelete' => array( - 'location' => 'query', - 'type' => 'boolean', - 'required' => true, - ), - 'deviceName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setMetadata' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setMetadata', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setScheduling' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setScheduling', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setTags' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setTags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->licenses = new Postman_Google_Service_Compute_Licenses_Resource( - $this, - $this->serviceName, - 'licenses', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/licenses/{license}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'license' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->machineTypes = new Postman_Google_Service_Compute_MachineTypes_Resource( - $this, - $this->serviceName, - 'machineTypes', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/machineTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/machineTypes/{machineType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'machineType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/machineTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->networks = new Postman_Google_Service_Compute_Networks_Resource( - $this, - $this->serviceName, - 'networks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/networks/{network}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/networks/{network}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/networks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/networks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects = new Postman_Google_Service_Compute_Projects_Resource( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setCommonInstanceMetadata' => array( - 'path' => '{project}/setCommonInstanceMetadata', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setUsageExportBucket' => array( - 'path' => '{project}/setUsageExportBucket', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->regionOperations = new Postman_Google_Service_Compute_RegionOperations_Resource( - $this, - $this->serviceName, - 'regionOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->regions = new Postman_Google_Service_Compute_Regions_Resource( - $this, - $this->serviceName, - 'regions', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/regions/{region}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->routes = new Postman_Google_Service_Compute_Routes_Resource( - $this, - $this->serviceName, - 'routes', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/routes/{route}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'route' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/routes/{route}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'route' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/routes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/routes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->snapshots = new Postman_Google_Service_Compute_Snapshots_Resource( - $this, - $this->serviceName, - 'snapshots', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/snapshots/{snapshot}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'snapshot' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/snapshots/{snapshot}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'snapshot' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/snapshots', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->targetHttpProxies = new Postman_Google_Service_Compute_TargetHttpProxies_Resource( - $this, - $this->serviceName, - 'targetHttpProxies', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/targetHttpProxies/{targetHttpProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/targetHttpProxies/{targetHttpProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/targetHttpProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/targetHttpProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setUrlMap' => array( - 'path' => '{project}/targetHttpProxies/{targetHttpProxy}/setUrlMap', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->targetInstances = new Postman_Google_Service_Compute_TargetInstances_Resource( - $this, - $this->serviceName, - 'targetInstances', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/targetInstances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/targetInstances/{targetInstance}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetInstance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/targetInstances/{targetInstance}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetInstance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/targetInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/targetInstances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->targetPools = new Postman_Google_Service_Compute_TargetPools_Resource( - $this, - $this->serviceName, - 'targetPools', - array( - 'methods' => array( - 'addHealthCheck' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/addHealthCheck', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'addInstance' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/addInstance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/targetPools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getHealth' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/getHealth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/targetPools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/targetPools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'removeHealthCheck' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/removeHealthCheck', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'removeInstance' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/removeInstance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setBackup' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/setBackup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'failoverRatio' => array( - 'location' => 'query', - 'type' => 'number', - ), - ), - ), - ) - ) - ); - $this->urlMaps = new Postman_Google_Service_Compute_UrlMaps_Resource( - $this, - $this->serviceName, - 'urlMaps', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/urlMaps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/urlMaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'validate' => array( - 'path' => '{project}/global/urlMaps/{urlMap}/validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->zoneOperations = new Postman_Google_Service_Compute_ZoneOperations_Resource( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->zones = new Postman_Google_Service_Compute_Zones_Resource( - $this, - $this->serviceName, - 'zones', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/zones/{zone}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "addresses" collection of methods. - * Typical usage is: - *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $addresses = $computeService->addresses;
- *
- */
-class Postman_Google_Service_Compute_Addresses_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of addresses grouped by scope. (addresses.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_AddressAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_AddressAggregatedList");
- }
-
- /**
- * Deletes the specified address resource. (addresses.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $address Name of the address resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $region, $address, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'address' => $address);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified address resource. (addresses.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $address Name of the address resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Address
- */
- public function get($project, $region, $address, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'address' => $address);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Address");
- }
-
- /**
- * Creates an address resource in the specified project using the data included
- * in the request. (addresses.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param Postman_Google_Address $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, $region, Postman_Google_Service_Compute_Address $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of address resources contained within the specified
- * region. (addresses.listAddresses)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_AddressList
- */
- public function listAddresses($project, $region, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_AddressList");
- }
-}
-
-/**
- * The "backendServices" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $backendServices = $computeService->backendServices;
- *
- */
-class Postman_Google_Service_Compute_BackendServices_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified BackendService resource. (backendServices.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $backendService Name of the BackendService resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $backendService, $optParams = array())
- {
- $params = array('project' => $project, 'backendService' => $backendService);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified BackendService resource. (backendServices.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $backendService Name of the BackendService resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_BackendService
- */
- public function get($project, $backendService, $optParams = array())
- {
- $params = array('project' => $project, 'backendService' => $backendService);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_BackendService");
- }
-
- /**
- * Gets the most recent health check results for this BackendService.
- * (backendServices.getHealth)
- *
- * @param string $project
- * @param string $backendService Name of the BackendService resource to which
- * the queried instance belongs.
- * @param Postman_Google_ResourceGroupReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_BackendServiceGroupHealth
- */
- public function getHealth($project, $backendService, Postman_Google_Service_Compute_ResourceGroupReference $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getHealth', array($params), "Postman_Google_Service_Compute_BackendServiceGroupHealth");
- }
-
- /**
- * Creates a BackendService resource in the specified project using the data
- * included in the request. (backendServices.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_BackendService $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_BackendService $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of BackendService resources available to the specified
- * project. (backendServices.listBackendServices)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_BackendServiceList
- */
- public function listBackendServices($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_BackendServiceList");
- }
-
- /**
- * Update the entire content of the BackendService resource. This method
- * supports patch semantics. (backendServices.patch)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $backendService Name of the BackendService resource to update.
- * @param Postman_Google_BackendService $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function patch($project, $backendService, Postman_Google_Service_Compute_BackendService $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Update the entire content of the BackendService resource.
- * (backendServices.update)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $backendService Name of the BackendService resource to update.
- * @param Postman_Google_BackendService $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function update($project, $backendService, Postman_Google_Service_Compute_BackendService $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "diskTypes" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $diskTypes = $computeService->diskTypes;
- *
- */
-class Postman_Google_Service_Compute_DiskTypes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of disk type resources grouped by scope.
- * (diskTypes.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_DiskTypeAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_DiskTypeAggregatedList");
- }
-
- /**
- * Returns the specified disk type resource. (diskTypes.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $diskType Name of the disk type resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_DiskType
- */
- public function get($project, $zone, $diskType, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'diskType' => $diskType);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_DiskType");
- }
-
- /**
- * Retrieves the list of disk type resources available to the specified project.
- * (diskTypes.listDiskTypes)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_DiskTypeList
- */
- public function listDiskTypes($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_DiskTypeList");
- }
-}
-
-/**
- * The "disks" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $disks = $computeService->disks;
- *
- */
-class Postman_Google_Service_Compute_Disks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of disks grouped by scope. (disks.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_DiskAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_DiskAggregatedList");
- }
-
- /**
- * (disks.createSnapshot)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $disk Name of the persistent disk resource to snapshot.
- * @param Postman_Google_Snapshot $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function createSnapshot($project, $zone, $disk, Postman_Google_Service_Compute_Snapshot $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('createSnapshot', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Deletes the specified persistent disk resource. (disks.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $disk Name of the persistent disk resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $zone, $disk, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified persistent disk resource. (disks.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $disk Name of the persistent disk resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Disk
- */
- public function get($project, $zone, $disk, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Disk");
- }
-
- /**
- * Creates a persistent disk resource in the specified project using the data
- * included in the request. (disks.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param Postman_Google_Disk $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sourceImage Optional. Source image to restore onto a disk.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, $zone, Postman_Google_Service_Compute_Disk $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of persistent disk resources contained within the
- * specified zone. (disks.listDisks)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_DiskList
- */
- public function listDisks($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_DiskList");
- }
-}
-
-/**
- * The "firewalls" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $firewalls = $computeService->firewalls;
- *
- */
-class Postman_Google_Service_Compute_Firewalls_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified firewall resource. (firewalls.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $firewall Name of the firewall resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $firewall, $optParams = array())
- {
- $params = array('project' => $project, 'firewall' => $firewall);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified firewall resource. (firewalls.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $firewall Name of the firewall resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Firewall
- */
- public function get($project, $firewall, $optParams = array())
- {
- $params = array('project' => $project, 'firewall' => $firewall);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Firewall");
- }
-
- /**
- * Creates a firewall resource in the specified project using the data included
- * in the request. (firewalls.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_Firewall $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_Firewall $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of firewall resources available to the specified project.
- * (firewalls.listFirewalls)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_FirewallList
- */
- public function listFirewalls($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_FirewallList");
- }
-
- /**
- * Updates the specified firewall resource with the data included in the
- * request. This method supports patch semantics. (firewalls.patch)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $firewall Name of the firewall resource to update.
- * @param Postman_Google_Firewall $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function patch($project, $firewall, Postman_Google_Service_Compute_Firewall $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'firewall' => $firewall, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Updates the specified firewall resource with the data included in the
- * request. (firewalls.update)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $firewall Name of the firewall resource to update.
- * @param Postman_Google_Firewall $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function update($project, $firewall, Postman_Google_Service_Compute_Firewall $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'firewall' => $firewall, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "forwardingRules" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $forwardingRules = $computeService->forwardingRules;
- *
- */
-class Postman_Google_Service_Compute_ForwardingRules_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of forwarding rules grouped by scope.
- * (forwardingRules.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_ForwardingRuleAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_ForwardingRuleAggregatedList");
- }
-
- /**
- * Deletes the specified ForwardingRule resource. (forwardingRules.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $forwardingRule Name of the ForwardingRule resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $region, $forwardingRule, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified ForwardingRule resource. (forwardingRules.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $forwardingRule Name of the ForwardingRule resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_ForwardingRule
- */
- public function get($project, $region, $forwardingRule, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_ForwardingRule");
- }
-
- /**
- * Creates a ForwardingRule resource in the specified project and region using
- * the data included in the request. (forwardingRules.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param Postman_Google_ForwardingRule $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, $region, Postman_Google_Service_Compute_ForwardingRule $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of ForwardingRule resources available to the specified
- * project and region. (forwardingRules.listForwardingRules)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_ForwardingRuleList
- */
- public function listForwardingRules($project, $region, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_ForwardingRuleList");
- }
-
- /**
- * Changes target url for forwarding rule. (forwardingRules.setTarget)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $forwardingRule Name of the ForwardingRule resource in which
- * target is to be set.
- * @param Postman_Google_TargetReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setTarget($project, $region, $forwardingRule, Postman_Google_Service_Compute_TargetReference $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setTarget', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "globalAddresses" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $globalAddresses = $computeService->globalAddresses;
- *
- */
-class Postman_Google_Service_Compute_GlobalAddresses_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified address resource. (globalAddresses.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $address Name of the address resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $address, $optParams = array())
- {
- $params = array('project' => $project, 'address' => $address);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified address resource. (globalAddresses.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $address Name of the address resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Address
- */
- public function get($project, $address, $optParams = array())
- {
- $params = array('project' => $project, 'address' => $address);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Address");
- }
-
- /**
- * Creates an address resource in the specified project using the data included
- * in the request. (globalAddresses.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_Address $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_Address $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of global address resources.
- * (globalAddresses.listGlobalAddresses)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_AddressList
- */
- public function listGlobalAddresses($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_AddressList");
- }
-}
-
-/**
- * The "globalForwardingRules" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $globalForwardingRules = $computeService->globalForwardingRules;
- *
- */
-class Postman_Google_Service_Compute_GlobalForwardingRules_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified ForwardingRule resource. (globalForwardingRules.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $forwardingRule Name of the ForwardingRule resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $forwardingRule, $optParams = array())
- {
- $params = array('project' => $project, 'forwardingRule' => $forwardingRule);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified ForwardingRule resource. (globalForwardingRules.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $forwardingRule Name of the ForwardingRule resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_ForwardingRule
- */
- public function get($project, $forwardingRule, $optParams = array())
- {
- $params = array('project' => $project, 'forwardingRule' => $forwardingRule);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_ForwardingRule");
- }
-
- /**
- * Creates a ForwardingRule resource in the specified project and region using
- * the data included in the request. (globalForwardingRules.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_ForwardingRule $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_ForwardingRule $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of ForwardingRule resources available to the specified
- * project. (globalForwardingRules.listGlobalForwardingRules)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_ForwardingRuleList
- */
- public function listGlobalForwardingRules($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_ForwardingRuleList");
- }
-
- /**
- * Changes target url for forwarding rule. (globalForwardingRules.setTarget)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $forwardingRule Name of the ForwardingRule resource in which
- * target is to be set.
- * @param Postman_Google_TargetReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setTarget($project, $forwardingRule, Postman_Google_Service_Compute_TargetReference $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'forwardingRule' => $forwardingRule, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setTarget', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "globalOperations" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $globalOperations = $computeService->globalOperations;
- *
- */
-class Postman_Google_Service_Compute_GlobalOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of all operations grouped by scope.
- * (globalOperations.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_OperationAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_OperationAggregatedList");
- }
-
- /**
- * Deletes the specified operation resource. (globalOperations.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $operation Name of the operation resource to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves the specified operation resource. (globalOperations.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $operation Name of the operation resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function get($project, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of operation resources contained within the specified
- * project. (globalOperations.listGlobalOperations)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_OperationList
- */
- public function listGlobalOperations($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_OperationList");
- }
-}
-
-/**
- * The "httpHealthChecks" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $httpHealthChecks = $computeService->httpHealthChecks;
- *
- */
-class Postman_Google_Service_Compute_HttpHealthChecks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified HttpHealthCheck resource. (httpHealthChecks.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $httpHealthCheck Name of the HttpHealthCheck resource to
- * delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $httpHealthCheck, $optParams = array())
- {
- $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified HttpHealthCheck resource. (httpHealthChecks.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $httpHealthCheck Name of the HttpHealthCheck resource to
- * return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_HttpHealthCheck
- */
- public function get($project, $httpHealthCheck, $optParams = array())
- {
- $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_HttpHealthCheck");
- }
-
- /**
- * Creates a HttpHealthCheck resource in the specified project using the data
- * included in the request. (httpHealthChecks.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_HttpHealthCheck $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_HttpHealthCheck $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of HttpHealthCheck resources available to the specified
- * project. (httpHealthChecks.listHttpHealthChecks)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_HttpHealthCheckList
- */
- public function listHttpHealthChecks($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_HttpHealthCheckList");
- }
-
- /**
- * Updates a HttpHealthCheck resource in the specified project using the data
- * included in the request. This method supports patch semantics.
- * (httpHealthChecks.patch)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $httpHealthCheck Name of the HttpHealthCheck resource to
- * update.
- * @param Postman_Google_HttpHealthCheck $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function patch($project, $httpHealthCheck, Postman_Google_Service_Compute_HttpHealthCheck $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Updates a HttpHealthCheck resource in the specified project using the data
- * included in the request. (httpHealthChecks.update)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $httpHealthCheck Name of the HttpHealthCheck resource to
- * update.
- * @param Postman_Google_HttpHealthCheck $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function update($project, $httpHealthCheck, Postman_Google_Service_Compute_HttpHealthCheck $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "images" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $images = $computeService->images;
- *
- */
-class Postman_Google_Service_Compute_Images_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified image resource. (images.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $image Name of the image resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $image, $optParams = array())
- {
- $params = array('project' => $project, 'image' => $image);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Sets the deprecation status of an image. If no message body is given, clears
- * the deprecation status instead. (images.deprecate)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $image Image name.
- * @param Postman_Google_DeprecationStatus $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function deprecate($project, $image, Postman_Google_Service_Compute_DeprecationStatus $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'image' => $image, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('deprecate', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified image resource. (images.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $image Name of the image resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Image
- */
- public function get($project, $image, $optParams = array())
- {
- $params = array('project' => $project, 'image' => $image);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Image");
- }
-
- /**
- * Creates an image resource in the specified project using the data included in
- * the request. (images.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_Image $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_Image $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of image resources available to the specified project.
- * (images.listImages)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_ImageList
- */
- public function listImages($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_ImageList");
- }
-}
-
-/**
- * The "instanceTemplates" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $instanceTemplates = $computeService->instanceTemplates;
- *
- */
-class Postman_Google_Service_Compute_InstanceTemplates_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified instance template resource. (instanceTemplates.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $instanceTemplate Name of the instance template resource to
- * delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $instanceTemplate, $optParams = array())
- {
- $params = array('project' => $project, 'instanceTemplate' => $instanceTemplate);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified instance template resource. (instanceTemplates.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $instanceTemplate Name of the instance template resource to
- * return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_InstanceTemplate
- */
- public function get($project, $instanceTemplate, $optParams = array())
- {
- $params = array('project' => $project, 'instanceTemplate' => $instanceTemplate);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_InstanceTemplate");
- }
-
- /**
- * Creates an instance template resource in the specified project using the data
- * included in the request. (instanceTemplates.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_InstanceTemplate $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_InstanceTemplate $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of instance template resources contained within the
- * specified project. (instanceTemplates.listInstanceTemplates)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_InstanceTemplateList
- */
- public function listInstanceTemplates($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_InstanceTemplateList");
- }
-}
-
-/**
- * The "instances" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $instances = $computeService->instances;
- *
- */
-class Postman_Google_Service_Compute_Instances_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Adds an access config to an instance's network interface.
- * (instances.addAccessConfig)
- *
- * @param string $project Project name.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Instance name.
- * @param string $networkInterface Network interface name.
- * @param Postman_Google_AccessConfig $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function addAccessConfig($project, $zone, $instance, $networkInterface, Postman_Google_Service_Compute_AccessConfig $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'networkInterface' => $networkInterface, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('addAccessConfig', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * (instances.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_InstanceAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_InstanceAggregatedList");
- }
-
- /**
- * Attaches a disk resource to an instance. (instances.attachDisk)
- *
- * @param string $project Project name.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Instance name.
- * @param Postman_Google_AttachedDisk $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function attachDisk($project, $zone, $instance, Postman_Google_Service_Compute_AttachedDisk $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('attachDisk', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Deletes the specified instance resource. (instances.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Name of the instance resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $zone, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Deletes an access config from an instance's network interface.
- * (instances.deleteAccessConfig)
- *
- * @param string $project Project name.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Instance name.
- * @param string $accessConfig Access config name.
- * @param string $networkInterface Network interface name.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function deleteAccessConfig($project, $zone, $instance, $accessConfig, $networkInterface, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'accessConfig' => $accessConfig, 'networkInterface' => $networkInterface);
- $params = array_merge($params, $optParams);
- return $this->call('deleteAccessConfig', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Detaches a disk from an instance. (instances.detachDisk)
- *
- * @param string $project Project name.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Instance name.
- * @param string $deviceName Disk device name to detach.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function detachDisk($project, $zone, $instance, $deviceName, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'deviceName' => $deviceName);
- $params = array_merge($params, $optParams);
- return $this->call('detachDisk', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified instance resource. (instances.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Name of the instance resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Instance
- */
- public function get($project, $zone, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Instance");
- }
-
- /**
- * Returns the specified instance's serial port output.
- * (instances.getSerialPortOutput)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Name of the instance scoping this request.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_SerialPortOutput
- */
- public function getSerialPortOutput($project, $zone, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('getSerialPortOutput', array($params), "Postman_Google_Service_Compute_SerialPortOutput");
- }
-
- /**
- * Creates an instance resource in the specified project using the data included
- * in the request. (instances.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param Postman_Google_Instance $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, $zone, Postman_Google_Service_Compute_Instance $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of instance resources contained within the specified zone.
- * (instances.listInstances)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_InstanceList
- */
- public function listInstances($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_InstanceList");
- }
-
- /**
- * Performs a hard reset on the instance. (instances.reset)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Name of the instance scoping this request.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function reset($project, $zone, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Sets the auto-delete flag for a disk attached to an instance
- * (instances.setDiskAutoDelete)
- *
- * @param string $project Project name.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Instance name.
- * @param bool $autoDelete Whether to auto-delete the disk when the instance is
- * deleted.
- * @param string $deviceName Disk device name to modify.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setDiskAutoDelete($project, $zone, $instance, $autoDelete, $deviceName, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'autoDelete' => $autoDelete, 'deviceName' => $deviceName);
- $params = array_merge($params, $optParams);
- return $this->call('setDiskAutoDelete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Sets metadata for the specified instance to the data included in the request.
- * (instances.setMetadata)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Name of the instance scoping this request.
- * @param Postman_Google_Metadata $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setMetadata($project, $zone, $instance, Postman_Google_Service_Compute_Metadata $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setMetadata', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Sets an instance's scheduling options. (instances.setScheduling)
- *
- * @param string $project Project name.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Instance name.
- * @param Postman_Google_Scheduling $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setScheduling($project, $zone, $instance, Postman_Google_Service_Compute_Scheduling $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setScheduling', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Sets tags for the specified instance to the data included in the request.
- * (instances.setTags)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $instance Name of the instance scoping this request.
- * @param Postman_Google_Tags $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setTags($project, $zone, $instance, Postman_Google_Service_Compute_Tags $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setTags', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "licenses" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $licenses = $computeService->licenses;
- *
- */
-class Postman_Google_Service_Compute_Licenses_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the specified license resource. (licenses.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $license Name of the license resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_License
- */
- public function get($project, $license, $optParams = array())
- {
- $params = array('project' => $project, 'license' => $license);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_License");
- }
-}
-
-/**
- * The "machineTypes" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $machineTypes = $computeService->machineTypes;
- *
- */
-class Postman_Google_Service_Compute_MachineTypes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of machine type resources grouped by scope.
- * (machineTypes.aggregatedList)
- *
- * @param string $project Project ID for this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_MachineTypeAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_MachineTypeAggregatedList");
- }
-
- /**
- * Returns the specified machine type resource. (machineTypes.get)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $machineType Name of the machine type resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_MachineType
- */
- public function get($project, $zone, $machineType, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'machineType' => $machineType);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_MachineType");
- }
-
- /**
- * Retrieves the list of machine type resources available to the specified
- * project. (machineTypes.listMachineTypes)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_MachineTypeList
- */
- public function listMachineTypes($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_MachineTypeList");
- }
-}
-
-/**
- * The "networks" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $networks = $computeService->networks;
- *
- */
-class Postman_Google_Service_Compute_Networks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified network resource. (networks.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $network Name of the network resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $network, $optParams = array())
- {
- $params = array('project' => $project, 'network' => $network);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified network resource. (networks.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $network Name of the network resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Network
- */
- public function get($project, $network, $optParams = array())
- {
- $params = array('project' => $project, 'network' => $network);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Network");
- }
-
- /**
- * Creates a network resource in the specified project using the data included
- * in the request. (networks.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_Network $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_Network $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of network resources available to the specified project.
- * (networks.listNetworks)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_NetworkList
- */
- public function listNetworks($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_NetworkList");
- }
-}
-
-/**
- * The "projects" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $projects = $computeService->projects;
- *
- */
-class Postman_Google_Service_Compute_Projects_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the specified project resource. (projects.get)
- *
- * @param string $project Name of the project resource to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Project
- */
- public function get($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Project");
- }
-
- /**
- * Sets metadata common to all instances within the specified project using the
- * data included in the request. (projects.setCommonInstanceMetadata)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_Metadata $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setCommonInstanceMetadata($project, Postman_Google_Service_Compute_Metadata $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setCommonInstanceMetadata', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Sets usage export location (projects.setUsageExportBucket)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_UsageExportLocation $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setUsageExportBucket($project, Postman_Google_Service_Compute_UsageExportLocation $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setUsageExportBucket', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "regionOperations" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $regionOperations = $computeService->regionOperations;
- *
- */
-class Postman_Google_Service_Compute_RegionOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified region-specific operation resource.
- * (regionOperations.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $operation Name of the operation resource to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $region, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves the specified region-specific operation resource.
- * (regionOperations.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the zone scoping this request.
- * @param string $operation Name of the operation resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function get($project, $region, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of operation resources contained within the specified
- * region. (regionOperations.listRegionOperations)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_OperationList
- */
- public function listRegionOperations($project, $region, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_OperationList");
- }
-}
-
-/**
- * The "regions" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $regions = $computeService->regions;
- *
- */
-class Postman_Google_Service_Compute_Regions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the specified region resource. (regions.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Region
- */
- public function get($project, $region, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Region");
- }
-
- /**
- * Retrieves the list of region resources available to the specified project.
- * (regions.listRegions)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_RegionList
- */
- public function listRegions($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_RegionList");
- }
-}
-
-/**
- * The "routes" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $routes = $computeService->routes;
- *
- */
-class Postman_Google_Service_Compute_Routes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified route resource. (routes.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $route Name of the route resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $route, $optParams = array())
- {
- $params = array('project' => $project, 'route' => $route);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified route resource. (routes.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $route Name of the route resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Route
- */
- public function get($project, $route, $optParams = array())
- {
- $params = array('project' => $project, 'route' => $route);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Route");
- }
-
- /**
- * Creates a route resource in the specified project using the data included in
- * the request. (routes.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_Route $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_Route $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of route resources available to the specified project.
- * (routes.listRoutes)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_RouteList
- */
- public function listRoutes($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_RouteList");
- }
-}
-
-/**
- * The "snapshots" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $snapshots = $computeService->snapshots;
- *
- */
-class Postman_Google_Service_Compute_Snapshots_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified persistent disk snapshot resource. (snapshots.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $snapshot Name of the persistent disk snapshot resource to
- * delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $snapshot, $optParams = array())
- {
- $params = array('project' => $project, 'snapshot' => $snapshot);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified persistent disk snapshot resource. (snapshots.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $snapshot Name of the persistent disk snapshot resource to
- * return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Snapshot
- */
- public function get($project, $snapshot, $optParams = array())
- {
- $params = array('project' => $project, 'snapshot' => $snapshot);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Snapshot");
- }
-
- /**
- * Retrieves the list of persistent disk snapshot resources contained within the
- * specified project. (snapshots.listSnapshots)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_SnapshotList
- */
- public function listSnapshots($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_SnapshotList");
- }
-}
-
-/**
- * The "targetHttpProxies" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $targetHttpProxies = $computeService->targetHttpProxies;
- *
- */
-class Postman_Google_Service_Compute_TargetHttpProxies_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified TargetHttpProxy resource. (targetHttpProxies.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $targetHttpProxy Name of the TargetHttpProxy resource to
- * delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $targetHttpProxy, $optParams = array())
- {
- $params = array('project' => $project, 'targetHttpProxy' => $targetHttpProxy);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified TargetHttpProxy resource. (targetHttpProxies.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $targetHttpProxy Name of the TargetHttpProxy resource to
- * return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_TargetHttpProxy
- */
- public function get($project, $targetHttpProxy, $optParams = array())
- {
- $params = array('project' => $project, 'targetHttpProxy' => $targetHttpProxy);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_TargetHttpProxy");
- }
-
- /**
- * Creates a TargetHttpProxy resource in the specified project using the data
- * included in the request. (targetHttpProxies.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_TargetHttpProxy $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_TargetHttpProxy $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of TargetHttpProxy resources available to the specified
- * project. (targetHttpProxies.listTargetHttpProxies)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_TargetHttpProxyList
- */
- public function listTargetHttpProxies($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_TargetHttpProxyList");
- }
-
- /**
- * Changes the URL map for TargetHttpProxy. (targetHttpProxies.setUrlMap)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $targetHttpProxy Name of the TargetHttpProxy resource whose URL
- * map is to be set.
- * @param Postman_Google_UrlMapReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setUrlMap($project, $targetHttpProxy, Postman_Google_Service_Compute_UrlMapReference $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'targetHttpProxy' => $targetHttpProxy, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setUrlMap', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "targetInstances" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $targetInstances = $computeService->targetInstances;
- *
- */
-class Postman_Google_Service_Compute_TargetInstances_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of target instances grouped by scope.
- * (targetInstances.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_TargetInstanceAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_TargetInstanceAggregatedList");
- }
-
- /**
- * Deletes the specified TargetInstance resource. (targetInstances.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $targetInstance Name of the TargetInstance resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $zone, $targetInstance, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'targetInstance' => $targetInstance);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified TargetInstance resource. (targetInstances.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $targetInstance Name of the TargetInstance resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_TargetInstance
- */
- public function get($project, $zone, $targetInstance, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'targetInstance' => $targetInstance);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_TargetInstance");
- }
-
- /**
- * Creates a TargetInstance resource in the specified project and zone using the
- * data included in the request. (targetInstances.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param Postman_Google_TargetInstance $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, $zone, Postman_Google_Service_Compute_TargetInstance $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of TargetInstance resources available to the specified
- * project and zone. (targetInstances.listTargetInstances)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_TargetInstanceList
- */
- public function listTargetInstances($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_TargetInstanceList");
- }
-}
-
-/**
- * The "targetPools" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $targetPools = $computeService->targetPools;
- *
- */
-class Postman_Google_Service_Compute_TargetPools_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Adds health check URL to targetPool. (targetPools.addHealthCheck)
- *
- * @param string $project
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to which
- * health_check_url is to be added.
- * @param Postman_Google_TargetPoolsAddHealthCheckRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function addHealthCheck($project, $region, $targetPool, Postman_Google_Service_Compute_TargetPoolsAddHealthCheckRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('addHealthCheck', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Adds instance url to targetPool. (targetPools.addInstance)
- *
- * @param string $project
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to which
- * instance_url is to be added.
- * @param Postman_Google_TargetPoolsAddInstanceRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function addInstance($project, $region, $targetPool, Postman_Google_Service_Compute_TargetPoolsAddInstanceRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('addInstance', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of target pools grouped by scope.
- * (targetPools.aggregatedList)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_TargetPoolAggregatedList
- */
- public function aggregatedList($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('aggregatedList', array($params), "Postman_Google_Service_Compute_TargetPoolAggregatedList");
- }
-
- /**
- * Deletes the specified TargetPool resource. (targetPools.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $region, $targetPool, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified TargetPool resource. (targetPools.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_TargetPool
- */
- public function get($project, $region, $targetPool, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_TargetPool");
- }
-
- /**
- * Gets the most recent health check results for each IP for the given instance
- * that is referenced by given TargetPool. (targetPools.getHealth)
- *
- * @param string $project
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to which the
- * queried instance belongs.
- * @param Postman_Google_InstanceReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_TargetPoolInstanceHealth
- */
- public function getHealth($project, $region, $targetPool, Postman_Google_Service_Compute_InstanceReference $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getHealth', array($params), "Postman_Google_Service_Compute_TargetPoolInstanceHealth");
- }
-
- /**
- * Creates a TargetPool resource in the specified project and region using the
- * data included in the request. (targetPools.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param Postman_Google_TargetPool $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, $region, Postman_Google_Service_Compute_TargetPool $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of TargetPool resources available to the specified project
- * and region. (targetPools.listTargetPools)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_TargetPoolList
- */
- public function listTargetPools($project, $region, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_TargetPoolList");
- }
-
- /**
- * Removes health check URL from targetPool. (targetPools.removeHealthCheck)
- *
- * @param string $project
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to which
- * health_check_url is to be removed.
- * @param Postman_Google_TargetPoolsRemoveHealthCheckRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function removeHealthCheck($project, $region, $targetPool, Postman_Google_Service_Compute_TargetPoolsRemoveHealthCheckRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('removeHealthCheck', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Removes instance URL from targetPool. (targetPools.removeInstance)
- *
- * @param string $project
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource to which
- * instance_url is to be removed.
- * @param Postman_Google_TargetPoolsRemoveInstanceRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function removeInstance($project, $region, $targetPool, Postman_Google_Service_Compute_TargetPoolsRemoveInstanceRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('removeInstance', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Changes backup pool configurations. (targetPools.setBackup)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $region Name of the region scoping this request.
- * @param string $targetPool Name of the TargetPool resource for which the
- * backup is to be set.
- * @param Postman_Google_TargetReference $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param float failoverRatio New failoverRatio value for the containing
- * target pool.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function setBackup($project, $region, $targetPool, Postman_Google_Service_Compute_TargetReference $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setBackup', array($params), "Postman_Google_Service_Compute_Operation");
- }
-}
-
-/**
- * The "urlMaps" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $urlMaps = $computeService->urlMaps;
- *
- */
-class Postman_Google_Service_Compute_UrlMaps_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified UrlMap resource. (urlMaps.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $urlMap Name of the UrlMap resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function delete($project, $urlMap, $optParams = array())
- {
- $params = array('project' => $project, 'urlMap' => $urlMap);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Returns the specified UrlMap resource. (urlMaps.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $urlMap Name of the UrlMap resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_UrlMap
- */
- public function get($project, $urlMap, $optParams = array())
- {
- $params = array('project' => $project, 'urlMap' => $urlMap);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_UrlMap");
- }
-
- /**
- * Creates a UrlMap resource in the specified project using the data included in
- * the request. (urlMaps.insert)
- *
- * @param string $project Name of the project scoping this request.
- * @param Postman_Google_UrlMap $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function insert($project, Postman_Google_Service_Compute_UrlMap $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of UrlMap resources available to the specified project.
- * (urlMaps.listUrlMaps)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_UrlMapList
- */
- public function listUrlMaps($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_UrlMapList");
- }
-
- /**
- * Update the entire content of the UrlMap resource. This method supports patch
- * semantics. (urlMaps.patch)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $urlMap Name of the UrlMap resource to update.
- * @param Postman_Google_UrlMap $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function patch($project, $urlMap, Postman_Google_Service_Compute_UrlMap $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Update the entire content of the UrlMap resource. (urlMaps.update)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $urlMap Name of the UrlMap resource to update.
- * @param Postman_Google_UrlMap $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function update($project, $urlMap, Postman_Google_Service_Compute_UrlMap $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Run static validation for the UrlMap. In particular, the tests of the
- * provided UrlMap will be run. Calling this method does NOT create the UrlMap.
- * (urlMaps.validate)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $urlMap Name of the UrlMap resource to be validated as.
- * @param Postman_Google_UrlMapsValidateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_UrlMapsValidateResponse
- */
- public function validate($project, $urlMap, Postman_Google_Service_Compute_UrlMapsValidateRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('validate', array($params), "Postman_Google_Service_Compute_UrlMapsValidateResponse");
- }
-}
-
-/**
- * The "zoneOperations" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $zoneOperations = $computeService->zoneOperations;
- *
- */
-class Postman_Google_Service_Compute_ZoneOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the specified zone-specific operation resource.
- * (zoneOperations.delete)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $operation Name of the operation resource to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $zone, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves the specified zone-specific operation resource.
- * (zoneOperations.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $operation Name of the operation resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Operation
- */
- public function get($project, $zone, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Operation");
- }
-
- /**
- * Retrieves the list of operation resources contained within the specified
- * zone. (zoneOperations.listZoneOperations)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_OperationList
- */
- public function listZoneOperations($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_OperationList");
- }
-}
-
-/**
- * The "zones" collection of methods.
- * Typical usage is:
- *
- * $computeService = new Postman_Google_Service_Compute(...);
- * $zones = $computeService->zones;
- *
- */
-class Postman_Google_Service_Compute_Zones_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the specified zone resource. (zones.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Compute_Zone
- */
- public function get($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Compute_Zone");
- }
-
- /**
- * Retrieves the list of zone resources available to the specified project.
- * (zones.listZones)
- *
- * @param string $project Name of the project scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Compute_ZoneList
- */
- public function listZones($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Compute_ZoneList");
- }
-}
-
-
-
-
-class Postman_Google_Service_Compute_AccessConfig extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $name;
- public $natIP;
- public $type;
-
-
- 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 setNatIP($natIP)
- {
- $this->natIP = $natIP;
- }
- public function getNatIP()
- {
- return $this->natIP;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Compute_Address extends Postman_Google_Collection
-{
- protected $collection_key = 'users';
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $region;
- public $selfLink;
- public $status;
- public $users;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUsers($users)
- {
- $this->users = $users;
- }
- public function getUsers()
- {
- return $this->users;
- }
-}
-
-class Postman_Google_Service_Compute_AddressAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_AddressesScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_AddressAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_AddressList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Address';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_AddressesScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'addresses';
- protected $internal_gapi_mappings = array(
- );
- protected $addressesType = 'Postman_Google_Service_Compute_Address';
- protected $addressesDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_AddressesScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setAddresses($addresses)
- {
- $this->addresses = $addresses;
- }
- public function getAddresses()
- {
- return $this->addresses;
- }
- public function setWarning(Postman_Google_Service_Compute_AddressesScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_AddressesScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_AddressesScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_AddressesScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_AttachedDisk extends Postman_Google_Collection
-{
- protected $collection_key = 'licenses';
- protected $internal_gapi_mappings = array(
- );
- public $autoDelete;
- public $boot;
- public $deviceName;
- public $index;
- protected $initializeParamsType = 'Postman_Google_Service_Compute_AttachedDiskInitializeParams';
- protected $initializeParamsDataType = '';
- public $interface;
- public $kind;
- public $licenses;
- public $mode;
- public $source;
- public $type;
-
-
- public function setAutoDelete($autoDelete)
- {
- $this->autoDelete = $autoDelete;
- }
- public function getAutoDelete()
- {
- return $this->autoDelete;
- }
- public function setBoot($boot)
- {
- $this->boot = $boot;
- }
- public function getBoot()
- {
- return $this->boot;
- }
- public function setDeviceName($deviceName)
- {
- $this->deviceName = $deviceName;
- }
- public function getDeviceName()
- {
- return $this->deviceName;
- }
- public function setIndex($index)
- {
- $this->index = $index;
- }
- public function getIndex()
- {
- return $this->index;
- }
- public function setInitializeParams(Postman_Google_Service_Compute_AttachedDiskInitializeParams $initializeParams)
- {
- $this->initializeParams = $initializeParams;
- }
- public function getInitializeParams()
- {
- return $this->initializeParams;
- }
- public function setInterface($interface)
- {
- $this->interface = $interface;
- }
- public function getInterface()
- {
- return $this->interface;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLicenses($licenses)
- {
- $this->licenses = $licenses;
- }
- public function getLicenses()
- {
- return $this->licenses;
- }
- public function setMode($mode)
- {
- $this->mode = $mode;
- }
- public function getMode()
- {
- return $this->mode;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Compute_AttachedDiskInitializeParams extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $diskName;
- public $diskSizeGb;
- public $diskType;
- public $sourceImage;
-
-
- public function setDiskName($diskName)
- {
- $this->diskName = $diskName;
- }
- public function getDiskName()
- {
- return $this->diskName;
- }
- public function setDiskSizeGb($diskSizeGb)
- {
- $this->diskSizeGb = $diskSizeGb;
- }
- public function getDiskSizeGb()
- {
- return $this->diskSizeGb;
- }
- public function setDiskType($diskType)
- {
- $this->diskType = $diskType;
- }
- public function getDiskType()
- {
- return $this->diskType;
- }
- public function setSourceImage($sourceImage)
- {
- $this->sourceImage = $sourceImage;
- }
- public function getSourceImage()
- {
- return $this->sourceImage;
- }
-}
-
-class Postman_Google_Service_Compute_Backend extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $balancingMode;
- public $capacityScaler;
- public $description;
- public $group;
- public $maxRate;
- public $maxRatePerInstance;
- public $maxUtilization;
-
-
- public function setBalancingMode($balancingMode)
- {
- $this->balancingMode = $balancingMode;
- }
- public function getBalancingMode()
- {
- return $this->balancingMode;
- }
- public function setCapacityScaler($capacityScaler)
- {
- $this->capacityScaler = $capacityScaler;
- }
- public function getCapacityScaler()
- {
- return $this->capacityScaler;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setGroup($group)
- {
- $this->group = $group;
- }
- public function getGroup()
- {
- return $this->group;
- }
- public function setMaxRate($maxRate)
- {
- $this->maxRate = $maxRate;
- }
- public function getMaxRate()
- {
- return $this->maxRate;
- }
- public function setMaxRatePerInstance($maxRatePerInstance)
- {
- $this->maxRatePerInstance = $maxRatePerInstance;
- }
- public function getMaxRatePerInstance()
- {
- return $this->maxRatePerInstance;
- }
- public function setMaxUtilization($maxUtilization)
- {
- $this->maxUtilization = $maxUtilization;
- }
- public function getMaxUtilization()
- {
- return $this->maxUtilization;
- }
-}
-
-class Postman_Google_Service_Compute_BackendService extends Postman_Google_Collection
-{
- protected $collection_key = 'healthChecks';
- protected $internal_gapi_mappings = array(
- );
- protected $backendsType = 'Postman_Google_Service_Compute_Backend';
- protected $backendsDataType = 'array';
- public $creationTimestamp;
- public $description;
- public $fingerprint;
- public $healthChecks;
- public $id;
- public $kind;
- public $name;
- public $port;
- public $portName;
- public $protocol;
- public $selfLink;
- public $timeoutSec;
-
-
- public function setBackends($backends)
- {
- $this->backends = $backends;
- }
- public function getBackends()
- {
- return $this->backends;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setHealthChecks($healthChecks)
- {
- $this->healthChecks = $healthChecks;
- }
- public function getHealthChecks()
- {
- return $this->healthChecks;
- }
- 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 setPort($port)
- {
- $this->port = $port;
- }
- public function getPort()
- {
- return $this->port;
- }
- public function setPortName($portName)
- {
- $this->portName = $portName;
- }
- public function getPortName()
- {
- return $this->portName;
- }
- public function setProtocol($protocol)
- {
- $this->protocol = $protocol;
- }
- public function getProtocol()
- {
- return $this->protocol;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTimeoutSec($timeoutSec)
- {
- $this->timeoutSec = $timeoutSec;
- }
- public function getTimeoutSec()
- {
- return $this->timeoutSec;
- }
-}
-
-class Postman_Google_Service_Compute_BackendServiceGroupHealth extends Postman_Google_Collection
-{
- protected $collection_key = 'healthStatus';
- protected $internal_gapi_mappings = array(
- );
- protected $healthStatusType = 'Postman_Google_Service_Compute_HealthStatus';
- protected $healthStatusDataType = 'array';
- public $kind;
-
-
- public function setHealthStatus($healthStatus)
- {
- $this->healthStatus = $healthStatus;
- }
- public function getHealthStatus()
- {
- return $this->healthStatus;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Compute_BackendServiceList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_BackendService';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_DeprecationStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deleted;
- public $deprecated;
- public $obsolete;
- public $replacement;
- public $state;
-
-
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setDeprecated($deprecated)
- {
- $this->deprecated = $deprecated;
- }
- public function getDeprecated()
- {
- return $this->deprecated;
- }
- public function setObsolete($obsolete)
- {
- $this->obsolete = $obsolete;
- }
- public function getObsolete()
- {
- return $this->obsolete;
- }
- public function setReplacement($replacement)
- {
- $this->replacement = $replacement;
- }
- public function getReplacement()
- {
- return $this->replacement;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Compute_Disk extends Postman_Google_Collection
-{
- protected $collection_key = 'licenses';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $licenses;
- public $name;
- public $options;
- public $selfLink;
- public $sizeGb;
- public $sourceImage;
- public $sourceImageId;
- public $sourceSnapshot;
- public $sourceSnapshotId;
- public $status;
- public $type;
- public $zone;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setLicenses($licenses)
- {
- $this->licenses = $licenses;
- }
- public function getLicenses()
- {
- return $this->licenses;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOptions($options)
- {
- $this->options = $options;
- }
- public function getOptions()
- {
- return $this->options;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSizeGb($sizeGb)
- {
- $this->sizeGb = $sizeGb;
- }
- public function getSizeGb()
- {
- return $this->sizeGb;
- }
- public function setSourceImage($sourceImage)
- {
- $this->sourceImage = $sourceImage;
- }
- public function getSourceImage()
- {
- return $this->sourceImage;
- }
- public function setSourceImageId($sourceImageId)
- {
- $this->sourceImageId = $sourceImageId;
- }
- public function getSourceImageId()
- {
- return $this->sourceImageId;
- }
- public function setSourceSnapshot($sourceSnapshot)
- {
- $this->sourceSnapshot = $sourceSnapshot;
- }
- public function getSourceSnapshot()
- {
- return $this->sourceSnapshot;
- }
- public function setSourceSnapshotId($sourceSnapshotId)
- {
- $this->sourceSnapshotId = $sourceSnapshotId;
- }
- public function getSourceSnapshotId()
- {
- return $this->sourceSnapshotId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Compute_DiskAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_DisksScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_DiskAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_DiskList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Disk';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_DiskType extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $defaultDiskSizeGb;
- protected $deprecatedType = 'Postman_Google_Service_Compute_DeprecationStatus';
- protected $deprecatedDataType = '';
- public $description;
- public $id;
- public $kind;
- public $name;
- public $selfLink;
- public $validDiskSize;
- public $zone;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDefaultDiskSizeGb($defaultDiskSizeGb)
- {
- $this->defaultDiskSizeGb = $defaultDiskSizeGb;
- }
- public function getDefaultDiskSizeGb()
- {
- return $this->defaultDiskSizeGb;
- }
- public function setDeprecated(Postman_Google_Service_Compute_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;
- }
- public function setValidDiskSize($validDiskSize)
- {
- $this->validDiskSize = $validDiskSize;
- }
- public function getValidDiskSize()
- {
- return $this->validDiskSize;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Compute_DiskTypeAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_DiskTypesScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_DiskTypeAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_DiskTypeList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_DiskType';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_DiskTypesScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'diskTypes';
- protected $internal_gapi_mappings = array(
- );
- protected $diskTypesType = 'Postman_Google_Service_Compute_DiskType';
- protected $diskTypesDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_DiskTypesScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setDiskTypes($diskTypes)
- {
- $this->diskTypes = $diskTypes;
- }
- public function getDiskTypes()
- {
- return $this->diskTypes;
- }
- public function setWarning(Postman_Google_Service_Compute_DiskTypesScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_DiskTypesScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_DiskTypesScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_DiskTypesScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_DisksScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'disks';
- protected $internal_gapi_mappings = array(
- );
- protected $disksType = 'Postman_Google_Service_Compute_Disk';
- protected $disksDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_DisksScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setDisks($disks)
- {
- $this->disks = $disks;
- }
- public function getDisks()
- {
- return $this->disks;
- }
- public function setWarning(Postman_Google_Service_Compute_DisksScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_DisksScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_DisksScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_DisksScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_Firewall extends Postman_Google_Collection
-{
- protected $collection_key = 'targetTags';
- protected $internal_gapi_mappings = array(
- );
- protected $allowedType = 'Postman_Google_Service_Compute_FirewallAllowed';
- protected $allowedDataType = 'array';
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $network;
- public $selfLink;
- public $sourceRanges;
- public $sourceTags;
- public $targetTags;
-
-
- public function setAllowed($allowed)
- {
- $this->allowed = $allowed;
- }
- public function getAllowed()
- {
- return $this->allowed;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSourceRanges($sourceRanges)
- {
- $this->sourceRanges = $sourceRanges;
- }
- public function getSourceRanges()
- {
- return $this->sourceRanges;
- }
- public function setSourceTags($sourceTags)
- {
- $this->sourceTags = $sourceTags;
- }
- public function getSourceTags()
- {
- return $this->sourceTags;
- }
- public function setTargetTags($targetTags)
- {
- $this->targetTags = $targetTags;
- }
- public function getTargetTags()
- {
- return $this->targetTags;
- }
-}
-
-class Postman_Google_Service_Compute_FirewallAllowed extends Postman_Google_Collection
-{
- protected $collection_key = 'ports';
- protected $internal_gapi_mappings = array(
- "iPProtocol" => "IPProtocol",
- );
- public $iPProtocol;
- public $ports;
-
-
- public function setIPProtocol($iPProtocol)
- {
- $this->iPProtocol = $iPProtocol;
- }
- public function getIPProtocol()
- {
- return $this->iPProtocol;
- }
- public function setPorts($ports)
- {
- $this->ports = $ports;
- }
- public function getPorts()
- {
- return $this->ports;
- }
-}
-
-class Postman_Google_Service_Compute_FirewallList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Firewall';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ForwardingRule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "iPAddress" => "IPAddress",
- "iPProtocol" => "IPProtocol",
- );
- public $iPAddress;
- public $iPProtocol;
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $portRange;
- public $region;
- public $selfLink;
- public $target;
-
-
- public function setIPAddress($iPAddress)
- {
- $this->iPAddress = $iPAddress;
- }
- public function getIPAddress()
- {
- return $this->iPAddress;
- }
- public function setIPProtocol($iPProtocol)
- {
- $this->iPProtocol = $iPProtocol;
- }
- public function getIPProtocol()
- {
- return $this->iPProtocol;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setPortRange($portRange)
- {
- $this->portRange = $portRange;
- }
- public function getPortRange()
- {
- return $this->portRange;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTarget($target)
- {
- $this->target = $target;
- }
- public function getTarget()
- {
- return $this->target;
- }
-}
-
-class Postman_Google_Service_Compute_ForwardingRuleAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_ForwardingRulesScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ForwardingRuleAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_ForwardingRuleList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_ForwardingRule';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ForwardingRulesScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'forwardingRules';
- protected $internal_gapi_mappings = array(
- );
- protected $forwardingRulesType = 'Postman_Google_Service_Compute_ForwardingRule';
- protected $forwardingRulesDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_ForwardingRulesScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setForwardingRules($forwardingRules)
- {
- $this->forwardingRules = $forwardingRules;
- }
- public function getForwardingRules()
- {
- return $this->forwardingRules;
- }
- public function setWarning(Postman_Google_Service_Compute_ForwardingRulesScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_ForwardingRulesScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_ForwardingRulesScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_ForwardingRulesScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_HealthCheckReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $healthCheck;
-
-
- public function setHealthCheck($healthCheck)
- {
- $this->healthCheck = $healthCheck;
- }
- public function getHealthCheck()
- {
- return $this->healthCheck;
- }
-}
-
-class Postman_Google_Service_Compute_HealthStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $healthState;
- public $instance;
- public $ipAddress;
- public $port;
-
-
- public function setHealthState($healthState)
- {
- $this->healthState = $healthState;
- }
- public function getHealthState()
- {
- return $this->healthState;
- }
- public function setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
- public function setIpAddress($ipAddress)
- {
- $this->ipAddress = $ipAddress;
- }
- public function getIpAddress()
- {
- return $this->ipAddress;
- }
- public function setPort($port)
- {
- $this->port = $port;
- }
- public function getPort()
- {
- return $this->port;
- }
-}
-
-class Postman_Google_Service_Compute_HostRule extends Postman_Google_Collection
-{
- protected $collection_key = 'hosts';
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $hosts;
- public $pathMatcher;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setHosts($hosts)
- {
- $this->hosts = $hosts;
- }
- public function getHosts()
- {
- return $this->hosts;
- }
- public function setPathMatcher($pathMatcher)
- {
- $this->pathMatcher = $pathMatcher;
- }
- public function getPathMatcher()
- {
- return $this->pathMatcher;
- }
-}
-
-class Postman_Google_Service_Compute_HttpHealthCheck extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $checkIntervalSec;
- public $creationTimestamp;
- public $description;
- public $healthyThreshold;
- public $host;
- public $id;
- public $kind;
- public $name;
- public $port;
- public $requestPath;
- public $selfLink;
- public $timeoutSec;
- public $unhealthyThreshold;
-
-
- public function setCheckIntervalSec($checkIntervalSec)
- {
- $this->checkIntervalSec = $checkIntervalSec;
- }
- public function getCheckIntervalSec()
- {
- return $this->checkIntervalSec;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setHealthyThreshold($healthyThreshold)
- {
- $this->healthyThreshold = $healthyThreshold;
- }
- public function getHealthyThreshold()
- {
- return $this->healthyThreshold;
- }
- public function setHost($host)
- {
- $this->host = $host;
- }
- public function getHost()
- {
- return $this->host;
- }
- 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 setPort($port)
- {
- $this->port = $port;
- }
- public function getPort()
- {
- return $this->port;
- }
- public function setRequestPath($requestPath)
- {
- $this->requestPath = $requestPath;
- }
- public function getRequestPath()
- {
- return $this->requestPath;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTimeoutSec($timeoutSec)
- {
- $this->timeoutSec = $timeoutSec;
- }
- public function getTimeoutSec()
- {
- return $this->timeoutSec;
- }
- public function setUnhealthyThreshold($unhealthyThreshold)
- {
- $this->unhealthyThreshold = $unhealthyThreshold;
- }
- public function getUnhealthyThreshold()
- {
- return $this->unhealthyThreshold;
- }
-}
-
-class Postman_Google_Service_Compute_HttpHealthCheckList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_HttpHealthCheck';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_Image extends Postman_Google_Collection
-{
- protected $collection_key = 'licenses';
- protected $internal_gapi_mappings = array(
- );
- public $archiveSizeBytes;
- public $creationTimestamp;
- protected $deprecatedType = 'Postman_Google_Service_Compute_DeprecationStatus';
- protected $deprecatedDataType = '';
- public $description;
- public $diskSizeGb;
- public $id;
- public $kind;
- public $licenses;
- public $name;
- protected $rawDiskType = 'Postman_Google_Service_Compute_ImageRawDisk';
- protected $rawDiskDataType = '';
- public $selfLink;
- public $sourceDisk;
- public $sourceDiskId;
- public $sourceType;
- public $status;
-
-
- public function setArchiveSizeBytes($archiveSizeBytes)
- {
- $this->archiveSizeBytes = $archiveSizeBytes;
- }
- public function getArchiveSizeBytes()
- {
- return $this->archiveSizeBytes;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDeprecated(Postman_Google_Service_Compute_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 setDiskSizeGb($diskSizeGb)
- {
- $this->diskSizeGb = $diskSizeGb;
- }
- public function getDiskSizeGb()
- {
- return $this->diskSizeGb;
- }
- 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 setLicenses($licenses)
- {
- $this->licenses = $licenses;
- }
- public function getLicenses()
- {
- return $this->licenses;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setRawDisk(Postman_Google_Service_Compute_ImageRawDisk $rawDisk)
- {
- $this->rawDisk = $rawDisk;
- }
- public function getRawDisk()
- {
- return $this->rawDisk;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSourceDisk($sourceDisk)
- {
- $this->sourceDisk = $sourceDisk;
- }
- public function getSourceDisk()
- {
- return $this->sourceDisk;
- }
- public function setSourceDiskId($sourceDiskId)
- {
- $this->sourceDiskId = $sourceDiskId;
- }
- public function getSourceDiskId()
- {
- return $this->sourceDiskId;
- }
- public function setSourceType($sourceType)
- {
- $this->sourceType = $sourceType;
- }
- public function getSourceType()
- {
- return $this->sourceType;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Compute_ImageList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Image';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ImageRawDisk extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $containerType;
- public $sha1Checksum;
- public $source;
-
-
- public function setContainerType($containerType)
- {
- $this->containerType = $containerType;
- }
- public function getContainerType()
- {
- return $this->containerType;
- }
- public function setSha1Checksum($sha1Checksum)
- {
- $this->sha1Checksum = $sha1Checksum;
- }
- public function getSha1Checksum()
- {
- return $this->sha1Checksum;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
-}
-
-class Postman_Google_Service_Compute_Instance extends Postman_Google_Collection
-{
- protected $collection_key = 'serviceAccounts';
- protected $internal_gapi_mappings = array(
- );
- public $canIpForward;
- public $creationTimestamp;
- public $description;
- protected $disksType = 'Postman_Google_Service_Compute_AttachedDisk';
- protected $disksDataType = 'array';
- public $id;
- public $kind;
- public $machineType;
- protected $metadataType = 'Postman_Google_Service_Compute_Metadata';
- protected $metadataDataType = '';
- public $name;
- protected $networkInterfacesType = 'Postman_Google_Service_Compute_NetworkInterface';
- protected $networkInterfacesDataType = 'array';
- protected $schedulingType = 'Postman_Google_Service_Compute_Scheduling';
- protected $schedulingDataType = '';
- public $selfLink;
- protected $serviceAccountsType = 'Postman_Google_Service_Compute_ServiceAccount';
- protected $serviceAccountsDataType = 'array';
- public $status;
- public $statusMessage;
- protected $tagsType = 'Postman_Google_Service_Compute_Tags';
- protected $tagsDataType = '';
- public $zone;
-
-
- public function setCanIpForward($canIpForward)
- {
- $this->canIpForward = $canIpForward;
- }
- public function getCanIpForward()
- {
- return $this->canIpForward;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDisks($disks)
- {
- $this->disks = $disks;
- }
- public function getDisks()
- {
- return $this->disks;
- }
- 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 setMachineType($machineType)
- {
- $this->machineType = $machineType;
- }
- public function getMachineType()
- {
- return $this->machineType;
- }
- public function setMetadata(Postman_Google_Service_Compute_Metadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNetworkInterfaces($networkInterfaces)
- {
- $this->networkInterfaces = $networkInterfaces;
- }
- public function getNetworkInterfaces()
- {
- return $this->networkInterfaces;
- }
- public function setScheduling(Postman_Google_Service_Compute_Scheduling $scheduling)
- {
- $this->scheduling = $scheduling;
- }
- public function getScheduling()
- {
- return $this->scheduling;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setServiceAccounts($serviceAccounts)
- {
- $this->serviceAccounts = $serviceAccounts;
- }
- public function getServiceAccounts()
- {
- return $this->serviceAccounts;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusMessage($statusMessage)
- {
- $this->statusMessage = $statusMessage;
- }
- public function getStatusMessage()
- {
- return $this->statusMessage;
- }
- public function setTags(Postman_Google_Service_Compute_Tags $tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Compute_InstanceAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_InstancesScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_InstanceAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_InstanceList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Instance';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_InstanceProperties extends Postman_Google_Collection
-{
- protected $collection_key = 'serviceAccounts';
- protected $internal_gapi_mappings = array(
- );
- public $canIpForward;
- public $description;
- protected $disksType = 'Postman_Google_Service_Compute_AttachedDisk';
- protected $disksDataType = 'array';
- public $machineType;
- protected $metadataType = 'Postman_Google_Service_Compute_Metadata';
- protected $metadataDataType = '';
- protected $networkInterfacesType = 'Postman_Google_Service_Compute_NetworkInterface';
- protected $networkInterfacesDataType = 'array';
- protected $schedulingType = 'Postman_Google_Service_Compute_Scheduling';
- protected $schedulingDataType = '';
- protected $serviceAccountsType = 'Postman_Google_Service_Compute_ServiceAccount';
- protected $serviceAccountsDataType = 'array';
- protected $tagsType = 'Postman_Google_Service_Compute_Tags';
- protected $tagsDataType = '';
-
-
- public function setCanIpForward($canIpForward)
- {
- $this->canIpForward = $canIpForward;
- }
- public function getCanIpForward()
- {
- return $this->canIpForward;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDisks($disks)
- {
- $this->disks = $disks;
- }
- public function getDisks()
- {
- return $this->disks;
- }
- public function setMachineType($machineType)
- {
- $this->machineType = $machineType;
- }
- public function getMachineType()
- {
- return $this->machineType;
- }
- public function setMetadata(Postman_Google_Service_Compute_Metadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setNetworkInterfaces($networkInterfaces)
- {
- $this->networkInterfaces = $networkInterfaces;
- }
- public function getNetworkInterfaces()
- {
- return $this->networkInterfaces;
- }
- public function setScheduling(Postman_Google_Service_Compute_Scheduling $scheduling)
- {
- $this->scheduling = $scheduling;
- }
- public function getScheduling()
- {
- return $this->scheduling;
- }
- public function setServiceAccounts($serviceAccounts)
- {
- $this->serviceAccounts = $serviceAccounts;
- }
- public function getServiceAccounts()
- {
- return $this->serviceAccounts;
- }
- public function setTags(Postman_Google_Service_Compute_Tags $tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
-}
-
-class Postman_Google_Service_Compute_InstanceReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $instance;
-
-
- public function setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
-}
-
-class Postman_Google_Service_Compute_InstanceTemplate extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- protected $propertiesType = 'Postman_Google_Service_Compute_InstanceProperties';
- protected $propertiesDataType = '';
- public $selfLink;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setProperties(Postman_Google_Service_Compute_InstanceProperties $properties)
- {
- $this->properties = $properties;
- }
- public function getProperties()
- {
- return $this->properties;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_InstanceTemplateList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_InstanceTemplate';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_InstancesScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- protected $instancesType = 'Postman_Google_Service_Compute_Instance';
- protected $instancesDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_InstancesScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
- public function setWarning(Postman_Google_Service_Compute_InstancesScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_InstancesScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_InstancesScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_InstancesScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_License extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $chargesUseFee;
- public $kind;
- public $name;
- public $selfLink;
-
-
- public function setChargesUseFee($chargesUseFee)
- {
- $this->chargesUseFee = $chargesUseFee;
- }
- public function getChargesUseFee()
- {
- return $this->chargesUseFee;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Compute_MachineType extends Postman_Google_Collection
-{
- protected $collection_key = 'scratchDisks';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- protected $deprecatedType = 'Postman_Google_Service_Compute_DeprecationStatus';
- protected $deprecatedDataType = '';
- public $description;
- public $guestCpus;
- public $id;
- public $imageSpaceGb;
- public $kind;
- public $maximumPersistentDisks;
- public $maximumPersistentDisksSizeGb;
- public $memoryMb;
- public $name;
- protected $scratchDisksType = 'Postman_Google_Service_Compute_MachineTypeScratchDisks';
- protected $scratchDisksDataType = 'array';
- public $selfLink;
- public $zone;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDeprecated(Postman_Google_Service_Compute_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 setGuestCpus($guestCpus)
- {
- $this->guestCpus = $guestCpus;
- }
- public function getGuestCpus()
- {
- return $this->guestCpus;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImageSpaceGb($imageSpaceGb)
- {
- $this->imageSpaceGb = $imageSpaceGb;
- }
- public function getImageSpaceGb()
- {
- return $this->imageSpaceGb;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaximumPersistentDisks($maximumPersistentDisks)
- {
- $this->maximumPersistentDisks = $maximumPersistentDisks;
- }
- public function getMaximumPersistentDisks()
- {
- return $this->maximumPersistentDisks;
- }
- public function setMaximumPersistentDisksSizeGb($maximumPersistentDisksSizeGb)
- {
- $this->maximumPersistentDisksSizeGb = $maximumPersistentDisksSizeGb;
- }
- public function getMaximumPersistentDisksSizeGb()
- {
- return $this->maximumPersistentDisksSizeGb;
- }
- public function setMemoryMb($memoryMb)
- {
- $this->memoryMb = $memoryMb;
- }
- public function getMemoryMb()
- {
- return $this->memoryMb;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setScratchDisks($scratchDisks)
- {
- $this->scratchDisks = $scratchDisks;
- }
- public function getScratchDisks()
- {
- return $this->scratchDisks;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Compute_MachineTypeAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_MachineTypesScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_MachineTypeAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_MachineTypeList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_MachineType';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_MachineTypeScratchDisks extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $diskGb;
-
-
- public function setDiskGb($diskGb)
- {
- $this->diskGb = $diskGb;
- }
- public function getDiskGb()
- {
- return $this->diskGb;
- }
-}
-
-class Postman_Google_Service_Compute_MachineTypesScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'machineTypes';
- protected $internal_gapi_mappings = array(
- );
- protected $machineTypesType = 'Postman_Google_Service_Compute_MachineType';
- protected $machineTypesDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_MachineTypesScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setMachineTypes($machineTypes)
- {
- $this->machineTypes = $machineTypes;
- }
- public function getMachineTypes()
- {
- return $this->machineTypes;
- }
- public function setWarning(Postman_Google_Service_Compute_MachineTypesScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_MachineTypesScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_MachineTypesScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_MachineTypesScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_Metadata extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $fingerprint;
- protected $itemsType = 'Postman_Google_Service_Compute_MetadataItems';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Compute_MetadataItems extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_Network extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "iPv4Range" => "IPv4Range",
- );
- public $iPv4Range;
- public $creationTimestamp;
- public $description;
- public $gatewayIPv4;
- public $id;
- public $kind;
- public $name;
- public $selfLink;
-
-
- public function setIPv4Range($iPv4Range)
- {
- $this->iPv4Range = $iPv4Range;
- }
- public function getIPv4Range()
- {
- return $this->iPv4Range;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setGatewayIPv4($gatewayIPv4)
- {
- $this->gatewayIPv4 = $gatewayIPv4;
- }
- public function getGatewayIPv4()
- {
- return $this->gatewayIPv4;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Compute_NetworkInterface extends Postman_Google_Collection
-{
- protected $collection_key = 'accessConfigs';
- protected $internal_gapi_mappings = array(
- );
- protected $accessConfigsType = 'Postman_Google_Service_Compute_AccessConfig';
- protected $accessConfigsDataType = 'array';
- public $name;
- public $network;
- public $networkIP;
-
-
- public function setAccessConfigs($accessConfigs)
- {
- $this->accessConfigs = $accessConfigs;
- }
- public function getAccessConfigs()
- {
- return $this->accessConfigs;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setNetworkIP($networkIP)
- {
- $this->networkIP = $networkIP;
- }
- public function getNetworkIP()
- {
- return $this->networkIP;
- }
-}
-
-class Postman_Google_Service_Compute_NetworkList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Network';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_Operation extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $clientOperationId;
- public $creationTimestamp;
- public $endTime;
- protected $errorType = 'Postman_Google_Service_Compute_OperationError';
- protected $errorDataType = '';
- public $httpErrorMessage;
- public $httpErrorStatusCode;
- public $id;
- public $insertTime;
- public $kind;
- public $name;
- public $operationType;
- public $progress;
- public $region;
- public $selfLink;
- public $startTime;
- public $status;
- public $statusMessage;
- public $targetId;
- public $targetLink;
- public $user;
- protected $warningsType = 'Postman_Google_Service_Compute_OperationWarnings';
- protected $warningsDataType = 'array';
- public $zone;
-
-
- public function setClientOperationId($clientOperationId)
- {
- $this->clientOperationId = $clientOperationId;
- }
- public function getClientOperationId()
- {
- return $this->clientOperationId;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setError(Postman_Google_Service_Compute_OperationError $error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setHttpErrorMessage($httpErrorMessage)
- {
- $this->httpErrorMessage = $httpErrorMessage;
- }
- public function getHttpErrorMessage()
- {
- return $this->httpErrorMessage;
- }
- public function setHttpErrorStatusCode($httpErrorStatusCode)
- {
- $this->httpErrorStatusCode = $httpErrorStatusCode;
- }
- public function getHttpErrorStatusCode()
- {
- return $this->httpErrorStatusCode;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInsertTime($insertTime)
- {
- $this->insertTime = $insertTime;
- }
- public function getInsertTime()
- {
- return $this->insertTime;
- }
- 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 setOperationType($operationType)
- {
- $this->operationType = $operationType;
- }
- public function getOperationType()
- {
- return $this->operationType;
- }
- public function setProgress($progress)
- {
- $this->progress = $progress;
- }
- public function getProgress()
- {
- return $this->progress;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusMessage($statusMessage)
- {
- $this->statusMessage = $statusMessage;
- }
- public function getStatusMessage()
- {
- return $this->statusMessage;
- }
- public function setTargetId($targetId)
- {
- $this->targetId = $targetId;
- }
- public function getTargetId()
- {
- return $this->targetId;
- }
- public function setTargetLink($targetLink)
- {
- $this->targetLink = $targetLink;
- }
- public function getTargetLink()
- {
- return $this->targetLink;
- }
- public function setUser($user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Compute_OperationAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_OperationsScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_OperationAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_OperationError extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $errorsType = 'Postman_Google_Service_Compute_OperationErrorErrors';
- protected $errorsDataType = 'array';
-
-
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_Compute_OperationErrorErrors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $location;
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_OperationList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Operation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_OperationWarnings extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_OperationWarningsData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_OperationWarningsData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_OperationsScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'operations';
- protected $internal_gapi_mappings = array(
- );
- protected $operationsType = 'Postman_Google_Service_Compute_Operation';
- protected $operationsDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_OperationsScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setOperations($operations)
- {
- $this->operations = $operations;
- }
- public function getOperations()
- {
- return $this->operations;
- }
- public function setWarning(Postman_Google_Service_Compute_OperationsScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_OperationsScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_OperationsScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_OperationsScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_PathMatcher extends Postman_Google_Collection
-{
- protected $collection_key = 'pathRules';
- protected $internal_gapi_mappings = array(
- );
- public $defaultService;
- public $description;
- public $name;
- protected $pathRulesType = 'Postman_Google_Service_Compute_PathRule';
- protected $pathRulesDataType = 'array';
-
-
- public function setDefaultService($defaultService)
- {
- $this->defaultService = $defaultService;
- }
- public function getDefaultService()
- {
- return $this->defaultService;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPathRules($pathRules)
- {
- $this->pathRules = $pathRules;
- }
- public function getPathRules()
- {
- return $this->pathRules;
- }
-}
-
-class Postman_Google_Service_Compute_PathRule extends Postman_Google_Collection
-{
- protected $collection_key = 'paths';
- protected $internal_gapi_mappings = array(
- );
- public $paths;
- public $service;
-
-
- public function setPaths($paths)
- {
- $this->paths = $paths;
- }
- public function getPaths()
- {
- return $this->paths;
- }
- public function setService($service)
- {
- $this->service = $service;
- }
- public function getService()
- {
- return $this->service;
- }
-}
-
-class Postman_Google_Service_Compute_Project extends Postman_Google_Collection
-{
- protected $collection_key = 'quotas';
- protected $internal_gapi_mappings = array(
- );
- protected $commonInstanceMetadataType = 'Postman_Google_Service_Compute_Metadata';
- protected $commonInstanceMetadataDataType = '';
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- protected $quotasType = 'Postman_Google_Service_Compute_Quota';
- protected $quotasDataType = 'array';
- public $selfLink;
- protected $usageExportLocationType = 'Postman_Google_Service_Compute_UsageExportLocation';
- protected $usageExportLocationDataType = '';
-
-
- public function setCommonInstanceMetadata(Postman_Google_Service_Compute_Metadata $commonInstanceMetadata)
- {
- $this->commonInstanceMetadata = $commonInstanceMetadata;
- }
- public function getCommonInstanceMetadata()
- {
- return $this->commonInstanceMetadata;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setQuotas($quotas)
- {
- $this->quotas = $quotas;
- }
- public function getQuotas()
- {
- return $this->quotas;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUsageExportLocation(Postman_Google_Service_Compute_UsageExportLocation $usageExportLocation)
- {
- $this->usageExportLocation = $usageExportLocation;
- }
- public function getUsageExportLocation()
- {
- return $this->usageExportLocation;
- }
-}
-
-class Postman_Google_Service_Compute_Quota extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $limit;
- public $metric;
- public $usage;
-
-
- public function setLimit($limit)
- {
- $this->limit = $limit;
- }
- public function getLimit()
- {
- return $this->limit;
- }
- public function setMetric($metric)
- {
- $this->metric = $metric;
- }
- public function getMetric()
- {
- return $this->metric;
- }
- public function setUsage($usage)
- {
- $this->usage = $usage;
- }
- public function getUsage()
- {
- return $this->usage;
- }
-}
-
-class Postman_Google_Service_Compute_Region extends Postman_Google_Collection
-{
- protected $collection_key = 'zones';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- protected $deprecatedType = 'Postman_Google_Service_Compute_DeprecationStatus';
- protected $deprecatedDataType = '';
- public $description;
- public $id;
- public $kind;
- public $name;
- protected $quotasType = 'Postman_Google_Service_Compute_Quota';
- protected $quotasDataType = 'array';
- public $selfLink;
- public $status;
- public $zones;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDeprecated(Postman_Google_Service_Compute_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 setQuotas($quotas)
- {
- $this->quotas = $quotas;
- }
- public function getQuotas()
- {
- return $this->quotas;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setZones($zones)
- {
- $this->zones = $zones;
- }
- public function getZones()
- {
- return $this->zones;
- }
-}
-
-class Postman_Google_Service_Compute_RegionList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Region';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ResourceGroupReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $group;
-
-
- public function setGroup($group)
- {
- $this->group = $group;
- }
- public function getGroup()
- {
- return $this->group;
- }
-}
-
-class Postman_Google_Service_Compute_Route extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- public $destRange;
- public $id;
- public $kind;
- public $name;
- public $network;
- public $nextHopGateway;
- public $nextHopInstance;
- public $nextHopIp;
- public $nextHopNetwork;
- public $priority;
- public $selfLink;
- public $tags;
- protected $warningsType = 'Postman_Google_Service_Compute_RouteWarnings';
- protected $warningsDataType = 'array';
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDestRange($destRange)
- {
- $this->destRange = $destRange;
- }
- public function getDestRange()
- {
- return $this->destRange;
- }
- 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 setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setNextHopGateway($nextHopGateway)
- {
- $this->nextHopGateway = $nextHopGateway;
- }
- public function getNextHopGateway()
- {
- return $this->nextHopGateway;
- }
- public function setNextHopInstance($nextHopInstance)
- {
- $this->nextHopInstance = $nextHopInstance;
- }
- public function getNextHopInstance()
- {
- return $this->nextHopInstance;
- }
- public function setNextHopIp($nextHopIp)
- {
- $this->nextHopIp = $nextHopIp;
- }
- public function getNextHopIp()
- {
- return $this->nextHopIp;
- }
- public function setNextHopNetwork($nextHopNetwork)
- {
- $this->nextHopNetwork = $nextHopNetwork;
- }
- public function getNextHopNetwork()
- {
- return $this->nextHopNetwork;
- }
- public function setPriority($priority)
- {
- $this->priority = $priority;
- }
- public function getPriority()
- {
- return $this->priority;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_Compute_RouteList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Route';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_RouteWarnings extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_RouteWarningsData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_RouteWarningsData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_Scheduling extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $automaticRestart;
- public $onHostMaintenance;
-
-
- public function setAutomaticRestart($automaticRestart)
- {
- $this->automaticRestart = $automaticRestart;
- }
- public function getAutomaticRestart()
- {
- return $this->automaticRestart;
- }
- public function setOnHostMaintenance($onHostMaintenance)
- {
- $this->onHostMaintenance = $onHostMaintenance;
- }
- public function getOnHostMaintenance()
- {
- return $this->onHostMaintenance;
- }
-}
-
-class Postman_Google_Service_Compute_SerialPortOutput extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $contents;
- public $kind;
- public $selfLink;
-
-
- public function setContents($contents)
- {
- $this->contents = $contents;
- }
- public function getContents()
- {
- return $this->contents;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ServiceAccount extends Postman_Google_Collection
-{
- protected $collection_key = 'scopes';
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $scopes;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setScopes($scopes)
- {
- $this->scopes = $scopes;
- }
- public function getScopes()
- {
- return $this->scopes;
- }
-}
-
-class Postman_Google_Service_Compute_Snapshot extends Postman_Google_Collection
-{
- protected $collection_key = 'licenses';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- public $diskSizeGb;
- public $id;
- public $kind;
- public $licenses;
- public $name;
- public $selfLink;
- public $sourceDisk;
- public $sourceDiskId;
- public $status;
- public $storageBytes;
- public $storageBytesStatus;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDiskSizeGb($diskSizeGb)
- {
- $this->diskSizeGb = $diskSizeGb;
- }
- public function getDiskSizeGb()
- {
- return $this->diskSizeGb;
- }
- 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 setLicenses($licenses)
- {
- $this->licenses = $licenses;
- }
- public function getLicenses()
- {
- return $this->licenses;
- }
- 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;
- }
- public function setSourceDisk($sourceDisk)
- {
- $this->sourceDisk = $sourceDisk;
- }
- public function getSourceDisk()
- {
- return $this->sourceDisk;
- }
- public function setSourceDiskId($sourceDiskId)
- {
- $this->sourceDiskId = $sourceDiskId;
- }
- public function getSourceDiskId()
- {
- return $this->sourceDiskId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStorageBytes($storageBytes)
- {
- $this->storageBytes = $storageBytes;
- }
- public function getStorageBytes()
- {
- return $this->storageBytes;
- }
- public function setStorageBytesStatus($storageBytesStatus)
- {
- $this->storageBytesStatus = $storageBytesStatus;
- }
- public function getStorageBytesStatus()
- {
- return $this->storageBytesStatus;
- }
-}
-
-class Postman_Google_Service_Compute_SnapshotList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Snapshot';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_Tags extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $fingerprint;
- public $items;
-
-
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
-}
-
-class Postman_Google_Service_Compute_TargetHttpProxy extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- public $id;
- public $kind;
- public $name;
- public $selfLink;
- public $urlMap;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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;
- }
- public function setUrlMap($urlMap)
- {
- $this->urlMap = $urlMap;
- }
- public function getUrlMap()
- {
- return $this->urlMap;
- }
-}
-
-class Postman_Google_Service_Compute_TargetHttpProxyList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_TargetHttpProxy';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_TargetInstance extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- public $id;
- public $instance;
- public $kind;
- public $name;
- public $natPolicy;
- public $selfLink;
- public $zone;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- 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 setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
- 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 setNatPolicy($natPolicy)
- {
- $this->natPolicy = $natPolicy;
- }
- public function getNatPolicy()
- {
- return $this->natPolicy;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Compute_TargetInstanceAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_TargetInstancesScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_TargetInstanceAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_TargetInstanceList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_TargetInstance';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_TargetInstancesScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'targetInstances';
- protected $internal_gapi_mappings = array(
- );
- protected $targetInstancesType = 'Postman_Google_Service_Compute_TargetInstance';
- protected $targetInstancesDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_TargetInstancesScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setTargetInstances($targetInstances)
- {
- $this->targetInstances = $targetInstances;
- }
- public function getTargetInstances()
- {
- return $this->targetInstances;
- }
- public function setWarning(Postman_Google_Service_Compute_TargetInstancesScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_TargetInstancesScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_TargetInstancesScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_TargetInstancesScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPool extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- public $backupPool;
- public $creationTimestamp;
- public $description;
- public $failoverRatio;
- public $healthChecks;
- public $id;
- public $instances;
- public $kind;
- public $name;
- public $region;
- public $selfLink;
- public $sessionAffinity;
-
-
- public function setBackupPool($backupPool)
- {
- $this->backupPool = $backupPool;
- }
- public function getBackupPool()
- {
- return $this->backupPool;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFailoverRatio($failoverRatio)
- {
- $this->failoverRatio = $failoverRatio;
- }
- public function getFailoverRatio()
- {
- return $this->failoverRatio;
- }
- public function setHealthChecks($healthChecks)
- {
- $this->healthChecks = $healthChecks;
- }
- public function getHealthChecks()
- {
- return $this->healthChecks;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
- 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 setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSessionAffinity($sessionAffinity)
- {
- $this->sessionAffinity = $sessionAffinity;
- }
- public function getSessionAffinity()
- {
- return $this->sessionAffinity;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolAggregatedList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_TargetPoolsScopedList';
- protected $itemsDataType = 'map';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolAggregatedListItems extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Compute_TargetPoolInstanceHealth extends Postman_Google_Collection
-{
- protected $collection_key = 'healthStatus';
- protected $internal_gapi_mappings = array(
- );
- protected $healthStatusType = 'Postman_Google_Service_Compute_HealthStatus';
- protected $healthStatusDataType = 'array';
- public $kind;
-
-
- public function setHealthStatus($healthStatus)
- {
- $this->healthStatus = $healthStatus;
- }
- public function getHealthStatus()
- {
- return $this->healthStatus;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_TargetPool';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsAddHealthCheckRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'healthChecks';
- protected $internal_gapi_mappings = array(
- );
- protected $healthChecksType = 'Postman_Google_Service_Compute_HealthCheckReference';
- protected $healthChecksDataType = 'array';
-
-
- public function setHealthChecks($healthChecks)
- {
- $this->healthChecks = $healthChecks;
- }
- public function getHealthChecks()
- {
- return $this->healthChecks;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsAddInstanceRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- protected $instancesType = 'Postman_Google_Service_Compute_InstanceReference';
- protected $instancesDataType = 'array';
-
-
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsRemoveHealthCheckRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'healthChecks';
- protected $internal_gapi_mappings = array(
- );
- protected $healthChecksType = 'Postman_Google_Service_Compute_HealthCheckReference';
- protected $healthChecksDataType = 'array';
-
-
- public function setHealthChecks($healthChecks)
- {
- $this->healthChecks = $healthChecks;
- }
- public function getHealthChecks()
- {
- return $this->healthChecks;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsRemoveInstanceRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- protected $instancesType = 'Postman_Google_Service_Compute_InstanceReference';
- protected $instancesDataType = 'array';
-
-
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsScopedList extends Postman_Google_Collection
-{
- protected $collection_key = 'targetPools';
- protected $internal_gapi_mappings = array(
- );
- protected $targetPoolsType = 'Postman_Google_Service_Compute_TargetPool';
- protected $targetPoolsDataType = 'array';
- protected $warningType = 'Postman_Google_Service_Compute_TargetPoolsScopedListWarning';
- protected $warningDataType = '';
-
-
- public function setTargetPools($targetPools)
- {
- $this->targetPools = $targetPools;
- }
- public function getTargetPools()
- {
- return $this->targetPools;
- }
- public function setWarning(Postman_Google_Service_Compute_TargetPoolsScopedListWarning $warning)
- {
- $this->warning = $warning;
- }
- public function getWarning()
- {
- return $this->warning;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsScopedListWarning extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Compute_TargetPoolsScopedListWarningData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Compute_TargetPoolsScopedListWarningData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Compute_TargetReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $target;
-
-
- public function setTarget($target)
- {
- $this->target = $target;
- }
- public function getTarget()
- {
- return $this->target;
- }
-}
-
-class Postman_Google_Service_Compute_TestFailure extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $actualService;
- public $expectedService;
- public $host;
- public $path;
-
-
- public function setActualService($actualService)
- {
- $this->actualService = $actualService;
- }
- public function getActualService()
- {
- return $this->actualService;
- }
- public function setExpectedService($expectedService)
- {
- $this->expectedService = $expectedService;
- }
- public function getExpectedService()
- {
- return $this->expectedService;
- }
- public function setHost($host)
- {
- $this->host = $host;
- }
- public function getHost()
- {
- return $this->host;
- }
- public function setPath($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMap extends Postman_Google_Collection
-{
- protected $collection_key = 'tests';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $defaultService;
- public $description;
- public $fingerprint;
- protected $hostRulesType = 'Postman_Google_Service_Compute_HostRule';
- protected $hostRulesDataType = 'array';
- public $id;
- public $kind;
- public $name;
- protected $pathMatchersType = 'Postman_Google_Service_Compute_PathMatcher';
- protected $pathMatchersDataType = 'array';
- public $selfLink;
- protected $testsType = 'Postman_Google_Service_Compute_UrlMapTest';
- protected $testsDataType = 'array';
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDefaultService($defaultService)
- {
- $this->defaultService = $defaultService;
- }
- public function getDefaultService()
- {
- return $this->defaultService;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setHostRules($hostRules)
- {
- $this->hostRules = $hostRules;
- }
- public function getHostRules()
- {
- return $this->hostRules;
- }
- 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 setPathMatchers($pathMatchers)
- {
- $this->pathMatchers = $pathMatchers;
- }
- public function getPathMatchers()
- {
- return $this->pathMatchers;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTests($tests)
- {
- $this->tests = $tests;
- }
- public function getTests()
- {
- return $this->tests;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMapList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_UrlMap';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMapReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $urlMap;
-
-
- public function setUrlMap($urlMap)
- {
- $this->urlMap = $urlMap;
- }
- public function getUrlMap()
- {
- return $this->urlMap;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMapTest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $host;
- public $path;
- public $service;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setHost($host)
- {
- $this->host = $host;
- }
- public function getHost()
- {
- return $this->host;
- }
- public function setPath($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
- public function setService($service)
- {
- $this->service = $service;
- }
- public function getService()
- {
- return $this->service;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMapValidationResult extends Postman_Google_Collection
-{
- protected $collection_key = 'testFailures';
- protected $internal_gapi_mappings = array(
- );
- public $loadErrors;
- public $loadSucceeded;
- protected $testFailuresType = 'Postman_Google_Service_Compute_TestFailure';
- protected $testFailuresDataType = 'array';
- public $testPassed;
-
-
- public function setLoadErrors($loadErrors)
- {
- $this->loadErrors = $loadErrors;
- }
- public function getLoadErrors()
- {
- return $this->loadErrors;
- }
- public function setLoadSucceeded($loadSucceeded)
- {
- $this->loadSucceeded = $loadSucceeded;
- }
- public function getLoadSucceeded()
- {
- return $this->loadSucceeded;
- }
- public function setTestFailures($testFailures)
- {
- $this->testFailures = $testFailures;
- }
- public function getTestFailures()
- {
- return $this->testFailures;
- }
- public function setTestPassed($testPassed)
- {
- $this->testPassed = $testPassed;
- }
- public function getTestPassed()
- {
- return $this->testPassed;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMapsValidateRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceType = 'Postman_Google_Service_Compute_UrlMap';
- protected $resourceDataType = '';
-
-
- public function setResource(Postman_Google_Service_Compute_UrlMap $resource)
- {
- $this->resource = $resource;
- }
- public function getResource()
- {
- return $this->resource;
- }
-}
-
-class Postman_Google_Service_Compute_UrlMapsValidateResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resultType = 'Postman_Google_Service_Compute_UrlMapValidationResult';
- protected $resultDataType = '';
-
-
- public function setResult(Postman_Google_Service_Compute_UrlMapValidationResult $result)
- {
- $this->result = $result;
- }
- public function getResult()
- {
- return $this->result;
- }
-}
-
-class Postman_Google_Service_Compute_UsageExportLocation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bucketName;
- public $reportNamePrefix;
-
-
- public function setBucketName($bucketName)
- {
- $this->bucketName = $bucketName;
- }
- public function getBucketName()
- {
- return $this->bucketName;
- }
- public function setReportNamePrefix($reportNamePrefix)
- {
- $this->reportNamePrefix = $reportNamePrefix;
- }
- public function getReportNamePrefix()
- {
- return $this->reportNamePrefix;
- }
-}
-
-class Postman_Google_Service_Compute_Zone extends Postman_Google_Collection
-{
- protected $collection_key = 'maintenanceWindows';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- protected $deprecatedType = 'Postman_Google_Service_Compute_DeprecationStatus';
- protected $deprecatedDataType = '';
- public $description;
- public $id;
- public $kind;
- protected $maintenanceWindowsType = 'Postman_Google_Service_Compute_ZoneMaintenanceWindows';
- protected $maintenanceWindowsDataType = 'array';
- public $name;
- public $region;
- public $selfLink;
- public $status;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDeprecated(Postman_Google_Service_Compute_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 setMaintenanceWindows($maintenanceWindows)
- {
- $this->maintenanceWindows = $maintenanceWindows;
- }
- public function getMaintenanceWindows()
- {
- return $this->maintenanceWindows;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Compute_ZoneList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Compute_Zone';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Compute_ZoneMaintenanceWindows extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $beginTime;
- public $description;
- public $endTime;
- public $name;
-
-
- public function setBeginTime($beginTime)
- {
- $this->beginTime = $beginTime;
- }
- public function getBeginTime()
- {
- return $this->beginTime;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Container.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Container.php
deleted file mode 100644
index 42a7a36..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Container.php
+++ /dev/null
@@ -1,794 +0,0 @@
-
- * The Google Container Engine API is used for building and managing container
- * based applications, powered by the open source Kubernetes technology.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Container extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_clusters; - public $projects_operations; - public $projects_zones_clusters; - public $projects_zones_operations; - - - /** - * Constructs the internal representation of the Container service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'container/v1beta1/projects/'; - $this->version = 'v1beta1'; - $this->serviceName = 'container'; - - $this->projects_clusters = new Postman_Google_Service_Container_ProjectsClusters_Resource( - $this, - $this->serviceName, - 'clusters', - array( - 'methods' => array( - 'list' => array( - 'path' => '{projectId}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Postman_Google_Service_Container_ProjectsOperations_Resource( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'list' => array( - 'path' => '{projectId}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_zones_clusters = new Postman_Google_Service_Container_ProjectsZonesClusters_Resource( - $this, - $this->serviceName, - 'clusters', - array( - 'methods' => array( - 'create' => array( - 'path' => '{projectId}/zones/{zoneId}/clusters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{projectId}/zones/{zoneId}/clusters/{clusterId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectId}/zones/{zoneId}/clusters/{clusterId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectId}/zones/{zoneId}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_zones_operations = new Postman_Google_Service_Container_ProjectsZonesOperations_Resource( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{projectId}/zones/{zoneId}/operations/{operationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectId}/zones/{zoneId}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "projects" collection of methods. - * Typical usage is: - *
- * $containerService = new Postman_Google_Service_Container(...);
- * $projects = $containerService->projects;
- *
- */
-class Postman_Google_Service_Container_Projects_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "clusters" collection of methods.
- * Typical usage is:
- *
- * $containerService = new Postman_Google_Service_Container(...);
- * $clusters = $containerService->clusters;
- *
- */
-class Postman_Google_Service_Container_ProjectsClusters_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists all clusters owned by a project across all zones.
- * (clusters.listProjectsClusters)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_ListAggregatedClustersResponse
- */
- public function listProjectsClusters($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Container_ListAggregatedClustersResponse");
- }
-}
-/**
- * The "operations" collection of methods.
- * Typical usage is:
- *
- * $containerService = new Postman_Google_Service_Container(...);
- * $operations = $containerService->operations;
- *
- */
-class Postman_Google_Service_Container_ProjectsOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists all operations in a project, across all zones.
- * (operations.listProjectsOperations)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_ListAggregatedOperationsResponse
- */
- public function listProjectsOperations($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Container_ListAggregatedOperationsResponse");
- }
-}
-/**
- * The "zones" collection of methods.
- * Typical usage is:
- *
- * $containerService = new Postman_Google_Service_Container(...);
- * $zones = $containerService->zones;
- *
- */
-class Postman_Google_Service_Container_ProjectsZones_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "clusters" collection of methods.
- * Typical usage is:
- *
- * $containerService = new Postman_Google_Service_Container(...);
- * $clusters = $containerService->clusters;
- *
- */
-class Postman_Google_Service_Container_ProjectsZonesClusters_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a cluster, consisting of the specified number and type of Google
- * Compute Engine instances, plus a Kubernetes master instance.
- *
- * The cluster is created in the project's default network.
- *
- * A firewall is added that allows traffic into port 443 on the master, which
- * enables HTTPS. A firewall and a route is added for each node to allow the
- * containers on that node to communicate with all other instances in the
- * cluster.
- *
- * Finally, a route named k8s-iproute-10-xx-0-0 is created to track that the
- * cluster's 10.xx.0.0/16 CIDR has been assigned. (clusters.create)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param string $zoneId The name of the Google Compute Engine zone in which the
- * cluster resides.
- * @param Postman_Google_CreateClusterRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_Operation
- */
- public function create($projectId, $zoneId, Postman_Google_Service_Container_CreateClusterRequest $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'zoneId' => $zoneId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Container_Operation");
- }
-
- /**
- * Deletes the cluster, including the Kubernetes master and all worker nodes.
- *
- * Firewalls and routes that were configured at cluster creation are also
- * deleted. (clusters.delete)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param string $zoneId The name of the Google Compute Engine zone in which the
- * cluster resides.
- * @param string $clusterId The name of the cluster to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_Operation
- */
- public function delete($projectId, $zoneId, $clusterId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'zoneId' => $zoneId, 'clusterId' => $clusterId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Container_Operation");
- }
-
- /**
- * Gets a specific cluster. (clusters.get)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param string $zoneId The name of the Google Compute Engine zone in which the
- * cluster resides.
- * @param string $clusterId The name of the cluster to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_Cluster
- */
- public function get($projectId, $zoneId, $clusterId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'zoneId' => $zoneId, 'clusterId' => $clusterId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Container_Cluster");
- }
-
- /**
- * Lists all clusters owned by a project in the specified zone.
- * (clusters.listProjectsZonesClusters)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param string $zoneId The name of the Google Compute Engine zone in which the
- * cluster resides.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_ListClustersResponse
- */
- public function listProjectsZonesClusters($projectId, $zoneId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'zoneId' => $zoneId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Container_ListClustersResponse");
- }
-}
-/**
- * The "operations" collection of methods.
- * Typical usage is:
- *
- * $containerService = new Postman_Google_Service_Container(...);
- * $operations = $containerService->operations;
- *
- */
-class Postman_Google_Service_Container_ProjectsZonesOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the specified operation. (operations.get)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param string $zoneId The name of the Google Compute Engine zone in which the
- * operation resides. This is always the same zone as the cluster with which the
- * operation is associated.
- * @param string $operationId The server-assigned name of the operation.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_Operation
- */
- public function get($projectId, $zoneId, $operationId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'zoneId' => $zoneId, 'operationId' => $operationId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Container_Operation");
- }
-
- /**
- * Lists all operations in a project in a specific zone.
- * (operations.listProjectsZonesOperations)
- *
- * @param string $projectId The Google Developers Console project ID or project
- * number.
- * @param string $zoneId The name of the Google Compute Engine zone to return
- * operations for.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Container_ListOperationsResponse
- */
- public function listProjectsZonesOperations($projectId, $zoneId, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'zoneId' => $zoneId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Container_ListOperationsResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Container_Cluster extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $clusterApiVersion;
- public $containerIpv4Cidr;
- public $creationTimestamp;
- public $description;
- public $endpoint;
- protected $masterAuthType = 'Postman_Google_Service_Container_MasterAuth';
- protected $masterAuthDataType = '';
- public $name;
- protected $nodeConfigType = 'Postman_Google_Service_Container_NodeConfig';
- protected $nodeConfigDataType = '';
- public $nodeRoutingPrefixSize;
- public $numNodes;
- public $servicesIpv4Cidr;
- public $status;
- public $statusMessage;
- public $zone;
-
-
- public function setClusterApiVersion($clusterApiVersion)
- {
- $this->clusterApiVersion = $clusterApiVersion;
- }
- public function getClusterApiVersion()
- {
- return $this->clusterApiVersion;
- }
- public function setContainerIpv4Cidr($containerIpv4Cidr)
- {
- $this->containerIpv4Cidr = $containerIpv4Cidr;
- }
- public function getContainerIpv4Cidr()
- {
- return $this->containerIpv4Cidr;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndpoint($endpoint)
- {
- $this->endpoint = $endpoint;
- }
- public function getEndpoint()
- {
- return $this->endpoint;
- }
- public function setMasterAuth(Postman_Google_Service_Container_MasterAuth $masterAuth)
- {
- $this->masterAuth = $masterAuth;
- }
- public function getMasterAuth()
- {
- return $this->masterAuth;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNodeConfig(Postman_Google_Service_Container_NodeConfig $nodeConfig)
- {
- $this->nodeConfig = $nodeConfig;
- }
- public function getNodeConfig()
- {
- return $this->nodeConfig;
- }
- public function setNodeRoutingPrefixSize($nodeRoutingPrefixSize)
- {
- $this->nodeRoutingPrefixSize = $nodeRoutingPrefixSize;
- }
- public function getNodeRoutingPrefixSize()
- {
- return $this->nodeRoutingPrefixSize;
- }
- public function setNumNodes($numNodes)
- {
- $this->numNodes = $numNodes;
- }
- public function getNumNodes()
- {
- return $this->numNodes;
- }
- public function setServicesIpv4Cidr($servicesIpv4Cidr)
- {
- $this->servicesIpv4Cidr = $servicesIpv4Cidr;
- }
- public function getServicesIpv4Cidr()
- {
- return $this->servicesIpv4Cidr;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusMessage($statusMessage)
- {
- $this->statusMessage = $statusMessage;
- }
- public function getStatusMessage()
- {
- return $this->statusMessage;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Container_CreateClusterRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $clusterType = 'Postman_Google_Service_Container_Cluster';
- protected $clusterDataType = '';
-
-
- public function setCluster(Postman_Google_Service_Container_Cluster $cluster)
- {
- $this->cluster = $cluster;
- }
- public function getCluster()
- {
- return $this->cluster;
- }
-}
-
-class Postman_Google_Service_Container_ListAggregatedClustersResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'clusters';
- protected $internal_gapi_mappings = array(
- );
- protected $clustersType = 'Postman_Google_Service_Container_Cluster';
- protected $clustersDataType = 'array';
-
-
- public function setClusters($clusters)
- {
- $this->clusters = $clusters;
- }
- public function getClusters()
- {
- return $this->clusters;
- }
-}
-
-class Postman_Google_Service_Container_ListAggregatedOperationsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'operations';
- protected $internal_gapi_mappings = array(
- );
- protected $operationsType = 'Postman_Google_Service_Container_Operation';
- protected $operationsDataType = 'array';
-
-
- public function setOperations($operations)
- {
- $this->operations = $operations;
- }
- public function getOperations()
- {
- return $this->operations;
- }
-}
-
-class Postman_Google_Service_Container_ListClustersResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'clusters';
- protected $internal_gapi_mappings = array(
- );
- protected $clustersType = 'Postman_Google_Service_Container_Cluster';
- protected $clustersDataType = 'array';
-
-
- public function setClusters($clusters)
- {
- $this->clusters = $clusters;
- }
- public function getClusters()
- {
- return $this->clusters;
- }
-}
-
-class Postman_Google_Service_Container_ListOperationsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'operations';
- protected $internal_gapi_mappings = array(
- );
- protected $operationsType = 'Postman_Google_Service_Container_Operation';
- protected $operationsDataType = 'array';
-
-
- public function setOperations($operations)
- {
- $this->operations = $operations;
- }
- public function getOperations()
- {
- return $this->operations;
- }
-}
-
-class Postman_Google_Service_Container_MasterAuth extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $password;
- public $user;
-
-
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
- public function setUser($user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
-}
-
-class Postman_Google_Service_Container_NodeConfig extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $machineType;
- public $sourceImage;
-
-
- public function setMachineType($machineType)
- {
- $this->machineType = $machineType;
- }
- public function getMachineType()
- {
- return $this->machineType;
- }
- public function setSourceImage($sourceImage)
- {
- $this->sourceImage = $sourceImage;
- }
- public function getSourceImage()
- {
- return $this->sourceImage;
- }
-}
-
-class Postman_Google_Service_Container_Operation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $errorMessage;
- public $name;
- public $operationType;
- public $status;
- public $target;
- public $zone;
-
-
- public function setErrorMessage($errorMessage)
- {
- $this->errorMessage = $errorMessage;
- }
- public function getErrorMessage()
- {
- return $this->errorMessage;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOperationType($operationType)
- {
- $this->operationType = $operationType;
- }
- public function getOperationType()
- {
- return $this->operationType;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTarget($target)
- {
- $this->target = $target;
- }
- public function getTarget()
- {
- return $this->target;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Coordinate.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Coordinate.php
deleted file mode 100644
index cb9189f..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Coordinate.php
+++ /dev/null
@@ -1,1382 +0,0 @@
-
- * Lets you view and manage jobs in a Coordinate team.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Coordinate extends Postman_Google_Service -{ - /** View and manage your Google Maps Coordinate jobs. */ - const COORDINATE = - "https://www.googleapis.com/auth/coordinate"; - /** View your Google Coordinate jobs. */ - const COORDINATE_READONLY = - "https://www.googleapis.com/auth/coordinate.readonly"; - - public $customFieldDef; - public $jobs; - public $location; - public $schedule; - public $worker; - - - /** - * Constructs the internal representation of the Coordinate service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'coordinate/v1/teams/'; - $this->version = 'v1'; - $this->serviceName = 'coordinate'; - - $this->customFieldDef = new Postman_Google_Service_Coordinate_CustomFieldDef_Resource( - $this, - $this->serviceName, - 'customFieldDef', - array( - 'methods' => array( - 'list' => array( - 'path' => '{teamId}/custom_fields', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->jobs = new Postman_Google_Service_Coordinate_Jobs_Resource( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'get' => array( - 'path' => '{teamId}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{teamId}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'lat' => array( - 'location' => 'query', - 'type' => 'number', - 'required' => true, - ), - 'lng' => array( - 'location' => 'query', - 'type' => 'number', - 'required' => true, - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'customerName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'note' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'assignee' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerPhoneNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customField' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'list' => array( - 'path' => '{teamId}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'minModifiedTimestampMs' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{teamId}/jobs/{jobId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'note' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'assignee' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerPhoneNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lat' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'progress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lng' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'customField' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'update' => array( - 'path' => '{teamId}/jobs/{jobId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'note' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'assignee' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerPhoneNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lat' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'progress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lng' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'customField' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->location = new Postman_Google_Service_Coordinate_Location_Resource( - $this, - $this->serviceName, - 'location', - array( - 'methods' => array( - 'list' => array( - 'path' => '{teamId}/workers/{workerEmail}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'workerEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTimestampMs' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->schedule = new Postman_Google_Service_Coordinate_Schedule_Resource( - $this, - $this->serviceName, - 'schedule', - array( - 'methods' => array( - 'get' => array( - 'path' => '{teamId}/jobs/{jobId}/schedule', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{teamId}/jobs/{jobId}/schedule', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'allDay' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'duration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{teamId}/jobs/{jobId}/schedule', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'allDay' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'duration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->worker = new Postman_Google_Service_Coordinate_Worker_Resource( - $this, - $this->serviceName, - 'worker', - array( - 'methods' => array( - 'list' => array( - 'path' => '{teamId}/workers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "customFieldDef" collection of methods. - * Typical usage is: - *
- * $coordinateService = new Postman_Google_Service_Coordinate(...);
- * $customFieldDef = $coordinateService->customFieldDef;
- *
- */
-class Postman_Google_Service_Coordinate_CustomFieldDef_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of custom field definitions for a team.
- * (customFieldDef.listCustomFieldDef)
- *
- * @param string $teamId Team ID
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Coordinate_CustomFieldDefListResponse
- */
- public function listCustomFieldDef($teamId, $optParams = array())
- {
- $params = array('teamId' => $teamId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Coordinate_CustomFieldDefListResponse");
- }
-}
-
-/**
- * The "jobs" collection of methods.
- * Typical usage is:
- *
- * $coordinateService = new Postman_Google_Service_Coordinate(...);
- * $jobs = $coordinateService->jobs;
- *
- */
-class Postman_Google_Service_Coordinate_Jobs_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a job, including all the changes made to the job. (jobs.get)
- *
- * @param string $teamId Team ID
- * @param string $jobId Job number
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Coordinate_Job
- */
- public function get($teamId, $jobId, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'jobId' => $jobId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Coordinate_Job");
- }
-
- /**
- * Inserts a new job. Only the state field of the job should be set.
- * (jobs.insert)
- *
- * @param string $teamId Team ID
- * @param string $address Job address as newline (Unix) separated string
- * @param double $lat The latitude coordinate of this job's location.
- * @param double $lng The longitude coordinate of this job's location.
- * @param string $title Job title
- * @param Postman_Google_Job $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customerName Customer name
- * @opt_param string note Job note as newline (Unix) separated string
- * @opt_param string assignee Assignee email address, or empty string to
- * unassign.
- * @opt_param string customerPhoneNumber Customer phone number
- * @opt_param string customField Map from custom field id (from
- * /team//custom_fields) to the field value. For example '123=Alice'
- * @return Postman_Google_Service_Coordinate_Job
- */
- public function insert($teamId, $address, $lat, $lng, $title, Postman_Google_Service_Coordinate_Job $postBody, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'address' => $address, 'lat' => $lat, 'lng' => $lng, 'title' => $title, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Coordinate_Job");
- }
-
- /**
- * Retrieves jobs created or modified since the given timestamp. (jobs.listJobs)
- *
- * @param string $teamId Team ID
- * @param array $optParams Optional parameters.
- *
- * @opt_param string minModifiedTimestampMs Minimum time a job was modified in
- * milliseconds since epoch.
- * @opt_param string maxResults Maximum number of results to return in one page.
- * @opt_param string pageToken Continuation token
- * @return Postman_Google_Service_Coordinate_JobListResponse
- */
- public function listJobs($teamId, $optParams = array())
- {
- $params = array('teamId' => $teamId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Coordinate_JobListResponse");
- }
-
- /**
- * Updates a job. Fields that are set in the job state will be updated. This
- * method supports patch semantics. (jobs.patch)
- *
- * @param string $teamId Team ID
- * @param string $jobId Job number
- * @param Postman_Google_Job $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customerName Customer name
- * @opt_param string title Job title
- * @opt_param string note Job note as newline (Unix) separated string
- * @opt_param string assignee Assignee email address, or empty string to
- * unassign.
- * @opt_param string customerPhoneNumber Customer phone number
- * @opt_param string address Job address as newline (Unix) separated string
- * @opt_param double lat The latitude coordinate of this job's location.
- * @opt_param string progress Job progress
- * @opt_param double lng The longitude coordinate of this job's location.
- * @opt_param string customField Map from custom field id (from
- * /team//custom_fields) to the field value. For example '123=Alice'
- * @return Postman_Google_Service_Coordinate_Job
- */
- public function patch($teamId, $jobId, Postman_Google_Service_Coordinate_Job $postBody, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Coordinate_Job");
- }
-
- /**
- * Updates a job. Fields that are set in the job state will be updated.
- * (jobs.update)
- *
- * @param string $teamId Team ID
- * @param string $jobId Job number
- * @param Postman_Google_Job $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customerName Customer name
- * @opt_param string title Job title
- * @opt_param string note Job note as newline (Unix) separated string
- * @opt_param string assignee Assignee email address, or empty string to
- * unassign.
- * @opt_param string customerPhoneNumber Customer phone number
- * @opt_param string address Job address as newline (Unix) separated string
- * @opt_param double lat The latitude coordinate of this job's location.
- * @opt_param string progress Job progress
- * @opt_param double lng The longitude coordinate of this job's location.
- * @opt_param string customField Map from custom field id (from
- * /team//custom_fields) to the field value. For example '123=Alice'
- * @return Postman_Google_Service_Coordinate_Job
- */
- public function update($teamId, $jobId, Postman_Google_Service_Coordinate_Job $postBody, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Coordinate_Job");
- }
-}
-
-/**
- * The "location" collection of methods.
- * Typical usage is:
- *
- * $coordinateService = new Postman_Google_Service_Coordinate(...);
- * $location = $coordinateService->location;
- *
- */
-class Postman_Google_Service_Coordinate_Location_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of locations for a worker. (location.listLocation)
- *
- * @param string $teamId Team ID
- * @param string $workerEmail Worker email address.
- * @param string $startTimestampMs Start timestamp in milliseconds since the
- * epoch.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Continuation token
- * @opt_param string maxResults Maximum number of results to return in one page.
- * @return Postman_Google_Service_Coordinate_LocationListResponse
- */
- public function listLocation($teamId, $workerEmail, $startTimestampMs, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'workerEmail' => $workerEmail, 'startTimestampMs' => $startTimestampMs);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Coordinate_LocationListResponse");
- }
-}
-
-/**
- * The "schedule" collection of methods.
- * Typical usage is:
- *
- * $coordinateService = new Postman_Google_Service_Coordinate(...);
- * $schedule = $coordinateService->schedule;
- *
- */
-class Postman_Google_Service_Coordinate_Schedule_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the schedule for a job. (schedule.get)
- *
- * @param string $teamId Team ID
- * @param string $jobId Job number
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Coordinate_Schedule
- */
- public function get($teamId, $jobId, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'jobId' => $jobId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Coordinate_Schedule");
- }
-
- /**
- * Replaces the schedule of a job with the provided schedule. This method
- * supports patch semantics. (schedule.patch)
- *
- * @param string $teamId Team ID
- * @param string $jobId Job number
- * @param Postman_Google_Schedule $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool allDay Whether the job is scheduled for the whole day. Time
- * of day in start/end times is ignored if this is true.
- * @opt_param string startTime Scheduled start time in milliseconds since epoch.
- * @opt_param string duration Job duration in milliseconds.
- * @opt_param string endTime Scheduled end time in milliseconds since epoch.
- * @return Postman_Google_Service_Coordinate_Schedule
- */
- public function patch($teamId, $jobId, Postman_Google_Service_Coordinate_Schedule $postBody, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Coordinate_Schedule");
- }
-
- /**
- * Replaces the schedule of a job with the provided schedule. (schedule.update)
- *
- * @param string $teamId Team ID
- * @param string $jobId Job number
- * @param Postman_Google_Schedule $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool allDay Whether the job is scheduled for the whole day. Time
- * of day in start/end times is ignored if this is true.
- * @opt_param string startTime Scheduled start time in milliseconds since epoch.
- * @opt_param string duration Job duration in milliseconds.
- * @opt_param string endTime Scheduled end time in milliseconds since epoch.
- * @return Postman_Google_Service_Coordinate_Schedule
- */
- public function update($teamId, $jobId, Postman_Google_Service_Coordinate_Schedule $postBody, $optParams = array())
- {
- $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Coordinate_Schedule");
- }
-}
-
-/**
- * The "worker" collection of methods.
- * Typical usage is:
- *
- * $coordinateService = new Postman_Google_Service_Coordinate(...);
- * $worker = $coordinateService->worker;
- *
- */
-class Postman_Google_Service_Coordinate_Worker_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of workers in a team. (worker.listWorker)
- *
- * @param string $teamId Team ID
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Coordinate_WorkerListResponse
- */
- public function listWorker($teamId, $optParams = array())
- {
- $params = array('teamId' => $teamId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Coordinate_WorkerListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Coordinate_CustomField extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customFieldId;
- public $kind;
- public $value;
-
-
- public function setCustomFieldId($customFieldId)
- {
- $this->customFieldId = $customFieldId;
- }
- public function getCustomFieldId()
- {
- return $this->customFieldId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Coordinate_CustomFieldDef extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $enabled;
- public $id;
- public $kind;
- public $name;
- public $requiredForCheckout;
- public $type;
-
-
- public function setEnabled($enabled)
- {
- $this->enabled = $enabled;
- }
- public function getEnabled()
- {
- return $this->enabled;
- }
- 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 setRequiredForCheckout($requiredForCheckout)
- {
- $this->requiredForCheckout = $requiredForCheckout;
- }
- public function getRequiredForCheckout()
- {
- return $this->requiredForCheckout;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Coordinate_CustomFieldDefListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Coordinate_CustomFieldDef';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Coordinate_CustomFields extends Postman_Google_Collection
-{
- protected $collection_key = 'customField';
- protected $internal_gapi_mappings = array(
- );
- protected $customFieldType = 'Postman_Google_Service_Coordinate_CustomField';
- protected $customFieldDataType = 'array';
- public $kind;
-
-
- public function setCustomField($customField)
- {
- $this->customField = $customField;
- }
- public function getCustomField()
- {
- return $this->customField;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Coordinate_Job extends Postman_Google_Collection
-{
- protected $collection_key = 'jobChange';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $jobChangeType = 'Postman_Google_Service_Coordinate_JobChange';
- protected $jobChangeDataType = 'array';
- public $kind;
- protected $stateType = 'Postman_Google_Service_Coordinate_JobState';
- protected $stateDataType = '';
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setJobChange($jobChange)
- {
- $this->jobChange = $jobChange;
- }
- public function getJobChange()
- {
- return $this->jobChange;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setState(Postman_Google_Service_Coordinate_JobState $state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Coordinate_JobChange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $stateType = 'Postman_Google_Service_Coordinate_JobState';
- protected $stateDataType = '';
- public $timestamp;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setState(Postman_Google_Service_Coordinate_JobState $state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
-}
-
-class Postman_Google_Service_Coordinate_JobListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Coordinate_Job';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Coordinate_JobState extends Postman_Google_Collection
-{
- protected $collection_key = 'note';
- protected $internal_gapi_mappings = array(
- );
- public $assignee;
- protected $customFieldsType = 'Postman_Google_Service_Coordinate_CustomFields';
- protected $customFieldsDataType = '';
- public $customerName;
- public $customerPhoneNumber;
- public $kind;
- protected $locationType = 'Postman_Google_Service_Coordinate_Location';
- protected $locationDataType = '';
- public $note;
- public $progress;
- public $title;
-
-
- public function setAssignee($assignee)
- {
- $this->assignee = $assignee;
- }
- public function getAssignee()
- {
- return $this->assignee;
- }
- public function setCustomFields(Postman_Google_Service_Coordinate_CustomFields $customFields)
- {
- $this->customFields = $customFields;
- }
- public function getCustomFields()
- {
- return $this->customFields;
- }
- public function setCustomerName($customerName)
- {
- $this->customerName = $customerName;
- }
- public function getCustomerName()
- {
- return $this->customerName;
- }
- public function setCustomerPhoneNumber($customerPhoneNumber)
- {
- $this->customerPhoneNumber = $customerPhoneNumber;
- }
- public function getCustomerPhoneNumber()
- {
- return $this->customerPhoneNumber;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLocation(Postman_Google_Service_Coordinate_Location $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setNote($note)
- {
- $this->note = $note;
- }
- public function getNote()
- {
- return $this->note;
- }
- public function setProgress($progress)
- {
- $this->progress = $progress;
- }
- public function getProgress()
- {
- return $this->progress;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Coordinate_Location extends Postman_Google_Collection
-{
- protected $collection_key = 'addressLine';
- protected $internal_gapi_mappings = array(
- );
- public $addressLine;
- public $kind;
- public $lat;
- public $lng;
-
-
- public function setAddressLine($addressLine)
- {
- $this->addressLine = $addressLine;
- }
- public function getAddressLine()
- {
- return $this->addressLine;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLat($lat)
- {
- $this->lat = $lat;
- }
- public function getLat()
- {
- return $this->lat;
- }
- public function setLng($lng)
- {
- $this->lng = $lng;
- }
- public function getLng()
- {
- return $this->lng;
- }
-}
-
-class Postman_Google_Service_Coordinate_LocationListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Coordinate_LocationRecord';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_Coordinate_TokenPagination';
- protected $tokenPaginationDataType = '';
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTokenPagination(Postman_Google_Service_Coordinate_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
-}
-
-class Postman_Google_Service_Coordinate_LocationRecord extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $collectionTime;
- public $confidenceRadius;
- public $kind;
- public $latitude;
- public $longitude;
-
-
- public function setCollectionTime($collectionTime)
- {
- $this->collectionTime = $collectionTime;
- }
- public function getCollectionTime()
- {
- return $this->collectionTime;
- }
- public function setConfidenceRadius($confidenceRadius)
- {
- $this->confidenceRadius = $confidenceRadius;
- }
- public function getConfidenceRadius()
- {
- return $this->confidenceRadius;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Coordinate_Schedule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $allDay;
- public $duration;
- public $endTime;
- public $kind;
- public $startTime;
-
-
- public function setAllDay($allDay)
- {
- $this->allDay = $allDay;
- }
- public function getAllDay()
- {
- return $this->allDay;
- }
- public function setDuration($duration)
- {
- $this->duration = $duration;
- }
- public function getDuration()
- {
- return $this->duration;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
-}
-
-class Postman_Google_Service_Coordinate_TokenPagination extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- public $previousPageToken;
-
-
- 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;
- }
- public function setPreviousPageToken($previousPageToken)
- {
- $this->previousPageToken = $previousPageToken;
- }
- public function getPreviousPageToken()
- {
- return $this->previousPageToken;
- }
-}
-
-class Postman_Google_Service_Coordinate_Worker extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_Coordinate_WorkerListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Coordinate_Worker';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Customsearch.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Customsearch.php
deleted file mode 100644
index 9d09a44..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Customsearch.php
+++ /dev/null
@@ -1,1276 +0,0 @@
-
- * Lets you search over a website or collection of websites
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Customsearch extends Postman_Google_Service -{ - - - public $cse; - - - /** - * Constructs the internal representation of the Customsearch service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'customsearch/'; - $this->version = 'v1'; - $this->serviceName = 'customsearch'; - - $this->cse = new Postman_Google_Service_Customsearch_Cse_Resource( - $this, - $this->serviceName, - 'cse', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'highRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'num' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'cr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relatedSite' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fileType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'imgDominantColor' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteSearch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cref' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dateRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'safe' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'c2coff' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'googlehost' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hq' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'exactTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lowRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgSize' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgColorType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'rights' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'excludeTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'linkSite' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cx' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteSearchFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "cse" collection of methods. - * Typical usage is: - *
- * $customsearchService = new Postman_Google_Service_Customsearch(...);
- * $cse = $customsearchService->cse;
- *
- */
-class Postman_Google_Service_Customsearch_Cse_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns metadata about the search performed, metadata about the custom search
- * engine used for the search, and the search results. (cse.listCse)
- *
- * @param string $q Query
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort The sort expression to apply to the results
- * @opt_param string orTerms Provides additional search terms to check for in a
- * document, where each document in the search results must contain at least one
- * of the additional search terms
- * @opt_param string highRange Creates a range in form as_nlo value..as_nhi
- * value and attempts to append it to query
- * @opt_param string num Number of search results to return
- * @opt_param string cr Country restrict(s).
- * @opt_param string imgType Returns images of a type, which can be one of:
- * clipart, face, lineart, news, and photo.
- * @opt_param string gl Geolocation of end user.
- * @opt_param string relatedSite Specifies that all search results should be
- * pages that are related to the specified URL
- * @opt_param string searchType Specifies the search type: image.
- * @opt_param string fileType Returns images of a specified type. Some of the
- * allowed values are: bmp, gif, png, jpg, svg, pdf, ...
- * @opt_param string start The index of the first result to return
- * @opt_param string imgDominantColor Returns images of a specific dominant
- * color: yellow, green, teal, blue, purple, pink, white, gray, black and brown.
- * @opt_param string lr The language restriction for the search results
- * @opt_param string siteSearch Specifies all search results should be pages
- * from a given site
- * @opt_param string cref The URL of a linked custom search engine
- * @opt_param string dateRestrict Specifies all search results are from a time
- * period
- * @opt_param string safe Search safety level
- * @opt_param string c2coff Turns off the translation between zh-CN and zh-TW.
- * @opt_param string googlehost The local Google domain to use to perform the
- * search.
- * @opt_param string hq Appends the extra query terms to the query.
- * @opt_param string exactTerms Identifies a phrase that all documents in the
- * search results must contain
- * @opt_param string hl Sets the user interface language.
- * @opt_param string lowRange Creates a range in form as_nlo value..as_nhi value
- * and attempts to append it to query
- * @opt_param string imgSize Returns images of a specified size, where size can
- * be one of: icon, small, medium, large, xlarge, xxlarge, and huge.
- * @opt_param string imgColorType Returns black and white, grayscale, or color
- * images: mono, gray, and color.
- * @opt_param string rights Filters based on licensing. Supported values
- * include: cc_publicdomain, cc_attribute, cc_sharealike, cc_noncommercial,
- * cc_nonderived and combinations of these.
- * @opt_param string excludeTerms Identifies a word or phrase that should not
- * appear in any documents in the search results
- * @opt_param string filter Controls turning on or off the duplicate content
- * filter.
- * @opt_param string linkSite Specifies that all search results should contain a
- * link to a particular URL
- * @opt_param string cx The custom search engine ID to scope this search query
- * @opt_param string siteSearchFilter Controls whether to include or exclude
- * results from the site named in the as_sitesearch parameter
- * @return Postman_Google_Service_Customsearch_Search
- */
- public function listCse($q, $optParams = array())
- {
- $params = array('q' => $q);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Customsearch_Search");
- }
-}
-
-
-
-
-class Postman_Google_Service_Customsearch_Context extends Postman_Google_Collection
-{
- protected $collection_key = 'facets';
- protected $internal_gapi_mappings = array(
- );
- protected $facetsType = 'Postman_Google_Service_Customsearch_ContextFacets';
- protected $facetsDataType = 'array';
- public $title;
-
-
- public function setFacets($facets)
- {
- $this->facets = $facets;
- }
- public function getFacets()
- {
- return $this->facets;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Customsearch_ContextFacets extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "labelWithOp" => "label_with_op",
- );
- public $anchor;
- public $label;
- public $labelWithOp;
-
-
- public function setAnchor($anchor)
- {
- $this->anchor = $anchor;
- }
- public function getAnchor()
- {
- return $this->anchor;
- }
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setLabelWithOp($labelWithOp)
- {
- $this->labelWithOp = $labelWithOp;
- }
- public function getLabelWithOp()
- {
- return $this->labelWithOp;
- }
-}
-
-class Postman_Google_Service_Customsearch_Promotion extends Postman_Google_Collection
-{
- protected $collection_key = 'bodyLines';
- protected $internal_gapi_mappings = array(
- );
- protected $bodyLinesType = 'Postman_Google_Service_Customsearch_PromotionBodyLines';
- protected $bodyLinesDataType = 'array';
- public $displayLink;
- public $htmlTitle;
- protected $imageType = 'Postman_Google_Service_Customsearch_PromotionImage';
- protected $imageDataType = '';
- public $link;
- public $title;
-
-
- public function setBodyLines($bodyLines)
- {
- $this->bodyLines = $bodyLines;
- }
- public function getBodyLines()
- {
- return $this->bodyLines;
- }
- public function setDisplayLink($displayLink)
- {
- $this->displayLink = $displayLink;
- }
- public function getDisplayLink()
- {
- return $this->displayLink;
- }
- public function setHtmlTitle($htmlTitle)
- {
- $this->htmlTitle = $htmlTitle;
- }
- public function getHtmlTitle()
- {
- return $this->htmlTitle;
- }
- public function setImage(Postman_Google_Service_Customsearch_PromotionImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Customsearch_PromotionBodyLines extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $htmlTitle;
- public $link;
- public $title;
- public $url;
-
-
- public function setHtmlTitle($htmlTitle)
- {
- $this->htmlTitle = $htmlTitle;
- }
- public function getHtmlTitle()
- {
- return $this->htmlTitle;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Customsearch_PromotionImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $source;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Customsearch_Query extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $cr;
- public $cref;
- public $cx;
- public $dateRestrict;
- public $disableCnTwTranslation;
- public $exactTerms;
- public $excludeTerms;
- public $fileType;
- public $filter;
- public $gl;
- public $googleHost;
- public $highRange;
- public $hl;
- public $hq;
- public $imgColorType;
- public $imgDominantColor;
- public $imgSize;
- public $imgType;
- public $inputEncoding;
- public $language;
- public $linkSite;
- public $lowRange;
- public $orTerms;
- public $outputEncoding;
- public $relatedSite;
- public $rights;
- public $safe;
- public $searchTerms;
- public $searchType;
- public $siteSearch;
- public $siteSearchFilter;
- public $sort;
- public $startIndex;
- public $startPage;
- public $title;
- public $totalResults;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setCr($cr)
- {
- $this->cr = $cr;
- }
- public function getCr()
- {
- return $this->cr;
- }
- public function setCref($cref)
- {
- $this->cref = $cref;
- }
- public function getCref()
- {
- return $this->cref;
- }
- public function setCx($cx)
- {
- $this->cx = $cx;
- }
- public function getCx()
- {
- return $this->cx;
- }
- public function setDateRestrict($dateRestrict)
- {
- $this->dateRestrict = $dateRestrict;
- }
- public function getDateRestrict()
- {
- return $this->dateRestrict;
- }
- public function setDisableCnTwTranslation($disableCnTwTranslation)
- {
- $this->disableCnTwTranslation = $disableCnTwTranslation;
- }
- public function getDisableCnTwTranslation()
- {
- return $this->disableCnTwTranslation;
- }
- public function setExactTerms($exactTerms)
- {
- $this->exactTerms = $exactTerms;
- }
- public function getExactTerms()
- {
- return $this->exactTerms;
- }
- public function setExcludeTerms($excludeTerms)
- {
- $this->excludeTerms = $excludeTerms;
- }
- public function getExcludeTerms()
- {
- return $this->excludeTerms;
- }
- public function setFileType($fileType)
- {
- $this->fileType = $fileType;
- }
- public function getFileType()
- {
- return $this->fileType;
- }
- public function setFilter($filter)
- {
- $this->filter = $filter;
- }
- public function getFilter()
- {
- return $this->filter;
- }
- public function setGl($gl)
- {
- $this->gl = $gl;
- }
- public function getGl()
- {
- return $this->gl;
- }
- public function setGoogleHost($googleHost)
- {
- $this->googleHost = $googleHost;
- }
- public function getGoogleHost()
- {
- return $this->googleHost;
- }
- public function setHighRange($highRange)
- {
- $this->highRange = $highRange;
- }
- public function getHighRange()
- {
- return $this->highRange;
- }
- public function setHl($hl)
- {
- $this->hl = $hl;
- }
- public function getHl()
- {
- return $this->hl;
- }
- public function setHq($hq)
- {
- $this->hq = $hq;
- }
- public function getHq()
- {
- return $this->hq;
- }
- public function setImgColorType($imgColorType)
- {
- $this->imgColorType = $imgColorType;
- }
- public function getImgColorType()
- {
- return $this->imgColorType;
- }
- public function setImgDominantColor($imgDominantColor)
- {
- $this->imgDominantColor = $imgDominantColor;
- }
- public function getImgDominantColor()
- {
- return $this->imgDominantColor;
- }
- public function setImgSize($imgSize)
- {
- $this->imgSize = $imgSize;
- }
- public function getImgSize()
- {
- return $this->imgSize;
- }
- public function setImgType($imgType)
- {
- $this->imgType = $imgType;
- }
- public function getImgType()
- {
- return $this->imgType;
- }
- public function setInputEncoding($inputEncoding)
- {
- $this->inputEncoding = $inputEncoding;
- }
- public function getInputEncoding()
- {
- return $this->inputEncoding;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setLinkSite($linkSite)
- {
- $this->linkSite = $linkSite;
- }
- public function getLinkSite()
- {
- return $this->linkSite;
- }
- public function setLowRange($lowRange)
- {
- $this->lowRange = $lowRange;
- }
- public function getLowRange()
- {
- return $this->lowRange;
- }
- public function setOrTerms($orTerms)
- {
- $this->orTerms = $orTerms;
- }
- public function getOrTerms()
- {
- return $this->orTerms;
- }
- public function setOutputEncoding($outputEncoding)
- {
- $this->outputEncoding = $outputEncoding;
- }
- public function getOutputEncoding()
- {
- return $this->outputEncoding;
- }
- public function setRelatedSite($relatedSite)
- {
- $this->relatedSite = $relatedSite;
- }
- public function getRelatedSite()
- {
- return $this->relatedSite;
- }
- public function setRights($rights)
- {
- $this->rights = $rights;
- }
- public function getRights()
- {
- return $this->rights;
- }
- public function setSafe($safe)
- {
- $this->safe = $safe;
- }
- public function getSafe()
- {
- return $this->safe;
- }
- public function setSearchTerms($searchTerms)
- {
- $this->searchTerms = $searchTerms;
- }
- public function getSearchTerms()
- {
- return $this->searchTerms;
- }
- public function setSearchType($searchType)
- {
- $this->searchType = $searchType;
- }
- public function getSearchType()
- {
- return $this->searchType;
- }
- public function setSiteSearch($siteSearch)
- {
- $this->siteSearch = $siteSearch;
- }
- public function getSiteSearch()
- {
- return $this->siteSearch;
- }
- public function setSiteSearchFilter($siteSearchFilter)
- {
- $this->siteSearchFilter = $siteSearchFilter;
- }
- public function getSiteSearchFilter()
- {
- return $this->siteSearchFilter;
- }
- public function setSort($sort)
- {
- $this->sort = $sort;
- }
- public function getSort()
- {
- return $this->sort;
- }
- public function setStartIndex($startIndex)
- {
- $this->startIndex = $startIndex;
- }
- public function getStartIndex()
- {
- return $this->startIndex;
- }
- public function setStartPage($startPage)
- {
- $this->startPage = $startPage;
- }
- public function getStartPage()
- {
- return $this->startPage;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
-}
-
-class Postman_Google_Service_Customsearch_Result extends Postman_Google_Collection
-{
- protected $collection_key = 'labels';
- protected $internal_gapi_mappings = array(
- );
- public $cacheId;
- public $displayLink;
- public $fileFormat;
- public $formattedUrl;
- public $htmlFormattedUrl;
- public $htmlSnippet;
- public $htmlTitle;
- protected $imageType = 'Postman_Google_Service_Customsearch_ResultImage';
- protected $imageDataType = '';
- public $kind;
- protected $labelsType = 'Postman_Google_Service_Customsearch_ResultLabels';
- protected $labelsDataType = 'array';
- public $link;
- public $mime;
- public $pagemap;
- public $snippet;
- public $title;
-
-
- public function setCacheId($cacheId)
- {
- $this->cacheId = $cacheId;
- }
- public function getCacheId()
- {
- return $this->cacheId;
- }
- public function setDisplayLink($displayLink)
- {
- $this->displayLink = $displayLink;
- }
- public function getDisplayLink()
- {
- return $this->displayLink;
- }
- public function setFileFormat($fileFormat)
- {
- $this->fileFormat = $fileFormat;
- }
- public function getFileFormat()
- {
- return $this->fileFormat;
- }
- public function setFormattedUrl($formattedUrl)
- {
- $this->formattedUrl = $formattedUrl;
- }
- public function getFormattedUrl()
- {
- return $this->formattedUrl;
- }
- public function setHtmlFormattedUrl($htmlFormattedUrl)
- {
- $this->htmlFormattedUrl = $htmlFormattedUrl;
- }
- public function getHtmlFormattedUrl()
- {
- return $this->htmlFormattedUrl;
- }
- public function setHtmlSnippet($htmlSnippet)
- {
- $this->htmlSnippet = $htmlSnippet;
- }
- public function getHtmlSnippet()
- {
- return $this->htmlSnippet;
- }
- public function setHtmlTitle($htmlTitle)
- {
- $this->htmlTitle = $htmlTitle;
- }
- public function getHtmlTitle()
- {
- return $this->htmlTitle;
- }
- public function setImage(Postman_Google_Service_Customsearch_ResultImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setMime($mime)
- {
- $this->mime = $mime;
- }
- public function getMime()
- {
- return $this->mime;
- }
- public function setPagemap($pagemap)
- {
- $this->pagemap = $pagemap;
- }
- public function getPagemap()
- {
- return $this->pagemap;
- }
- public function setSnippet($snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Customsearch_ResultImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $byteSize;
- public $contextLink;
- public $height;
- public $thumbnailHeight;
- public $thumbnailLink;
- public $thumbnailWidth;
- public $width;
-
-
- public function setByteSize($byteSize)
- {
- $this->byteSize = $byteSize;
- }
- public function getByteSize()
- {
- return $this->byteSize;
- }
- public function setContextLink($contextLink)
- {
- $this->contextLink = $contextLink;
- }
- public function getContextLink()
- {
- return $this->contextLink;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setThumbnailHeight($thumbnailHeight)
- {
- $this->thumbnailHeight = $thumbnailHeight;
- }
- public function getThumbnailHeight()
- {
- return $this->thumbnailHeight;
- }
- public function setThumbnailLink($thumbnailLink)
- {
- $this->thumbnailLink = $thumbnailLink;
- }
- public function getThumbnailLink()
- {
- return $this->thumbnailLink;
- }
- public function setThumbnailWidth($thumbnailWidth)
- {
- $this->thumbnailWidth = $thumbnailWidth;
- }
- public function getThumbnailWidth()
- {
- return $this->thumbnailWidth;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Customsearch_ResultLabels extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "labelWithOp" => "label_with_op",
- );
- public $displayName;
- public $labelWithOp;
- public $name;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setLabelWithOp($labelWithOp)
- {
- $this->labelWithOp = $labelWithOp;
- }
- public function getLabelWithOp()
- {
- return $this->labelWithOp;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Customsearch_ResultPagemap extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Customsearch_ResultPagemapItemElement extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Customsearch_Search extends Postman_Google_Collection
-{
- protected $collection_key = 'promotions';
- protected $internal_gapi_mappings = array(
- );
- protected $contextType = 'Postman_Google_Service_Customsearch_Context';
- protected $contextDataType = '';
- protected $itemsType = 'Postman_Google_Service_Customsearch_Result';
- protected $itemsDataType = 'array';
- public $kind;
- protected $promotionsType = 'Postman_Google_Service_Customsearch_Promotion';
- protected $promotionsDataType = 'array';
- protected $queriesType = 'Postman_Google_Service_Customsearch_Query';
- protected $queriesDataType = 'map';
- protected $searchInformationType = 'Postman_Google_Service_Customsearch_SearchSearchInformation';
- protected $searchInformationDataType = '';
- protected $spellingType = 'Postman_Google_Service_Customsearch_SearchSpelling';
- protected $spellingDataType = '';
- protected $urlType = 'Postman_Google_Service_Customsearch_SearchUrl';
- protected $urlDataType = '';
-
-
- public function setContext(Postman_Google_Service_Customsearch_Context $context)
- {
- $this->context = $context;
- }
- public function getContext()
- {
- return $this->context;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPromotions($promotions)
- {
- $this->promotions = $promotions;
- }
- public function getPromotions()
- {
- return $this->promotions;
- }
- public function setQueries($queries)
- {
- $this->queries = $queries;
- }
- public function getQueries()
- {
- return $this->queries;
- }
- public function setSearchInformation(Postman_Google_Service_Customsearch_SearchSearchInformation $searchInformation)
- {
- $this->searchInformation = $searchInformation;
- }
- public function getSearchInformation()
- {
- return $this->searchInformation;
- }
- public function setSpelling(Postman_Google_Service_Customsearch_SearchSpelling $spelling)
- {
- $this->spelling = $spelling;
- }
- public function getSpelling()
- {
- return $this->spelling;
- }
- public function setUrl(Postman_Google_Service_Customsearch_SearchUrl $url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Customsearch_SearchQueries extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Customsearch_SearchSearchInformation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formattedSearchTime;
- public $formattedTotalResults;
- public $searchTime;
- public $totalResults;
-
-
- public function setFormattedSearchTime($formattedSearchTime)
- {
- $this->formattedSearchTime = $formattedSearchTime;
- }
- public function getFormattedSearchTime()
- {
- return $this->formattedSearchTime;
- }
- public function setFormattedTotalResults($formattedTotalResults)
- {
- $this->formattedTotalResults = $formattedTotalResults;
- }
- public function getFormattedTotalResults()
- {
- return $this->formattedTotalResults;
- }
- public function setSearchTime($searchTime)
- {
- $this->searchTime = $searchTime;
- }
- public function getSearchTime()
- {
- return $this->searchTime;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
-}
-
-class Postman_Google_Service_Customsearch_SearchSpelling extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $correctedQuery;
- public $htmlCorrectedQuery;
-
-
- public function setCorrectedQuery($correctedQuery)
- {
- $this->correctedQuery = $correctedQuery;
- }
- public function getCorrectedQuery()
- {
- return $this->correctedQuery;
- }
- public function setHtmlCorrectedQuery($htmlCorrectedQuery)
- {
- $this->htmlCorrectedQuery = $htmlCorrectedQuery;
- }
- public function getHtmlCorrectedQuery()
- {
- return $this->htmlCorrectedQuery;
- }
-}
-
-class Postman_Google_Service_Customsearch_SearchUrl extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $template;
- public $type;
-
-
- public function setTemplate($template)
- {
- $this->template = $template;
- }
- public function getTemplate()
- {
- return $this->template;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Datastore.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Datastore.php
deleted file mode 100644
index 99b2219..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Datastore.php
+++ /dev/null
@@ -1,1524 +0,0 @@
-
- * API for accessing Google Cloud Datastore.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Datastore extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Cloud Datastore data. */ - const DATASTORE = - "https://www.googleapis.com/auth/datastore"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $datasets; - - - /** - * Constructs the internal representation of the Datastore service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'datastore/v1beta2/datasets/'; - $this->version = 'v1beta2'; - $this->serviceName = 'datastore'; - - $this->datasets = new Postman_Google_Service_Datastore_Datasets_Resource( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'allocateIds' => array( - 'path' => '{datasetId}/allocateIds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'beginTransaction' => array( - 'path' => '{datasetId}/beginTransaction', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'commit' => array( - 'path' => '{datasetId}/commit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'lookup' => array( - 'path' => '{datasetId}/lookup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rollback' => array( - 'path' => '{datasetId}/rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'runQuery' => array( - 'path' => '{datasetId}/runQuery', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "datasets" collection of methods. - * Typical usage is: - *
- * $datastoreService = new Postman_Google_Service_Datastore(...);
- * $datasets = $datastoreService->datasets;
- *
- */
-class Postman_Google_Service_Datastore_Datasets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Allocate IDs for incomplete keys (useful for referencing an entity before it
- * is inserted). (datasets.allocateIds)
- *
- * @param string $datasetId Identifies the dataset.
- * @param Postman_Google_AllocateIdsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Datastore_AllocateIdsResponse
- */
- public function allocateIds($datasetId, Postman_Google_Service_Datastore_AllocateIdsRequest $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('allocateIds', array($params), "Postman_Google_Service_Datastore_AllocateIdsResponse");
- }
-
- /**
- * Begin a new transaction. (datasets.beginTransaction)
- *
- * @param string $datasetId Identifies the dataset.
- * @param Postman_Google_BeginTransactionRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Datastore_BeginTransactionResponse
- */
- public function beginTransaction($datasetId, Postman_Google_Service_Datastore_BeginTransactionRequest $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('beginTransaction', array($params), "Postman_Google_Service_Datastore_BeginTransactionResponse");
- }
-
- /**
- * Commit a transaction, optionally creating, deleting or modifying some
- * entities. (datasets.commit)
- *
- * @param string $datasetId Identifies the dataset.
- * @param Postman_Google_CommitRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Datastore_CommitResponse
- */
- public function commit($datasetId, Postman_Google_Service_Datastore_CommitRequest $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('commit', array($params), "Postman_Google_Service_Datastore_CommitResponse");
- }
-
- /**
- * Look up some entities by key. (datasets.lookup)
- *
- * @param string $datasetId Identifies the dataset.
- * @param Postman_Google_LookupRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Datastore_LookupResponse
- */
- public function lookup($datasetId, Postman_Google_Service_Datastore_LookupRequest $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('lookup', array($params), "Postman_Google_Service_Datastore_LookupResponse");
- }
-
- /**
- * Roll back a transaction. (datasets.rollback)
- *
- * @param string $datasetId Identifies the dataset.
- * @param Postman_Google_RollbackRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Datastore_RollbackResponse
- */
- public function rollback($datasetId, Postman_Google_Service_Datastore_RollbackRequest $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('rollback', array($params), "Postman_Google_Service_Datastore_RollbackResponse");
- }
-
- /**
- * Query for entities. (datasets.runQuery)
- *
- * @param string $datasetId Identifies the dataset.
- * @param Postman_Google_RunQueryRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Datastore_RunQueryResponse
- */
- public function runQuery($datasetId, Postman_Google_Service_Datastore_RunQueryRequest $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('runQuery', array($params), "Postman_Google_Service_Datastore_RunQueryResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Datastore_AllocateIdsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'keys';
- protected $internal_gapi_mappings = array(
- );
- protected $keysType = 'Postman_Google_Service_Datastore_Key';
- protected $keysDataType = 'array';
-
-
- public function setKeys($keys)
- {
- $this->keys = $keys;
- }
- public function getKeys()
- {
- return $this->keys;
- }
-}
-
-class Postman_Google_Service_Datastore_AllocateIdsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'keys';
- protected $internal_gapi_mappings = array(
- );
- protected $headerType = 'Postman_Google_Service_Datastore_ResponseHeader';
- protected $headerDataType = '';
- protected $keysType = 'Postman_Google_Service_Datastore_Key';
- protected $keysDataType = 'array';
-
-
- public function setHeader(Postman_Google_Service_Datastore_ResponseHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
- public function setKeys($keys)
- {
- $this->keys = $keys;
- }
- public function getKeys()
- {
- return $this->keys;
- }
-}
-
-class Postman_Google_Service_Datastore_BeginTransactionRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $isolationLevel;
-
-
- public function setIsolationLevel($isolationLevel)
- {
- $this->isolationLevel = $isolationLevel;
- }
- public function getIsolationLevel()
- {
- return $this->isolationLevel;
- }
-}
-
-class Postman_Google_Service_Datastore_BeginTransactionResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $headerType = 'Postman_Google_Service_Datastore_ResponseHeader';
- protected $headerDataType = '';
- public $transaction;
-
-
- public function setHeader(Postman_Google_Service_Datastore_ResponseHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
- public function setTransaction($transaction)
- {
- $this->transaction = $transaction;
- }
- public function getTransaction()
- {
- return $this->transaction;
- }
-}
-
-class Postman_Google_Service_Datastore_CommitRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $ignoreReadOnly;
- public $mode;
- protected $mutationType = 'Postman_Google_Service_Datastore_Mutation';
- protected $mutationDataType = '';
- public $transaction;
-
-
- public function setIgnoreReadOnly($ignoreReadOnly)
- {
- $this->ignoreReadOnly = $ignoreReadOnly;
- }
- public function getIgnoreReadOnly()
- {
- return $this->ignoreReadOnly;
- }
- public function setMode($mode)
- {
- $this->mode = $mode;
- }
- public function getMode()
- {
- return $this->mode;
- }
- public function setMutation(Postman_Google_Service_Datastore_Mutation $mutation)
- {
- $this->mutation = $mutation;
- }
- public function getMutation()
- {
- return $this->mutation;
- }
- public function setTransaction($transaction)
- {
- $this->transaction = $transaction;
- }
- public function getTransaction()
- {
- return $this->transaction;
- }
-}
-
-class Postman_Google_Service_Datastore_CommitResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $headerType = 'Postman_Google_Service_Datastore_ResponseHeader';
- protected $headerDataType = '';
- protected $mutationResultType = 'Postman_Google_Service_Datastore_MutationResult';
- protected $mutationResultDataType = '';
-
-
- public function setHeader(Postman_Google_Service_Datastore_ResponseHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
- public function setMutationResult(Postman_Google_Service_Datastore_MutationResult $mutationResult)
- {
- $this->mutationResult = $mutationResult;
- }
- public function getMutationResult()
- {
- return $this->mutationResult;
- }
-}
-
-class Postman_Google_Service_Datastore_CompositeFilter extends Postman_Google_Collection
-{
- protected $collection_key = 'filters';
- protected $internal_gapi_mappings = array(
- );
- protected $filtersType = 'Postman_Google_Service_Datastore_Filter';
- protected $filtersDataType = 'array';
- public $operator;
-
-
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setOperator($operator)
- {
- $this->operator = $operator;
- }
- public function getOperator()
- {
- return $this->operator;
- }
-}
-
-class Postman_Google_Service_Datastore_Entity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $keyType = 'Postman_Google_Service_Datastore_Key';
- protected $keyDataType = '';
- protected $propertiesType = 'Postman_Google_Service_Datastore_Property';
- protected $propertiesDataType = 'map';
-
-
- public function setKey(Postman_Google_Service_Datastore_Key $key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setProperties($properties)
- {
- $this->properties = $properties;
- }
- public function getProperties()
- {
- return $this->properties;
- }
-}
-
-class Postman_Google_Service_Datastore_EntityProperties extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Datastore_EntityResult extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $entityType = 'Postman_Google_Service_Datastore_Entity';
- protected $entityDataType = '';
-
-
- public function setEntity(Postman_Google_Service_Datastore_Entity $entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
-}
-
-class Postman_Google_Service_Datastore_Filter extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $compositeFilterType = 'Postman_Google_Service_Datastore_CompositeFilter';
- protected $compositeFilterDataType = '';
- protected $propertyFilterType = 'Postman_Google_Service_Datastore_PropertyFilter';
- protected $propertyFilterDataType = '';
-
-
- public function setCompositeFilter(Postman_Google_Service_Datastore_CompositeFilter $compositeFilter)
- {
- $this->compositeFilter = $compositeFilter;
- }
- public function getCompositeFilter()
- {
- return $this->compositeFilter;
- }
- public function setPropertyFilter(Postman_Google_Service_Datastore_PropertyFilter $propertyFilter)
- {
- $this->propertyFilter = $propertyFilter;
- }
- public function getPropertyFilter()
- {
- return $this->propertyFilter;
- }
-}
-
-class Postman_Google_Service_Datastore_GqlQuery extends Postman_Google_Collection
-{
- protected $collection_key = 'numberArgs';
- protected $internal_gapi_mappings = array(
- );
- public $allowLiteral;
- protected $nameArgsType = 'Postman_Google_Service_Datastore_GqlQueryArg';
- protected $nameArgsDataType = 'array';
- protected $numberArgsType = 'Postman_Google_Service_Datastore_GqlQueryArg';
- protected $numberArgsDataType = 'array';
- public $queryString;
-
-
- public function setAllowLiteral($allowLiteral)
- {
- $this->allowLiteral = $allowLiteral;
- }
- public function getAllowLiteral()
- {
- return $this->allowLiteral;
- }
- public function setNameArgs($nameArgs)
- {
- $this->nameArgs = $nameArgs;
- }
- public function getNameArgs()
- {
- return $this->nameArgs;
- }
- public function setNumberArgs($numberArgs)
- {
- $this->numberArgs = $numberArgs;
- }
- public function getNumberArgs()
- {
- return $this->numberArgs;
- }
- public function setQueryString($queryString)
- {
- $this->queryString = $queryString;
- }
- public function getQueryString()
- {
- return $this->queryString;
- }
-}
-
-class Postman_Google_Service_Datastore_GqlQueryArg extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $cursor;
- public $name;
- protected $valueType = 'Postman_Google_Service_Datastore_Value';
- protected $valueDataType = '';
-
-
- public function setCursor($cursor)
- {
- $this->cursor = $cursor;
- }
- public function getCursor()
- {
- return $this->cursor;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue(Postman_Google_Service_Datastore_Value $value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Datastore_Key extends Postman_Google_Collection
-{
- protected $collection_key = 'path';
- protected $internal_gapi_mappings = array(
- );
- protected $partitionIdType = 'Postman_Google_Service_Datastore_PartitionId';
- protected $partitionIdDataType = '';
- protected $pathType = 'Postman_Google_Service_Datastore_KeyPathElement';
- protected $pathDataType = 'array';
-
-
- public function setPartitionId(Postman_Google_Service_Datastore_PartitionId $partitionId)
- {
- $this->partitionId = $partitionId;
- }
- public function getPartitionId()
- {
- return $this->partitionId;
- }
- public function setPath($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
-}
-
-class Postman_Google_Service_Datastore_KeyPathElement extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_Datastore_KindExpression extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Datastore_LookupRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'keys';
- protected $internal_gapi_mappings = array(
- );
- protected $keysType = 'Postman_Google_Service_Datastore_Key';
- protected $keysDataType = 'array';
- protected $readOptionsType = 'Postman_Google_Service_Datastore_ReadOptions';
- protected $readOptionsDataType = '';
-
-
- public function setKeys($keys)
- {
- $this->keys = $keys;
- }
- public function getKeys()
- {
- return $this->keys;
- }
- public function setReadOptions(Postman_Google_Service_Datastore_ReadOptions $readOptions)
- {
- $this->readOptions = $readOptions;
- }
- public function getReadOptions()
- {
- return $this->readOptions;
- }
-}
-
-class Postman_Google_Service_Datastore_LookupResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'missing';
- protected $internal_gapi_mappings = array(
- );
- protected $deferredType = 'Postman_Google_Service_Datastore_Key';
- protected $deferredDataType = 'array';
- protected $foundType = 'Postman_Google_Service_Datastore_EntityResult';
- protected $foundDataType = 'array';
- protected $headerType = 'Postman_Google_Service_Datastore_ResponseHeader';
- protected $headerDataType = '';
- protected $missingType = 'Postman_Google_Service_Datastore_EntityResult';
- protected $missingDataType = 'array';
-
-
- public function setDeferred($deferred)
- {
- $this->deferred = $deferred;
- }
- public function getDeferred()
- {
- return $this->deferred;
- }
- public function setFound($found)
- {
- $this->found = $found;
- }
- public function getFound()
- {
- return $this->found;
- }
- public function setHeader(Postman_Google_Service_Datastore_ResponseHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
- public function setMissing($missing)
- {
- $this->missing = $missing;
- }
- public function getMissing()
- {
- return $this->missing;
- }
-}
-
-class Postman_Google_Service_Datastore_Mutation extends Postman_Google_Collection
-{
- protected $collection_key = 'upsert';
- protected $internal_gapi_mappings = array(
- );
- protected $deleteType = 'Postman_Google_Service_Datastore_Key';
- protected $deleteDataType = 'array';
- public $force;
- protected $insertType = 'Postman_Google_Service_Datastore_Entity';
- protected $insertDataType = 'array';
- protected $insertAutoIdType = 'Postman_Google_Service_Datastore_Entity';
- protected $insertAutoIdDataType = 'array';
- protected $updateType = 'Postman_Google_Service_Datastore_Entity';
- protected $updateDataType = 'array';
- protected $upsertType = 'Postman_Google_Service_Datastore_Entity';
- protected $upsertDataType = 'array';
-
-
- public function setDelete($delete)
- {
- $this->delete = $delete;
- }
- public function getDelete()
- {
- return $this->delete;
- }
- public function setForce($force)
- {
- $this->force = $force;
- }
- public function getForce()
- {
- return $this->force;
- }
- public function setInsert($insert)
- {
- $this->insert = $insert;
- }
- public function getInsert()
- {
- return $this->insert;
- }
- public function setInsertAutoId($insertAutoId)
- {
- $this->insertAutoId = $insertAutoId;
- }
- public function getInsertAutoId()
- {
- return $this->insertAutoId;
- }
- public function setUpdate($update)
- {
- $this->update = $update;
- }
- public function getUpdate()
- {
- return $this->update;
- }
- public function setUpsert($upsert)
- {
- $this->upsert = $upsert;
- }
- public function getUpsert()
- {
- return $this->upsert;
- }
-}
-
-class Postman_Google_Service_Datastore_MutationResult extends Postman_Google_Collection
-{
- protected $collection_key = 'insertAutoIdKeys';
- protected $internal_gapi_mappings = array(
- );
- public $indexUpdates;
- protected $insertAutoIdKeysType = 'Postman_Google_Service_Datastore_Key';
- protected $insertAutoIdKeysDataType = 'array';
-
-
- public function setIndexUpdates($indexUpdates)
- {
- $this->indexUpdates = $indexUpdates;
- }
- public function getIndexUpdates()
- {
- return $this->indexUpdates;
- }
- public function setInsertAutoIdKeys($insertAutoIdKeys)
- {
- $this->insertAutoIdKeys = $insertAutoIdKeys;
- }
- public function getInsertAutoIdKeys()
- {
- return $this->insertAutoIdKeys;
- }
-}
-
-class Postman_Google_Service_Datastore_PartitionId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $namespace;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setNamespace($namespace)
- {
- $this->namespace = $namespace;
- }
- public function getNamespace()
- {
- return $this->namespace;
- }
-}
-
-class Postman_Google_Service_Datastore_Property extends Postman_Google_Collection
-{
- protected $collection_key = 'listValue';
- protected $internal_gapi_mappings = array(
- );
- public $blobKeyValue;
- public $blobValue;
- public $booleanValue;
- public $dateTimeValue;
- public $doubleValue;
- protected $entityValueType = 'Postman_Google_Service_Datastore_Entity';
- protected $entityValueDataType = '';
- public $indexed;
- public $integerValue;
- protected $keyValueType = 'Postman_Google_Service_Datastore_Key';
- protected $keyValueDataType = '';
- protected $listValueType = 'Postman_Google_Service_Datastore_Value';
- protected $listValueDataType = 'array';
- public $meaning;
- public $stringValue;
-
-
- public function setBlobKeyValue($blobKeyValue)
- {
- $this->blobKeyValue = $blobKeyValue;
- }
- public function getBlobKeyValue()
- {
- return $this->blobKeyValue;
- }
- public function setBlobValue($blobValue)
- {
- $this->blobValue = $blobValue;
- }
- public function getBlobValue()
- {
- return $this->blobValue;
- }
- public function setBooleanValue($booleanValue)
- {
- $this->booleanValue = $booleanValue;
- }
- public function getBooleanValue()
- {
- return $this->booleanValue;
- }
- public function setDateTimeValue($dateTimeValue)
- {
- $this->dateTimeValue = $dateTimeValue;
- }
- public function getDateTimeValue()
- {
- return $this->dateTimeValue;
- }
- public function setDoubleValue($doubleValue)
- {
- $this->doubleValue = $doubleValue;
- }
- public function getDoubleValue()
- {
- return $this->doubleValue;
- }
- public function setEntityValue(Postman_Google_Service_Datastore_Entity $entityValue)
- {
- $this->entityValue = $entityValue;
- }
- public function getEntityValue()
- {
- return $this->entityValue;
- }
- public function setIndexed($indexed)
- {
- $this->indexed = $indexed;
- }
- public function getIndexed()
- {
- return $this->indexed;
- }
- public function setIntegerValue($integerValue)
- {
- $this->integerValue = $integerValue;
- }
- public function getIntegerValue()
- {
- return $this->integerValue;
- }
- public function setKeyValue(Postman_Google_Service_Datastore_Key $keyValue)
- {
- $this->keyValue = $keyValue;
- }
- public function getKeyValue()
- {
- return $this->keyValue;
- }
- public function setListValue($listValue)
- {
- $this->listValue = $listValue;
- }
- public function getListValue()
- {
- return $this->listValue;
- }
- public function setMeaning($meaning)
- {
- $this->meaning = $meaning;
- }
- public function getMeaning()
- {
- return $this->meaning;
- }
- public function setStringValue($stringValue)
- {
- $this->stringValue = $stringValue;
- }
- public function getStringValue()
- {
- return $this->stringValue;
- }
-}
-
-class Postman_Google_Service_Datastore_PropertyExpression extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $aggregationFunction;
- protected $propertyType = 'Postman_Google_Service_Datastore_PropertyReference';
- protected $propertyDataType = '';
-
-
- public function setAggregationFunction($aggregationFunction)
- {
- $this->aggregationFunction = $aggregationFunction;
- }
- public function getAggregationFunction()
- {
- return $this->aggregationFunction;
- }
- public function setProperty(Postman_Google_Service_Datastore_PropertyReference $property)
- {
- $this->property = $property;
- }
- public function getProperty()
- {
- return $this->property;
- }
-}
-
-class Postman_Google_Service_Datastore_PropertyFilter extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $operator;
- protected $propertyType = 'Postman_Google_Service_Datastore_PropertyReference';
- protected $propertyDataType = '';
- protected $valueType = 'Postman_Google_Service_Datastore_Value';
- protected $valueDataType = '';
-
-
- public function setOperator($operator)
- {
- $this->operator = $operator;
- }
- public function getOperator()
- {
- return $this->operator;
- }
- public function setProperty(Postman_Google_Service_Datastore_PropertyReference $property)
- {
- $this->property = $property;
- }
- public function getProperty()
- {
- return $this->property;
- }
- public function setValue(Postman_Google_Service_Datastore_Value $value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Datastore_PropertyOrder extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $direction;
- protected $propertyType = 'Postman_Google_Service_Datastore_PropertyReference';
- protected $propertyDataType = '';
-
-
- public function setDirection($direction)
- {
- $this->direction = $direction;
- }
- public function getDirection()
- {
- return $this->direction;
- }
- public function setProperty(Postman_Google_Service_Datastore_PropertyReference $property)
- {
- $this->property = $property;
- }
- public function getProperty()
- {
- return $this->property;
- }
-}
-
-class Postman_Google_Service_Datastore_PropertyReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Datastore_Query extends Postman_Google_Collection
-{
- protected $collection_key = 'projection';
- protected $internal_gapi_mappings = array(
- );
- public $endCursor;
- protected $filterType = 'Postman_Google_Service_Datastore_Filter';
- protected $filterDataType = '';
- protected $groupByType = 'Postman_Google_Service_Datastore_PropertyReference';
- protected $groupByDataType = 'array';
- protected $kindsType = 'Postman_Google_Service_Datastore_KindExpression';
- protected $kindsDataType = 'array';
- public $limit;
- public $offset;
- protected $orderType = 'Postman_Google_Service_Datastore_PropertyOrder';
- protected $orderDataType = 'array';
- protected $projectionType = 'Postman_Google_Service_Datastore_PropertyExpression';
- protected $projectionDataType = 'array';
- public $startCursor;
-
-
- public function setEndCursor($endCursor)
- {
- $this->endCursor = $endCursor;
- }
- public function getEndCursor()
- {
- return $this->endCursor;
- }
- public function setFilter(Postman_Google_Service_Datastore_Filter $filter)
- {
- $this->filter = $filter;
- }
- public function getFilter()
- {
- return $this->filter;
- }
- public function setGroupBy($groupBy)
- {
- $this->groupBy = $groupBy;
- }
- public function getGroupBy()
- {
- return $this->groupBy;
- }
- public function setKinds($kinds)
- {
- $this->kinds = $kinds;
- }
- public function getKinds()
- {
- return $this->kinds;
- }
- public function setLimit($limit)
- {
- $this->limit = $limit;
- }
- public function getLimit()
- {
- return $this->limit;
- }
- public function setOffset($offset)
- {
- $this->offset = $offset;
- }
- public function getOffset()
- {
- return $this->offset;
- }
- public function setOrder($order)
- {
- $this->order = $order;
- }
- public function getOrder()
- {
- return $this->order;
- }
- public function setProjection($projection)
- {
- $this->projection = $projection;
- }
- public function getProjection()
- {
- return $this->projection;
- }
- public function setStartCursor($startCursor)
- {
- $this->startCursor = $startCursor;
- }
- public function getStartCursor()
- {
- return $this->startCursor;
- }
-}
-
-class Postman_Google_Service_Datastore_QueryResultBatch extends Postman_Google_Collection
-{
- protected $collection_key = 'entityResults';
- protected $internal_gapi_mappings = array(
- );
- public $endCursor;
- public $entityResultType;
- protected $entityResultsType = 'Postman_Google_Service_Datastore_EntityResult';
- protected $entityResultsDataType = 'array';
- public $moreResults;
- public $skippedResults;
-
-
- public function setEndCursor($endCursor)
- {
- $this->endCursor = $endCursor;
- }
- public function getEndCursor()
- {
- return $this->endCursor;
- }
- public function setEntityResultType($entityResultType)
- {
- $this->entityResultType = $entityResultType;
- }
- public function getEntityResultType()
- {
- return $this->entityResultType;
- }
- public function setEntityResults($entityResults)
- {
- $this->entityResults = $entityResults;
- }
- public function getEntityResults()
- {
- return $this->entityResults;
- }
- public function setMoreResults($moreResults)
- {
- $this->moreResults = $moreResults;
- }
- public function getMoreResults()
- {
- return $this->moreResults;
- }
- public function setSkippedResults($skippedResults)
- {
- $this->skippedResults = $skippedResults;
- }
- public function getSkippedResults()
- {
- return $this->skippedResults;
- }
-}
-
-class Postman_Google_Service_Datastore_ReadOptions extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $readConsistency;
- public $transaction;
-
-
- public function setReadConsistency($readConsistency)
- {
- $this->readConsistency = $readConsistency;
- }
- public function getReadConsistency()
- {
- return $this->readConsistency;
- }
- public function setTransaction($transaction)
- {
- $this->transaction = $transaction;
- }
- public function getTransaction()
- {
- return $this->transaction;
- }
-}
-
-class Postman_Google_Service_Datastore_ResponseHeader extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Datastore_RollbackRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $transaction;
-
-
- public function setTransaction($transaction)
- {
- $this->transaction = $transaction;
- }
- public function getTransaction()
- {
- return $this->transaction;
- }
-}
-
-class Postman_Google_Service_Datastore_RollbackResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $headerType = 'Postman_Google_Service_Datastore_ResponseHeader';
- protected $headerDataType = '';
-
-
- public function setHeader(Postman_Google_Service_Datastore_ResponseHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
-}
-
-class Postman_Google_Service_Datastore_RunQueryRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $gqlQueryType = 'Postman_Google_Service_Datastore_GqlQuery';
- protected $gqlQueryDataType = '';
- protected $partitionIdType = 'Postman_Google_Service_Datastore_PartitionId';
- protected $partitionIdDataType = '';
- protected $queryType = 'Postman_Google_Service_Datastore_Query';
- protected $queryDataType = '';
- protected $readOptionsType = 'Postman_Google_Service_Datastore_ReadOptions';
- protected $readOptionsDataType = '';
-
-
- public function setGqlQuery(Postman_Google_Service_Datastore_GqlQuery $gqlQuery)
- {
- $this->gqlQuery = $gqlQuery;
- }
- public function getGqlQuery()
- {
- return $this->gqlQuery;
- }
- public function setPartitionId(Postman_Google_Service_Datastore_PartitionId $partitionId)
- {
- $this->partitionId = $partitionId;
- }
- public function getPartitionId()
- {
- return $this->partitionId;
- }
- public function setQuery(Postman_Google_Service_Datastore_Query $query)
- {
- $this->query = $query;
- }
- public function getQuery()
- {
- return $this->query;
- }
- public function setReadOptions(Postman_Google_Service_Datastore_ReadOptions $readOptions)
- {
- $this->readOptions = $readOptions;
- }
- public function getReadOptions()
- {
- return $this->readOptions;
- }
-}
-
-class Postman_Google_Service_Datastore_RunQueryResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $batchType = 'Postman_Google_Service_Datastore_QueryResultBatch';
- protected $batchDataType = '';
- protected $headerType = 'Postman_Google_Service_Datastore_ResponseHeader';
- protected $headerDataType = '';
-
-
- public function setBatch(Postman_Google_Service_Datastore_QueryResultBatch $batch)
- {
- $this->batch = $batch;
- }
- public function getBatch()
- {
- return $this->batch;
- }
- public function setHeader(Postman_Google_Service_Datastore_ResponseHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
-}
-
-class Postman_Google_Service_Datastore_Value extends Postman_Google_Collection
-{
- protected $collection_key = 'listValue';
- protected $internal_gapi_mappings = array(
- );
- public $blobKeyValue;
- public $blobValue;
- public $booleanValue;
- public $dateTimeValue;
- public $doubleValue;
- protected $entityValueType = 'Postman_Google_Service_Datastore_Entity';
- protected $entityValueDataType = '';
- public $indexed;
- public $integerValue;
- protected $keyValueType = 'Postman_Google_Service_Datastore_Key';
- protected $keyValueDataType = '';
- protected $listValueType = 'Postman_Google_Service_Datastore_Value';
- protected $listValueDataType = 'array';
- public $meaning;
- public $stringValue;
-
-
- public function setBlobKeyValue($blobKeyValue)
- {
- $this->blobKeyValue = $blobKeyValue;
- }
- public function getBlobKeyValue()
- {
- return $this->blobKeyValue;
- }
- public function setBlobValue($blobValue)
- {
- $this->blobValue = $blobValue;
- }
- public function getBlobValue()
- {
- return $this->blobValue;
- }
- public function setBooleanValue($booleanValue)
- {
- $this->booleanValue = $booleanValue;
- }
- public function getBooleanValue()
- {
- return $this->booleanValue;
- }
- public function setDateTimeValue($dateTimeValue)
- {
- $this->dateTimeValue = $dateTimeValue;
- }
- public function getDateTimeValue()
- {
- return $this->dateTimeValue;
- }
- public function setDoubleValue($doubleValue)
- {
- $this->doubleValue = $doubleValue;
- }
- public function getDoubleValue()
- {
- return $this->doubleValue;
- }
- public function setEntityValue(Postman_Google_Service_Datastore_Entity $entityValue)
- {
- $this->entityValue = $entityValue;
- }
- public function getEntityValue()
- {
- return $this->entityValue;
- }
- public function setIndexed($indexed)
- {
- $this->indexed = $indexed;
- }
- public function getIndexed()
- {
- return $this->indexed;
- }
- public function setIntegerValue($integerValue)
- {
- $this->integerValue = $integerValue;
- }
- public function getIntegerValue()
- {
- return $this->integerValue;
- }
- public function setKeyValue(Postman_Google_Service_Datastore_Key $keyValue)
- {
- $this->keyValue = $keyValue;
- }
- public function getKeyValue()
- {
- return $this->keyValue;
- }
- public function setListValue($listValue)
- {
- $this->listValue = $listValue;
- }
- public function getListValue()
- {
- return $this->listValue;
- }
- public function setMeaning($meaning)
- {
- $this->meaning = $meaning;
- }
- public function getMeaning()
- {
- return $this->meaning;
- }
- public function setStringValue($stringValue)
- {
- $this->stringValue = $stringValue;
- }
- public function getStringValue()
- {
- return $this->stringValue;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Dfareporting.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Dfareporting.php
deleted file mode 100644
index 551db48..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Dfareporting.php
+++ /dev/null
@@ -1,2698 +0,0 @@
-
- * Lets you create, run and download reports.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Dfareporting extends Postman_Google_Service -{ - /** View and manage DoubleClick for Advertisers reports. */ - const DFAREPORTING = - "https://www.googleapis.com/auth/dfareporting"; - - public $dimensionValues; - public $files; - public $reports; - public $reports_compatibleFields; - public $reports_files; - public $userProfiles; - - - /** - * Constructs the internal representation of the Dfareporting service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'dfareporting/v1.3/'; - $this->version = 'v1.3'; - $this->serviceName = 'dfareporting'; - - $this->dimensionValues = new Postman_Google_Service_Dfareporting_DimensionValues_Resource( - $this, - $this->serviceName, - 'dimensionValues', - array( - 'methods' => array( - 'query' => array( - 'path' => 'userprofiles/{profileId}/dimensionvalues/query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->files = new Postman_Google_Service_Dfareporting_Files_Resource( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'get' => array( - 'path' => 'reports/{reportId}/files/{fileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scope' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->reports = new Postman_Google_Service_Dfareporting_Reports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/reports', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scope' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'run' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}/run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'synchronous' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports_compatibleFields = new Postman_Google_Service_Dfareporting_ReportsCompatibleFields_Resource( - $this, - $this->serviceName, - 'compatibleFields', - array( - 'methods' => array( - 'query' => array( - 'path' => 'userprofiles/{profileId}/reports/compatiblefields/query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports_files = new Postman_Google_Service_Dfareporting_ReportsFiles_Resource( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}/files/{fileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}/files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->userProfiles = new Postman_Google_Service_Dfareporting_UserProfiles_Resource( - $this, - $this->serviceName, - 'userProfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "dimensionValues" collection of methods. - * Typical usage is: - *
- * $dfareportingService = new Postman_Google_Service_Dfareporting(...);
- * $dimensionValues = $dfareportingService->dimensionValues;
- *
- */
-class Postman_Google_Service_Dfareporting_DimensionValues_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves list of report dimension values for a list of filters.
- * (dimensionValues.query)
- *
- * @param string $profileId The DFA user profile ID.
- * @param Postman_Google_DimensionValueRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The value of the nextToken from the previous
- * result page.
- * @opt_param int maxResults Maximum number of results to return.
- * @return Postman_Google_Service_Dfareporting_DimensionValueList
- */
- public function query($profileId, Postman_Google_Service_Dfareporting_DimensionValueRequest $postBody, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('query', array($params), "Postman_Google_Service_Dfareporting_DimensionValueList");
- }
-}
-
-/**
- * The "files" collection of methods.
- * Typical usage is:
- *
- * $dfareportingService = new Postman_Google_Service_Dfareporting(...);
- * $files = $dfareportingService->files;
- *
- */
-class Postman_Google_Service_Dfareporting_Files_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a report file by its report ID and file ID. (files.get)
- *
- * @param string $reportId The ID of the report.
- * @param string $fileId The ID of the report file.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_DfareportingFile
- */
- public function get($reportId, $fileId, $optParams = array())
- {
- $params = array('reportId' => $reportId, 'fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dfareporting_DfareportingFile");
- }
-
- /**
- * Lists files for a user profile. (files.listFiles)
- *
- * @param string $profileId The DFA profile ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sortField The field by which to sort the list.
- * @opt_param int maxResults Maximum number of results to return.
- * @opt_param string pageToken The value of the nextToken from the previous
- * result page.
- * @opt_param string sortOrder Order of sorted results, default is 'DESCENDING'.
- * @opt_param string scope The scope that defines which results are returned,
- * default is 'MINE'.
- * @return Postman_Google_Service_Dfareporting_FileList
- */
- public function listFiles($profileId, $optParams = array())
- {
- $params = array('profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dfareporting_FileList");
- }
-}
-
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $dfareportingService = new Postman_Google_Service_Dfareporting(...);
- * $reports = $dfareportingService->reports;
- *
- */
-class Postman_Google_Service_Dfareporting_Reports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a report by its ID. (reports.delete)
- *
- * @param string $profileId The DFA user profile ID.
- * @param string $reportId The ID of the report.
- * @param array $optParams Optional parameters.
- */
- public function delete($profileId, $reportId, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a report by its ID. (reports.get)
- *
- * @param string $profileId The DFA user profile ID.
- * @param string $reportId The ID of the report.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_Report
- */
- public function get($profileId, $reportId, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dfareporting_Report");
- }
-
- /**
- * Creates a report. (reports.insert)
- *
- * @param string $profileId The DFA user profile ID.
- * @param Postman_Google_Report $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_Report
- */
- public function insert($profileId, Postman_Google_Service_Dfareporting_Report $postBody, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Dfareporting_Report");
- }
-
- /**
- * Retrieves list of reports. (reports.listReports)
- *
- * @param string $profileId The DFA user profile ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sortField The field by which to sort the list.
- * @opt_param int maxResults Maximum number of results to return.
- * @opt_param string pageToken The value of the nextToken from the previous
- * result page.
- * @opt_param string sortOrder Order of sorted results, default is 'DESCENDING'.
- * @opt_param string scope The scope that defines which results are returned,
- * default is 'MINE'.
- * @return Postman_Google_Service_Dfareporting_ReportList
- */
- public function listReports($profileId, $optParams = array())
- {
- $params = array('profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dfareporting_ReportList");
- }
-
- /**
- * Updates a report. This method supports patch semantics. (reports.patch)
- *
- * @param string $profileId The DFA user profile ID.
- * @param string $reportId The ID of the report.
- * @param Postman_Google_Report $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_Report
- */
- public function patch($profileId, $reportId, Postman_Google_Service_Dfareporting_Report $postBody, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Dfareporting_Report");
- }
-
- /**
- * Runs a report. (reports.run)
- *
- * @param string $profileId The DFA profile ID.
- * @param string $reportId The ID of the report.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool synchronous If set and true, tries to run the report
- * synchronously.
- * @return Postman_Google_Service_Dfareporting_DfareportingFile
- */
- public function run($profileId, $reportId, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId);
- $params = array_merge($params, $optParams);
- return $this->call('run', array($params), "Postman_Google_Service_Dfareporting_DfareportingFile");
- }
-
- /**
- * Updates a report. (reports.update)
- *
- * @param string $profileId The DFA user profile ID.
- * @param string $reportId The ID of the report.
- * @param Postman_Google_Report $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_Report
- */
- public function update($profileId, $reportId, Postman_Google_Service_Dfareporting_Report $postBody, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Dfareporting_Report");
- }
-}
-
-/**
- * The "compatibleFields" collection of methods.
- * Typical usage is:
- *
- * $dfareportingService = new Postman_Google_Service_Dfareporting(...);
- * $compatibleFields = $dfareportingService->compatibleFields;
- *
- */
-class Postman_Google_Service_Dfareporting_ReportsCompatibleFields_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns the fields that are compatible to be selected in the respective
- * sections of a report criteria, given the fields already selected in the input
- * report and user permissions. (compatibleFields.query)
- *
- * @param string $profileId The DFA user profile ID.
- * @param Postman_Google_Report $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_CompatibleFields
- */
- public function query($profileId, Postman_Google_Service_Dfareporting_Report $postBody, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('query', array($params), "Postman_Google_Service_Dfareporting_CompatibleFields");
- }
-}
-/**
- * The "files" collection of methods.
- * Typical usage is:
- *
- * $dfareportingService = new Postman_Google_Service_Dfareporting(...);
- * $files = $dfareportingService->files;
- *
- */
-class Postman_Google_Service_Dfareporting_ReportsFiles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a report file. (files.get)
- *
- * @param string $profileId The DFA profile ID.
- * @param string $reportId The ID of the report.
- * @param string $fileId The ID of the report file.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_DfareportingFile
- */
- public function get($profileId, $reportId, $fileId, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId, 'fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dfareporting_DfareportingFile");
- }
-
- /**
- * Lists files for a report. (files.listReportsFiles)
- *
- * @param string $profileId The DFA profile ID.
- * @param string $reportId The ID of the parent report.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sortField The field by which to sort the list.
- * @opt_param int maxResults Maximum number of results to return.
- * @opt_param string pageToken The value of the nextToken from the previous
- * result page.
- * @opt_param string sortOrder Order of sorted results, default is 'DESCENDING'.
- * @return Postman_Google_Service_Dfareporting_FileList
- */
- public function listReportsFiles($profileId, $reportId, $optParams = array())
- {
- $params = array('profileId' => $profileId, 'reportId' => $reportId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dfareporting_FileList");
- }
-}
-
-/**
- * The "userProfiles" collection of methods.
- * Typical usage is:
- *
- * $dfareportingService = new Postman_Google_Service_Dfareporting(...);
- * $userProfiles = $dfareportingService->userProfiles;
- *
- */
-class Postman_Google_Service_Dfareporting_UserProfiles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one user profile by ID. (userProfiles.get)
- *
- * @param string $profileId The user profile ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_UserProfile
- */
- public function get($profileId, $optParams = array())
- {
- $params = array('profileId' => $profileId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dfareporting_UserProfile");
- }
-
- /**
- * Retrieves list of user profiles for a user. (userProfiles.listUserProfiles)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dfareporting_UserProfileList
- */
- public function listUserProfiles($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dfareporting_UserProfileList");
- }
-}
-
-
-
-
-class Postman_Google_Service_Dfareporting_Activities extends Postman_Google_Collection
-{
- protected $collection_key = 'metricNames';
- protected $internal_gapi_mappings = array(
- );
- protected $filtersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $filtersDataType = 'array';
- public $kind;
- public $metricNames;
-
-
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
-}
-
-class Postman_Google_Service_Dfareporting_CompatibleFields extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $crossDimensionReachReportCompatibleFieldsType = 'Postman_Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields';
- protected $crossDimensionReachReportCompatibleFieldsDataType = '';
- protected $floodlightReportCompatibleFieldsType = 'Postman_Google_Service_Dfareporting_FloodlightReportCompatibleFields';
- protected $floodlightReportCompatibleFieldsDataType = '';
- public $kind;
- protected $pathToConversionReportCompatibleFieldsType = 'Postman_Google_Service_Dfareporting_PathToConversionReportCompatibleFields';
- protected $pathToConversionReportCompatibleFieldsDataType = '';
- protected $reachReportCompatibleFieldsType = 'Postman_Google_Service_Dfareporting_ReachReportCompatibleFields';
- protected $reachReportCompatibleFieldsDataType = '';
- protected $reportCompatibleFieldsType = 'Postman_Google_Service_Dfareporting_ReportCompatibleFields';
- protected $reportCompatibleFieldsDataType = '';
-
-
- public function setCrossDimensionReachReportCompatibleFields(Postman_Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields $crossDimensionReachReportCompatibleFields)
- {
- $this->crossDimensionReachReportCompatibleFields = $crossDimensionReachReportCompatibleFields;
- }
- public function getCrossDimensionReachReportCompatibleFields()
- {
- return $this->crossDimensionReachReportCompatibleFields;
- }
- public function setFloodlightReportCompatibleFields(Postman_Google_Service_Dfareporting_FloodlightReportCompatibleFields $floodlightReportCompatibleFields)
- {
- $this->floodlightReportCompatibleFields = $floodlightReportCompatibleFields;
- }
- public function getFloodlightReportCompatibleFields()
- {
- return $this->floodlightReportCompatibleFields;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPathToConversionReportCompatibleFields(Postman_Google_Service_Dfareporting_PathToConversionReportCompatibleFields $pathToConversionReportCompatibleFields)
- {
- $this->pathToConversionReportCompatibleFields = $pathToConversionReportCompatibleFields;
- }
- public function getPathToConversionReportCompatibleFields()
- {
- return $this->pathToConversionReportCompatibleFields;
- }
- public function setReachReportCompatibleFields(Postman_Google_Service_Dfareporting_ReachReportCompatibleFields $reachReportCompatibleFields)
- {
- $this->reachReportCompatibleFields = $reachReportCompatibleFields;
- }
- public function getReachReportCompatibleFields()
- {
- return $this->reachReportCompatibleFields;
- }
- public function setReportCompatibleFields(Postman_Google_Service_Dfareporting_ReportCompatibleFields $reportCompatibleFields)
- {
- $this->reportCompatibleFields = $reportCompatibleFields;
- }
- public function getReportCompatibleFields()
- {
- return $this->reportCompatibleFields;
- }
-}
-
-class Postman_Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields extends Postman_Google_Collection
-{
- protected $collection_key = 'overlapMetrics';
- protected $internal_gapi_mappings = array(
- );
- protected $breakdownType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $breakdownDataType = 'array';
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionFiltersDataType = 'array';
- public $kind;
- protected $metricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $metricsDataType = 'array';
- protected $overlapMetricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $overlapMetricsDataType = 'array';
-
-
- public function setBreakdown($breakdown)
- {
- $this->breakdown = $breakdown;
- }
- public function getBreakdown()
- {
- return $this->breakdown;
- }
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setOverlapMetrics($overlapMetrics)
- {
- $this->overlapMetrics = $overlapMetrics;
- }
- public function getOverlapMetrics()
- {
- return $this->overlapMetrics;
- }
-}
-
-class Postman_Google_Service_Dfareporting_CustomRichMediaEvents extends Postman_Google_Collection
-{
- protected $collection_key = 'filteredEventIds';
- protected $internal_gapi_mappings = array(
- );
- protected $filteredEventIdsType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $filteredEventIdsDataType = 'array';
- public $kind;
-
-
- public function setFilteredEventIds($filteredEventIds)
- {
- $this->filteredEventIds = $filteredEventIds;
- }
- public function getFilteredEventIds()
- {
- return $this->filteredEventIds;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DateRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endDate;
- public $kind;
- public $relativeDateRange;
- public $startDate;
-
-
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRelativeDateRange($relativeDateRange)
- {
- $this->relativeDateRange = $relativeDateRange;
- }
- public function getRelativeDateRange()
- {
- return $this->relativeDateRange;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DfareportingFile extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- public $etag;
- public $fileName;
- public $format;
- public $id;
- public $kind;
- public $lastModifiedTime;
- public $reportId;
- public $status;
- protected $urlsType = 'Postman_Google_Service_Dfareporting_DfareportingFileUrls';
- protected $urlsDataType = '';
-
-
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFileName($fileName)
- {
- $this->fileName = $fileName;
- }
- public function getFileName()
- {
- return $this->fileName;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- 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 setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setReportId($reportId)
- {
- $this->reportId = $reportId;
- }
- public function getReportId()
- {
- return $this->reportId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUrls(Postman_Google_Service_Dfareporting_DfareportingFileUrls $urls)
- {
- $this->urls = $urls;
- }
- public function getUrls()
- {
- return $this->urls;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DfareportingFileUrls extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $apiUrl;
- public $browserUrl;
-
-
- public function setApiUrl($apiUrl)
- {
- $this->apiUrl = $apiUrl;
- }
- public function getApiUrl()
- {
- return $this->apiUrl;
- }
- public function setBrowserUrl($browserUrl)
- {
- $this->browserUrl = $browserUrl;
- }
- public function getBrowserUrl()
- {
- return $this->browserUrl;
- }
-}
-
-class Postman_Google_Service_Dfareporting_Dimension extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DimensionFilter extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $dimensionName;
- public $kind;
- public $value;
-
-
- public function setDimensionName($dimensionName)
- {
- $this->dimensionName = $dimensionName;
- }
- public function getDimensionName()
- {
- return $this->dimensionName;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DimensionValue extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $dimensionName;
- public $etag;
- public $id;
- public $kind;
- public $matchType;
- public $value;
-
-
- public function setDimensionName($dimensionName)
- {
- $this->dimensionName = $dimensionName;
- }
- public function getDimensionName()
- {
- return $this->dimensionName;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setMatchType($matchType)
- {
- $this->matchType = $matchType;
- }
- public function getMatchType()
- {
- return $this->matchType;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DimensionValueList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Dfareporting_DimensionValueRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'filters';
- protected $internal_gapi_mappings = array(
- );
- public $dimensionName;
- public $endDate;
- protected $filtersType = 'Postman_Google_Service_Dfareporting_DimensionFilter';
- protected $filtersDataType = 'array';
- public $kind;
- public $startDate;
-
-
- public function setDimensionName($dimensionName)
- {
- $this->dimensionName = $dimensionName;
- }
- public function getDimensionName()
- {
- return $this->dimensionName;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
-}
-
-class Postman_Google_Service_Dfareporting_FileList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Dfareporting_DfareportingFile';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Dfareporting_FloodlightReportCompatibleFields extends Postman_Google_Collection
-{
- protected $collection_key = 'metrics';
- protected $internal_gapi_mappings = array(
- );
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionsDataType = 'array';
- public $kind;
- protected $metricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $metricsDataType = 'array';
-
-
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
-}
-
-class Postman_Google_Service_Dfareporting_Metric extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_Dfareporting_PathToConversionReportCompatibleFields extends Postman_Google_Collection
-{
- protected $collection_key = 'perInteractionDimensions';
- protected $internal_gapi_mappings = array(
- );
- protected $conversionDimensionsType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $conversionDimensionsDataType = 'array';
- protected $customFloodlightVariablesType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $customFloodlightVariablesDataType = 'array';
- public $kind;
- protected $metricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $metricsDataType = 'array';
- protected $perInteractionDimensionsType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $perInteractionDimensionsDataType = 'array';
-
-
- public function setConversionDimensions($conversionDimensions)
- {
- $this->conversionDimensions = $conversionDimensions;
- }
- public function getConversionDimensions()
- {
- return $this->conversionDimensions;
- }
- public function setCustomFloodlightVariables($customFloodlightVariables)
- {
- $this->customFloodlightVariables = $customFloodlightVariables;
- }
- public function getCustomFloodlightVariables()
- {
- return $this->customFloodlightVariables;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setPerInteractionDimensions($perInteractionDimensions)
- {
- $this->perInteractionDimensions = $perInteractionDimensions;
- }
- public function getPerInteractionDimensions()
- {
- return $this->perInteractionDimensions;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReachReportCompatibleFields extends Postman_Google_Collection
-{
- protected $collection_key = 'reachByFrequencyMetrics';
- protected $internal_gapi_mappings = array(
- );
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionsDataType = 'array';
- public $kind;
- protected $metricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $metricsDataType = 'array';
- protected $pivotedActivityMetricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $pivotedActivityMetricsDataType = 'array';
- protected $reachByFrequencyMetricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $reachByFrequencyMetricsDataType = 'array';
-
-
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setPivotedActivityMetrics($pivotedActivityMetrics)
- {
- $this->pivotedActivityMetrics = $pivotedActivityMetrics;
- }
- public function getPivotedActivityMetrics()
- {
- return $this->pivotedActivityMetrics;
- }
- public function setReachByFrequencyMetrics($reachByFrequencyMetrics)
- {
- $this->reachByFrequencyMetrics = $reachByFrequencyMetrics;
- }
- public function getReachByFrequencyMetrics()
- {
- return $this->reachByFrequencyMetrics;
- }
-}
-
-class Postman_Google_Service_Dfareporting_Recipient extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deliveryType;
- public $email;
- public $kind;
-
-
- public function setDeliveryType($deliveryType)
- {
- $this->deliveryType = $deliveryType;
- }
- public function getDeliveryType()
- {
- return $this->deliveryType;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Dfareporting_Report extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $activeGrpCriteriaType = 'Postman_Google_Service_Dfareporting_ReportActiveGrpCriteria';
- protected $activeGrpCriteriaDataType = '';
- protected $criteriaType = 'Postman_Google_Service_Dfareporting_ReportCriteria';
- protected $criteriaDataType = '';
- protected $crossDimensionReachCriteriaType = 'Postman_Google_Service_Dfareporting_ReportCrossDimensionReachCriteria';
- protected $crossDimensionReachCriteriaDataType = '';
- protected $deliveryType = 'Postman_Google_Service_Dfareporting_ReportDelivery';
- protected $deliveryDataType = '';
- public $etag;
- public $fileName;
- protected $floodlightCriteriaType = 'Postman_Google_Service_Dfareporting_ReportFloodlightCriteria';
- protected $floodlightCriteriaDataType = '';
- public $format;
- public $id;
- public $kind;
- public $lastModifiedTime;
- public $name;
- public $ownerProfileId;
- protected $pathToConversionCriteriaType = 'Postman_Google_Service_Dfareporting_ReportPathToConversionCriteria';
- protected $pathToConversionCriteriaDataType = '';
- protected $reachCriteriaType = 'Postman_Google_Service_Dfareporting_ReportReachCriteria';
- protected $reachCriteriaDataType = '';
- protected $scheduleType = 'Postman_Google_Service_Dfareporting_ReportSchedule';
- protected $scheduleDataType = '';
- public $subAccountId;
- public $type;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setActiveGrpCriteria(Postman_Google_Service_Dfareporting_ReportActiveGrpCriteria $activeGrpCriteria)
- {
- $this->activeGrpCriteria = $activeGrpCriteria;
- }
- public function getActiveGrpCriteria()
- {
- return $this->activeGrpCriteria;
- }
- public function setCriteria(Postman_Google_Service_Dfareporting_ReportCriteria $criteria)
- {
- $this->criteria = $criteria;
- }
- public function getCriteria()
- {
- return $this->criteria;
- }
- public function setCrossDimensionReachCriteria(Postman_Google_Service_Dfareporting_ReportCrossDimensionReachCriteria $crossDimensionReachCriteria)
- {
- $this->crossDimensionReachCriteria = $crossDimensionReachCriteria;
- }
- public function getCrossDimensionReachCriteria()
- {
- return $this->crossDimensionReachCriteria;
- }
- public function setDelivery(Postman_Google_Service_Dfareporting_ReportDelivery $delivery)
- {
- $this->delivery = $delivery;
- }
- public function getDelivery()
- {
- return $this->delivery;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFileName($fileName)
- {
- $this->fileName = $fileName;
- }
- public function getFileName()
- {
- return $this->fileName;
- }
- public function setFloodlightCriteria(Postman_Google_Service_Dfareporting_ReportFloodlightCriteria $floodlightCriteria)
- {
- $this->floodlightCriteria = $floodlightCriteria;
- }
- public function getFloodlightCriteria()
- {
- return $this->floodlightCriteria;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- 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 setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOwnerProfileId($ownerProfileId)
- {
- $this->ownerProfileId = $ownerProfileId;
- }
- public function getOwnerProfileId()
- {
- return $this->ownerProfileId;
- }
- public function setPathToConversionCriteria(Postman_Google_Service_Dfareporting_ReportPathToConversionCriteria $pathToConversionCriteria)
- {
- $this->pathToConversionCriteria = $pathToConversionCriteria;
- }
- public function getPathToConversionCriteria()
- {
- return $this->pathToConversionCriteria;
- }
- public function setReachCriteria(Postman_Google_Service_Dfareporting_ReportReachCriteria $reachCriteria)
- {
- $this->reachCriteria = $reachCriteria;
- }
- public function getReachCriteria()
- {
- return $this->reachCriteria;
- }
- public function setSchedule(Postman_Google_Service_Dfareporting_ReportSchedule $schedule)
- {
- $this->schedule = $schedule;
- }
- public function getSchedule()
- {
- return $this->schedule;
- }
- public function setSubAccountId($subAccountId)
- {
- $this->subAccountId = $subAccountId;
- }
- public function getSubAccountId()
- {
- return $this->subAccountId;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportActiveGrpCriteria extends Postman_Google_Collection
-{
- protected $collection_key = 'metricNames';
- protected $internal_gapi_mappings = array(
- );
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $dimensionsDataType = 'array';
- public $metricNames;
-
-
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportCompatibleFields extends Postman_Google_Collection
-{
- protected $collection_key = 'pivotedActivityMetrics';
- protected $internal_gapi_mappings = array(
- );
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_Dimension';
- protected $dimensionsDataType = 'array';
- public $kind;
- protected $metricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $metricsDataType = 'array';
- protected $pivotedActivityMetricsType = 'Postman_Google_Service_Dfareporting_Metric';
- protected $pivotedActivityMetricsDataType = 'array';
-
-
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setPivotedActivityMetrics($pivotedActivityMetrics)
- {
- $this->pivotedActivityMetrics = $pivotedActivityMetrics;
- }
- public function getPivotedActivityMetrics()
- {
- return $this->pivotedActivityMetrics;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportCriteria extends Postman_Google_Collection
-{
- protected $collection_key = 'metricNames';
- protected $internal_gapi_mappings = array(
- );
- protected $activitiesType = 'Postman_Google_Service_Dfareporting_Activities';
- protected $activitiesDataType = '';
- protected $customRichMediaEventsType = 'Postman_Google_Service_Dfareporting_CustomRichMediaEvents';
- protected $customRichMediaEventsDataType = '';
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $dimensionsDataType = 'array';
- public $metricNames;
-
-
- public function setActivities(Postman_Google_Service_Dfareporting_Activities $activities)
- {
- $this->activities = $activities;
- }
- public function getActivities()
- {
- return $this->activities;
- }
- public function setCustomRichMediaEvents(Postman_Google_Service_Dfareporting_CustomRichMediaEvents $customRichMediaEvents)
- {
- $this->customRichMediaEvents = $customRichMediaEvents;
- }
- public function getCustomRichMediaEvents()
- {
- return $this->customRichMediaEvents;
- }
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportCrossDimensionReachCriteria extends Postman_Google_Collection
-{
- protected $collection_key = 'overlapMetricNames';
- protected $internal_gapi_mappings = array(
- );
- protected $breakdownType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $breakdownDataType = 'array';
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- public $dimension;
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $dimensionFiltersDataType = 'array';
- public $metricNames;
- public $overlapMetricNames;
- public $pivoted;
-
-
- public function setBreakdown($breakdown)
- {
- $this->breakdown = $breakdown;
- }
- public function getBreakdown()
- {
- return $this->breakdown;
- }
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setDimension($dimension)
- {
- $this->dimension = $dimension;
- }
- public function getDimension()
- {
- return $this->dimension;
- }
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
- public function setOverlapMetricNames($overlapMetricNames)
- {
- $this->overlapMetricNames = $overlapMetricNames;
- }
- public function getOverlapMetricNames()
- {
- return $this->overlapMetricNames;
- }
- public function setPivoted($pivoted)
- {
- $this->pivoted = $pivoted;
- }
- public function getPivoted()
- {
- return $this->pivoted;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportDelivery extends Postman_Google_Collection
-{
- protected $collection_key = 'recipients';
- protected $internal_gapi_mappings = array(
- );
- public $emailOwner;
- public $emailOwnerDeliveryType;
- public $message;
- protected $recipientsType = 'Postman_Google_Service_Dfareporting_Recipient';
- protected $recipientsDataType = 'array';
-
-
- public function setEmailOwner($emailOwner)
- {
- $this->emailOwner = $emailOwner;
- }
- public function getEmailOwner()
- {
- return $this->emailOwner;
- }
- public function setEmailOwnerDeliveryType($emailOwnerDeliveryType)
- {
- $this->emailOwnerDeliveryType = $emailOwnerDeliveryType;
- }
- public function getEmailOwnerDeliveryType()
- {
- return $this->emailOwnerDeliveryType;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setRecipients($recipients)
- {
- $this->recipients = $recipients;
- }
- public function getRecipients()
- {
- return $this->recipients;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportFloodlightCriteria extends Postman_Google_Collection
-{
- protected $collection_key = 'metricNames';
- protected $internal_gapi_mappings = array(
- );
- protected $customRichMediaEventsType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $customRichMediaEventsDataType = 'array';
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $dimensionsDataType = 'array';
- protected $floodlightConfigIdType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $floodlightConfigIdDataType = '';
- public $metricNames;
- protected $reportPropertiesType = 'Postman_Google_Service_Dfareporting_ReportFloodlightCriteriaReportProperties';
- protected $reportPropertiesDataType = '';
-
-
- public function setCustomRichMediaEvents($customRichMediaEvents)
- {
- $this->customRichMediaEvents = $customRichMediaEvents;
- }
- public function getCustomRichMediaEvents()
- {
- return $this->customRichMediaEvents;
- }
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setFloodlightConfigId(Postman_Google_Service_Dfareporting_DimensionValue $floodlightConfigId)
- {
- $this->floodlightConfigId = $floodlightConfigId;
- }
- public function getFloodlightConfigId()
- {
- return $this->floodlightConfigId;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
- public function setReportProperties(Postman_Google_Service_Dfareporting_ReportFloodlightCriteriaReportProperties $reportProperties)
- {
- $this->reportProperties = $reportProperties;
- }
- public function getReportProperties()
- {
- return $this->reportProperties;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportFloodlightCriteriaReportProperties extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $includeAttributedIPConversions;
- public $includeUnattributedCookieConversions;
- public $includeUnattributedIPConversions;
-
-
- public function setIncludeAttributedIPConversions($includeAttributedIPConversions)
- {
- $this->includeAttributedIPConversions = $includeAttributedIPConversions;
- }
- public function getIncludeAttributedIPConversions()
- {
- return $this->includeAttributedIPConversions;
- }
- public function setIncludeUnattributedCookieConversions($includeUnattributedCookieConversions)
- {
- $this->includeUnattributedCookieConversions = $includeUnattributedCookieConversions;
- }
- public function getIncludeUnattributedCookieConversions()
- {
- return $this->includeUnattributedCookieConversions;
- }
- public function setIncludeUnattributedIPConversions($includeUnattributedIPConversions)
- {
- $this->includeUnattributedIPConversions = $includeUnattributedIPConversions;
- }
- public function getIncludeUnattributedIPConversions()
- {
- return $this->includeUnattributedIPConversions;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Dfareporting_Report';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportPathToConversionCriteria extends Postman_Google_Collection
-{
- protected $collection_key = 'perInteractionDimensions';
- protected $internal_gapi_mappings = array(
- );
- protected $activityFiltersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $activityFiltersDataType = 'array';
- protected $conversionDimensionsType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $conversionDimensionsDataType = 'array';
- protected $customFloodlightVariablesType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $customFloodlightVariablesDataType = 'array';
- protected $customRichMediaEventsType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $customRichMediaEventsDataType = 'array';
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- protected $floodlightConfigIdType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $floodlightConfigIdDataType = '';
- public $metricNames;
- protected $perInteractionDimensionsType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $perInteractionDimensionsDataType = 'array';
- protected $reportPropertiesType = 'Postman_Google_Service_Dfareporting_ReportPathToConversionCriteriaReportProperties';
- protected $reportPropertiesDataType = '';
-
-
- public function setActivityFilters($activityFilters)
- {
- $this->activityFilters = $activityFilters;
- }
- public function getActivityFilters()
- {
- return $this->activityFilters;
- }
- public function setConversionDimensions($conversionDimensions)
- {
- $this->conversionDimensions = $conversionDimensions;
- }
- public function getConversionDimensions()
- {
- return $this->conversionDimensions;
- }
- public function setCustomFloodlightVariables($customFloodlightVariables)
- {
- $this->customFloodlightVariables = $customFloodlightVariables;
- }
- public function getCustomFloodlightVariables()
- {
- return $this->customFloodlightVariables;
- }
- public function setCustomRichMediaEvents($customRichMediaEvents)
- {
- $this->customRichMediaEvents = $customRichMediaEvents;
- }
- public function getCustomRichMediaEvents()
- {
- return $this->customRichMediaEvents;
- }
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setFloodlightConfigId(Postman_Google_Service_Dfareporting_DimensionValue $floodlightConfigId)
- {
- $this->floodlightConfigId = $floodlightConfigId;
- }
- public function getFloodlightConfigId()
- {
- return $this->floodlightConfigId;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
- public function setPerInteractionDimensions($perInteractionDimensions)
- {
- $this->perInteractionDimensions = $perInteractionDimensions;
- }
- public function getPerInteractionDimensions()
- {
- return $this->perInteractionDimensions;
- }
- public function setReportProperties(Postman_Google_Service_Dfareporting_ReportPathToConversionCriteriaReportProperties $reportProperties)
- {
- $this->reportProperties = $reportProperties;
- }
- public function getReportProperties()
- {
- return $this->reportProperties;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportPathToConversionCriteriaReportProperties extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $clicksLookbackWindow;
- public $impressionsLookbackWindow;
- public $includeAttributedIPConversions;
- public $includeUnattributedCookieConversions;
- public $includeUnattributedIPConversions;
- public $maximumClickInteractions;
- public $maximumImpressionInteractions;
- public $maximumInteractionGap;
- public $pivotOnInteractionPath;
-
-
- public function setClicksLookbackWindow($clicksLookbackWindow)
- {
- $this->clicksLookbackWindow = $clicksLookbackWindow;
- }
- public function getClicksLookbackWindow()
- {
- return $this->clicksLookbackWindow;
- }
- public function setImpressionsLookbackWindow($impressionsLookbackWindow)
- {
- $this->impressionsLookbackWindow = $impressionsLookbackWindow;
- }
- public function getImpressionsLookbackWindow()
- {
- return $this->impressionsLookbackWindow;
- }
- public function setIncludeAttributedIPConversions($includeAttributedIPConversions)
- {
- $this->includeAttributedIPConversions = $includeAttributedIPConversions;
- }
- public function getIncludeAttributedIPConversions()
- {
- return $this->includeAttributedIPConversions;
- }
- public function setIncludeUnattributedCookieConversions($includeUnattributedCookieConversions)
- {
- $this->includeUnattributedCookieConversions = $includeUnattributedCookieConversions;
- }
- public function getIncludeUnattributedCookieConversions()
- {
- return $this->includeUnattributedCookieConversions;
- }
- public function setIncludeUnattributedIPConversions($includeUnattributedIPConversions)
- {
- $this->includeUnattributedIPConversions = $includeUnattributedIPConversions;
- }
- public function getIncludeUnattributedIPConversions()
- {
- return $this->includeUnattributedIPConversions;
- }
- public function setMaximumClickInteractions($maximumClickInteractions)
- {
- $this->maximumClickInteractions = $maximumClickInteractions;
- }
- public function getMaximumClickInteractions()
- {
- return $this->maximumClickInteractions;
- }
- public function setMaximumImpressionInteractions($maximumImpressionInteractions)
- {
- $this->maximumImpressionInteractions = $maximumImpressionInteractions;
- }
- public function getMaximumImpressionInteractions()
- {
- return $this->maximumImpressionInteractions;
- }
- public function setMaximumInteractionGap($maximumInteractionGap)
- {
- $this->maximumInteractionGap = $maximumInteractionGap;
- }
- public function getMaximumInteractionGap()
- {
- return $this->maximumInteractionGap;
- }
- public function setPivotOnInteractionPath($pivotOnInteractionPath)
- {
- $this->pivotOnInteractionPath = $pivotOnInteractionPath;
- }
- public function getPivotOnInteractionPath()
- {
- return $this->pivotOnInteractionPath;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportReachCriteria extends Postman_Google_Collection
-{
- protected $collection_key = 'reachByFrequencyMetricNames';
- protected $internal_gapi_mappings = array(
- );
- protected $activitiesType = 'Postman_Google_Service_Dfareporting_Activities';
- protected $activitiesDataType = '';
- protected $customRichMediaEventsType = 'Postman_Google_Service_Dfareporting_CustomRichMediaEvents';
- protected $customRichMediaEventsDataType = '';
- protected $dateRangeType = 'Postman_Google_Service_Dfareporting_DateRange';
- protected $dateRangeDataType = '';
- protected $dimensionFiltersType = 'Postman_Google_Service_Dfareporting_DimensionValue';
- protected $dimensionFiltersDataType = 'array';
- protected $dimensionsType = 'Postman_Google_Service_Dfareporting_SortedDimension';
- protected $dimensionsDataType = 'array';
- public $metricNames;
- public $reachByFrequencyMetricNames;
-
-
- public function setActivities(Postman_Google_Service_Dfareporting_Activities $activities)
- {
- $this->activities = $activities;
- }
- public function getActivities()
- {
- return $this->activities;
- }
- public function setCustomRichMediaEvents(Postman_Google_Service_Dfareporting_CustomRichMediaEvents $customRichMediaEvents)
- {
- $this->customRichMediaEvents = $customRichMediaEvents;
- }
- public function getCustomRichMediaEvents()
- {
- return $this->customRichMediaEvents;
- }
- public function setDateRange(Postman_Google_Service_Dfareporting_DateRange $dateRange)
- {
- $this->dateRange = $dateRange;
- }
- public function getDateRange()
- {
- return $this->dateRange;
- }
- public function setDimensionFilters($dimensionFilters)
- {
- $this->dimensionFilters = $dimensionFilters;
- }
- public function getDimensionFilters()
- {
- return $this->dimensionFilters;
- }
- public function setDimensions($dimensions)
- {
- $this->dimensions = $dimensions;
- }
- public function getDimensions()
- {
- return $this->dimensions;
- }
- public function setMetricNames($metricNames)
- {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames()
- {
- return $this->metricNames;
- }
- public function setReachByFrequencyMetricNames($reachByFrequencyMetricNames)
- {
- $this->reachByFrequencyMetricNames = $reachByFrequencyMetricNames;
- }
- public function getReachByFrequencyMetricNames()
- {
- return $this->reachByFrequencyMetricNames;
- }
-}
-
-class Postman_Google_Service_Dfareporting_ReportSchedule extends Postman_Google_Collection
-{
- protected $collection_key = 'repeatsOnWeekDays';
- protected $internal_gapi_mappings = array(
- );
- public $active;
- public $every;
- public $expirationDate;
- public $repeats;
- public $repeatsOnWeekDays;
- public $runsOnDayOfMonth;
- public $startDate;
-
-
- public function setActive($active)
- {
- $this->active = $active;
- }
- public function getActive()
- {
- return $this->active;
- }
- public function setEvery($every)
- {
- $this->every = $every;
- }
- public function getEvery()
- {
- return $this->every;
- }
- public function setExpirationDate($expirationDate)
- {
- $this->expirationDate = $expirationDate;
- }
- public function getExpirationDate()
- {
- return $this->expirationDate;
- }
- public function setRepeats($repeats)
- {
- $this->repeats = $repeats;
- }
- public function getRepeats()
- {
- return $this->repeats;
- }
- public function setRepeatsOnWeekDays($repeatsOnWeekDays)
- {
- $this->repeatsOnWeekDays = $repeatsOnWeekDays;
- }
- public function getRepeatsOnWeekDays()
- {
- return $this->repeatsOnWeekDays;
- }
- public function setRunsOnDayOfMonth($runsOnDayOfMonth)
- {
- $this->runsOnDayOfMonth = $runsOnDayOfMonth;
- }
- public function getRunsOnDayOfMonth()
- {
- return $this->runsOnDayOfMonth;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
-}
-
-class Postman_Google_Service_Dfareporting_SortedDimension extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $name;
- public $sortOrder;
-
-
- 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 setSortOrder($sortOrder)
- {
- $this->sortOrder = $sortOrder;
- }
- public function getSortOrder()
- {
- return $this->sortOrder;
- }
-}
-
-class Postman_Google_Service_Dfareporting_UserProfile extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $accountName;
- public $etag;
- public $kind;
- public $profileId;
- public $subAccountId;
- public $subAccountName;
- public $userName;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAccountName($accountName)
- {
- $this->accountName = $accountName;
- }
- public function getAccountName()
- {
- return $this->accountName;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setSubAccountId($subAccountId)
- {
- $this->subAccountId = $subAccountId;
- }
- public function getSubAccountId()
- {
- return $this->subAccountId;
- }
- public function setSubAccountName($subAccountName)
- {
- $this->subAccountName = $subAccountName;
- }
- public function getSubAccountName()
- {
- return $this->subAccountName;
- }
- public function setUserName($userName)
- {
- $this->userName = $userName;
- }
- public function getUserName()
- {
- return $this->userName;
- }
-}
-
-class Postman_Google_Service_Dfareporting_UserProfileList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Dfareporting_UserProfile';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Directory.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Directory.php
deleted file mode 100644
index 04dcaf1..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Directory.php
+++ /dev/null
@@ -1,5448 +0,0 @@
-
- * The Admin SDK Directory API lets you view and manage enterprise resources
- * such as users and groups, administrative notifications, security features,
- * and more.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Directory extends Postman_Google_Service -{ - /** View and manage your Chrome OS devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_CHROMEOS = - "https://www.googleapis.com/auth/admin.directory.device.chromeos"; - /** View your Chrome OS devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_CHROMEOS_READONLY = - "https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly"; - /** View and manage your mobile devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_MOBILE = - "https://www.googleapis.com/auth/admin.directory.device.mobile"; - /** Manage your mobile devices by performing administrative tasks. */ - const ADMIN_DIRECTORY_DEVICE_MOBILE_ACTION = - "https://www.googleapis.com/auth/admin.directory.device.mobile.action"; - /** View your mobile devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_MOBILE_READONLY = - "https://www.googleapis.com/auth/admin.directory.device.mobile.readonly"; - /** View and manage the provisioning of groups on your domain. */ - const ADMIN_DIRECTORY_GROUP = - "https://www.googleapis.com/auth/admin.directory.group"; - /** View and manage group subscriptions on your domain. */ - const ADMIN_DIRECTORY_GROUP_MEMBER = - "https://www.googleapis.com/auth/admin.directory.group.member"; - /** View group subscriptions on your domain. */ - const ADMIN_DIRECTORY_GROUP_MEMBER_READONLY = - "https://www.googleapis.com/auth/admin.directory.group.member.readonly"; - /** View groups on your domain. */ - const ADMIN_DIRECTORY_GROUP_READONLY = - "https://www.googleapis.com/auth/admin.directory.group.readonly"; - /** View and manage notifications received on your domain. */ - const ADMIN_DIRECTORY_NOTIFICATIONS = - "https://www.googleapis.com/auth/admin.directory.notifications"; - /** View and manage organization units on your domain. */ - const ADMIN_DIRECTORY_ORGUNIT = - "https://www.googleapis.com/auth/admin.directory.orgunit"; - /** View organization units on your domain. */ - const ADMIN_DIRECTORY_ORGUNIT_READONLY = - "https://www.googleapis.com/auth/admin.directory.orgunit.readonly"; - /** View and manage the provisioning of users on your domain. */ - const ADMIN_DIRECTORY_USER = - "https://www.googleapis.com/auth/admin.directory.user"; - /** View and manage user aliases on your domain. */ - const ADMIN_DIRECTORY_USER_ALIAS = - "https://www.googleapis.com/auth/admin.directory.user.alias"; - /** View user aliases on your domain. */ - const ADMIN_DIRECTORY_USER_ALIAS_READONLY = - "https://www.googleapis.com/auth/admin.directory.user.alias.readonly"; - /** View users on your domain. */ - const ADMIN_DIRECTORY_USER_READONLY = - "https://www.googleapis.com/auth/admin.directory.user.readonly"; - /** Manage data access permissions for users on your domain. */ - const ADMIN_DIRECTORY_USER_SECURITY = - "https://www.googleapis.com/auth/admin.directory.user.security"; - /** View and manage the provisioning of user schemas on your domain. */ - const ADMIN_DIRECTORY_USERSCHEMA = - "https://www.googleapis.com/auth/admin.directory.userschema"; - /** View user schemas on your domain. */ - const ADMIN_DIRECTORY_USERSCHEMA_READONLY = - "https://www.googleapis.com/auth/admin.directory.userschema.readonly"; - - public $asps; - public $channels; - public $chromeosdevices; - public $groups; - public $groups_aliases; - public $members; - public $mobiledevices; - public $notifications; - public $orgunits; - public $schemas; - public $tokens; - public $users; - public $users_aliases; - public $users_photos; - public $verificationCodes; - - - /** - * Constructs the internal representation of the Directory service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'admin/directory/v1/'; - $this->version = 'directory_v1'; - $this->serviceName = 'admin'; - - $this->asps = new Postman_Google_Service_Directory_Asps_Resource( - $this, - $this->serviceName, - 'asps', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/asps/{codeId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'codeId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}/asps/{codeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'codeId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/asps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->channels = new Postman_Google_Service_Directory_Channels_Resource( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => '/admin/directory_v1/channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->chromeosdevices = new Postman_Google_Service_Directory_Chromeosdevices_Resource( - $this, - $this->serviceName, - 'chromeosdevices', - array( - 'methods' => array( - 'get' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{deviceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/devices/chromeos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{deviceId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{deviceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->groups = new Postman_Google_Service_Directory_Groups_Resource( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'groups', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'groups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'userKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->groups_aliases = new Postman_Google_Service_Directory_GroupsAliases_Resource( - $this, - $this->serviceName, - 'aliases', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'groups/{groupKey}/aliases/{alias}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alias' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'groups/{groupKey}/aliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'groups/{groupKey}/aliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->members = new Postman_Google_Service_Directory_Members_Resource( - $this, - $this->serviceName, - 'members', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'groups/{groupKey}/members', - 'httpMethod' => 'POST', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'groups/{groupKey}/members', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'roles' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->mobiledevices = new Postman_Google_Service_Directory_Mobiledevices_Resource( - $this, - $this->serviceName, - 'mobiledevices', - array( - 'methods' => array( - 'action' => array( - 'path' => 'customer/{customerId}/devices/mobile/{resourceId}/action', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'customer/{customerId}/devices/mobile/{resourceId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/devices/mobile/{resourceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/devices/mobile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->notifications = new Postman_Google_Service_Directory_Notifications_Resource( - $this, - $this->serviceName, - 'notifications', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/notifications', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->orgunits = new Postman_Google_Service_Directory_Orgunits_Resource( - $this, - $this->serviceName, - 'orgunits', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customerId}/orgunits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/orgunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orgUnitPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->schemas = new Postman_Google_Service_Directory_Schemas_Resource( - $this, - $this->serviceName, - 'schemas', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customerId}/schemas', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/schemas', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tokens = new Postman_Google_Service_Directory_Tokens_Resource( - $this, - $this->serviceName, - 'tokens', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/tokens/{clientId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}/tokens/{clientId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/tokens', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users = new Postman_Google_Service_Directory_Users_Resource( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'viewType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customFieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'users', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customFieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'viewType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'makeAdmin' => array( - 'path' => 'users/{userKey}/makeAdmin', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'users/{userKey}/undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'watch' => array( - 'path' => 'users/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customFieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'viewType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_aliases = new Postman_Google_Service_Directory_UsersAliases_Resource( - $this, - $this->serviceName, - 'aliases', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/aliases/{alias}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alias' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'users/{userKey}/aliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/aliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'users/{userKey}/aliases/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_photos = new Postman_Google_Service_Directory_UsersPhotos_Resource( - $this, - $this->serviceName, - 'photos', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->verificationCodes = new Postman_Google_Service_Directory_VerificationCodes_Resource( - $this, - $this->serviceName, - 'verificationCodes', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'users/{userKey}/verificationCodes/generate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'invalidate' => array( - 'path' => 'users/{userKey}/verificationCodes/invalidate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/verificationCodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "asps" collection of methods. - * Typical usage is: - *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $asps = $adminService->asps;
- *
- */
-class Postman_Google_Service_Directory_Asps_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete an ASP issued by a user. (asps.delete)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param int $codeId The unique ID of the ASP to be deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($userKey, $codeId, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'codeId' => $codeId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Get information about an ASP issued by a user. (asps.get)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param int $codeId The unique ID of the ASP.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Asp
- */
- public function get($userKey, $codeId, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'codeId' => $codeId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_Asp");
- }
-
- /**
- * List the ASPs issued by a user. (asps.listAsps)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Asps
- */
- public function listAsps($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Asps");
- }
-}
-
-/**
- * The "channels" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $channels = $adminService->channels;
- *
- */
-class Postman_Google_Service_Directory_Channels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Stop watching resources through this channel (channels.stop)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- */
- public function stop(Postman_Google_Service_Directory_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('stop', array($params));
- }
-}
-
-/**
- * The "chromeosdevices" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $chromeosdevices = $adminService->chromeosdevices;
- *
- */
-class Postman_Google_Service_Directory_Chromeosdevices_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieve Chrome OS Device (chromeosdevices.get)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $deviceId Immutable id of Chrome OS Device
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @return Postman_Google_Service_Directory_ChromeOsDevice
- */
- public function get($customerId, $deviceId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'deviceId' => $deviceId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_ChromeOsDevice");
- }
-
- /**
- * Retrieve all Chrome OS Devices of a customer (paginated)
- * (chromeosdevices.listChromeosdevices)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Column to use for sorting results
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @opt_param int maxResults Maximum number of results to return. Default is 100
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string sortOrder Whether to return results in ascending or
- * descending order. Only of use when orderBy is also used
- * @opt_param string query Search string in the format given at
- * http://support.google.com/chromeos/a/bin/answer.py?hl=en=1698333
- * @return Postman_Google_Service_Directory_ChromeOsDevices
- */
- public function listChromeosdevices($customerId, $optParams = array())
- {
- $params = array('customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_ChromeOsDevices");
- }
-
- /**
- * Update Chrome OS Device. This method supports patch semantics.
- * (chromeosdevices.patch)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $deviceId Immutable id of Chrome OS Device
- * @param Postman_Google_ChromeOsDevice $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @return Postman_Google_Service_Directory_ChromeOsDevice
- */
- public function patch($customerId, $deviceId, Postman_Google_Service_Directory_ChromeOsDevice $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'deviceId' => $deviceId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_ChromeOsDevice");
- }
-
- /**
- * Update Chrome OS Device (chromeosdevices.update)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $deviceId Immutable id of Chrome OS Device
- * @param Postman_Google_ChromeOsDevice $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @return Postman_Google_Service_Directory_ChromeOsDevice
- */
- public function update($customerId, $deviceId, Postman_Google_Service_Directory_ChromeOsDevice $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'deviceId' => $deviceId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_ChromeOsDevice");
- }
-}
-
-/**
- * The "groups" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $groups = $adminService->groups;
- *
- */
-class Postman_Google_Service_Directory_Groups_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete Group (groups.delete)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param array $optParams Optional parameters.
- */
- public function delete($groupKey, $optParams = array())
- {
- $params = array('groupKey' => $groupKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieve Group (groups.get)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Group
- */
- public function get($groupKey, $optParams = array())
- {
- $params = array('groupKey' => $groupKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_Group");
- }
-
- /**
- * Create Group (groups.insert)
- *
- * @param Postman_Google_Group $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Group
- */
- public function insert(Postman_Google_Service_Directory_Group $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_Group");
- }
-
- /**
- * Retrieve all groups in a domain (paginated) (groups.listGroups)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customer Immutable id of the Google Apps account. In case
- * of multi-domain, to fetch all groups for a customer, fill this field instead
- * of domain.
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string domain Name of the domain. Fill this field to get groups
- * from only this domain. To return all groups in a multi-domain fill customer
- * field instead.
- * @opt_param int maxResults Maximum number of results to return. Default is 200
- * @opt_param string userKey Email or immutable Id of the user if only those
- * groups are to be listed, the given user is a member of. If Id, it should
- * match with id of user object
- * @return Postman_Google_Service_Directory_Groups
- */
- public function listGroups($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Groups");
- }
-
- /**
- * Update Group. This method supports patch semantics. (groups.patch)
- *
- * @param string $groupKey Email or immutable Id of the group. If Id, it should
- * match with id of group object
- * @param Postman_Google_Group $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Group
- */
- public function patch($groupKey, Postman_Google_Service_Directory_Group $postBody, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_Group");
- }
-
- /**
- * Update Group (groups.update)
- *
- * @param string $groupKey Email or immutable Id of the group. If Id, it should
- * match with id of group object
- * @param Postman_Google_Group $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Group
- */
- public function update($groupKey, Postman_Google_Service_Directory_Group $postBody, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_Group");
- }
-}
-
-/**
- * The "aliases" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $aliases = $adminService->aliases;
- *
- */
-class Postman_Google_Service_Directory_GroupsAliases_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove a alias for the group (aliases.delete)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param string $alias The alias to be removed
- * @param array $optParams Optional parameters.
- */
- public function delete($groupKey, $alias, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'alias' => $alias);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Add a alias for the group (aliases.insert)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param Postman_Google_Alias $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Alias
- */
- public function insert($groupKey, Postman_Google_Service_Directory_Alias $postBody, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_Alias");
- }
-
- /**
- * List all aliases for a group (aliases.listGroupsAliases)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Aliases
- */
- public function listGroupsAliases($groupKey, $optParams = array())
- {
- $params = array('groupKey' => $groupKey);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Aliases");
- }
-}
-
-/**
- * The "members" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $members = $adminService->members;
- *
- */
-class Postman_Google_Service_Directory_Members_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove membership. (members.delete)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param string $memberKey Email or immutable Id of the member
- * @param array $optParams Optional parameters.
- */
- public function delete($groupKey, $memberKey, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieve Group Member (members.get)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param string $memberKey Email or immutable Id of the member
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Member
- */
- public function get($groupKey, $memberKey, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_Member");
- }
-
- /**
- * Add user to the specified group. (members.insert)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param Postman_Google_Member $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Member
- */
- public function insert($groupKey, Postman_Google_Service_Directory_Member $postBody, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_Member");
- }
-
- /**
- * Retrieve all members in a group (paginated) (members.listMembers)
- *
- * @param string $groupKey Email or immutable Id of the group
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string roles Comma separated role values to filter list results
- * on.
- * @opt_param int maxResults Maximum number of results to return. Default is 200
- * @return Postman_Google_Service_Directory_Members
- */
- public function listMembers($groupKey, $optParams = array())
- {
- $params = array('groupKey' => $groupKey);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Members");
- }
-
- /**
- * Update membership of a user in the specified group. This method supports
- * patch semantics. (members.patch)
- *
- * @param string $groupKey Email or immutable Id of the group. If Id, it should
- * match with id of group object
- * @param string $memberKey Email or immutable Id of the user. If Id, it should
- * match with id of member object
- * @param Postman_Google_Member $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Member
- */
- public function patch($groupKey, $memberKey, Postman_Google_Service_Directory_Member $postBody, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_Member");
- }
-
- /**
- * Update membership of a user in the specified group. (members.update)
- *
- * @param string $groupKey Email or immutable Id of the group. If Id, it should
- * match with id of group object
- * @param string $memberKey Email or immutable Id of the user. If Id, it should
- * match with id of member object
- * @param Postman_Google_Member $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Member
- */
- public function update($groupKey, $memberKey, Postman_Google_Service_Directory_Member $postBody, $optParams = array())
- {
- $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_Member");
- }
-}
-
-/**
- * The "mobiledevices" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $mobiledevices = $adminService->mobiledevices;
- *
- */
-class Postman_Google_Service_Directory_Mobiledevices_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Take action on Mobile Device (mobiledevices.action)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $resourceId Immutable id of Mobile Device
- * @param Postman_Google_MobileDeviceAction $postBody
- * @param array $optParams Optional parameters.
- */
- public function action($customerId, $resourceId, Postman_Google_Service_Directory_MobileDeviceAction $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'resourceId' => $resourceId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('action', array($params));
- }
-
- /**
- * Delete Mobile Device (mobiledevices.delete)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $resourceId Immutable id of Mobile Device
- * @param array $optParams Optional parameters.
- */
- public function delete($customerId, $resourceId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'resourceId' => $resourceId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieve Mobile Device (mobiledevices.get)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $resourceId Immutable id of Mobile Device
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @return Postman_Google_Service_Directory_MobileDevice
- */
- public function get($customerId, $resourceId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'resourceId' => $resourceId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_MobileDevice");
- }
-
- /**
- * Retrieve all Mobile Devices of a customer (paginated)
- * (mobiledevices.listMobiledevices)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Column to use for sorting results
- * @opt_param string projection Restrict information returned to a set of
- * selected fields.
- * @opt_param int maxResults Maximum number of results to return. Default is 100
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string sortOrder Whether to return results in ascending or
- * descending order. Only of use when orderBy is also used
- * @opt_param string query Search string in the format given at
- * http://support.google.com/a/bin/answer.py?hl=en=1408863#search
- * @return Postman_Google_Service_Directory_MobileDevices
- */
- public function listMobiledevices($customerId, $optParams = array())
- {
- $params = array('customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_MobileDevices");
- }
-}
-
-/**
- * The "notifications" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $notifications = $adminService->notifications;
- *
- */
-class Postman_Google_Service_Directory_Notifications_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a notification (notifications.delete)
- *
- * @param string $customer The unique ID for the customer's Google account. The
- * customerId is also returned as part of the Users resource.
- * @param string $notificationId The unique ID of the notification.
- * @param array $optParams Optional parameters.
- */
- public function delete($customer, $notificationId, $optParams = array())
- {
- $params = array('customer' => $customer, 'notificationId' => $notificationId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a notification. (notifications.get)
- *
- * @param string $customer The unique ID for the customer's Google account. The
- * customerId is also returned as part of the Users resource.
- * @param string $notificationId The unique ID of the notification.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Notification
- */
- public function get($customer, $notificationId, $optParams = array())
- {
- $params = array('customer' => $customer, 'notificationId' => $notificationId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_Notification");
- }
-
- /**
- * Retrieves a list of notifications. (notifications.listNotifications)
- *
- * @param string $customer The unique ID for the customer's Google account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token to specify the page of results to
- * retrieve.
- * @opt_param string maxResults Maximum number of notifications to return per
- * page. The default is 100.
- * @opt_param string language The ISO 639-1 code of the language notifications
- * are returned in. The default is English (en).
- * @return Postman_Google_Service_Directory_Notifications
- */
- public function listNotifications($customer, $optParams = array())
- {
- $params = array('customer' => $customer);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Notifications");
- }
-
- /**
- * Updates a notification. This method supports patch semantics.
- * (notifications.patch)
- *
- * @param string $customer The unique ID for the customer's Google account.
- * @param string $notificationId The unique ID of the notification.
- * @param Postman_Google_Notification $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Notification
- */
- public function patch($customer, $notificationId, Postman_Google_Service_Directory_Notification $postBody, $optParams = array())
- {
- $params = array('customer' => $customer, 'notificationId' => $notificationId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_Notification");
- }
-
- /**
- * Updates a notification. (notifications.update)
- *
- * @param string $customer The unique ID for the customer's Google account.
- * @param string $notificationId The unique ID of the notification.
- * @param Postman_Google_Notification $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Notification
- */
- public function update($customer, $notificationId, Postman_Google_Service_Directory_Notification $postBody, $optParams = array())
- {
- $params = array('customer' => $customer, 'notificationId' => $notificationId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_Notification");
- }
-}
-
-/**
- * The "orgunits" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $orgunits = $adminService->orgunits;
- *
- */
-class Postman_Google_Service_Directory_Orgunits_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove Organization Unit (orgunits.delete)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $orgUnitPath Full path of the organization unit
- * @param array $optParams Optional parameters.
- */
- public function delete($customerId, $orgUnitPath, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieve Organization Unit (orgunits.get)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $orgUnitPath Full path of the organization unit
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_OrgUnit
- */
- public function get($customerId, $orgUnitPath, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_OrgUnit");
- }
-
- /**
- * Add Organization Unit (orgunits.insert)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param Postman_Google_OrgUnit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_OrgUnit
- */
- public function insert($customerId, Postman_Google_Service_Directory_OrgUnit $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_OrgUnit");
- }
-
- /**
- * Retrieve all Organization Units (orgunits.listOrgunits)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param array $optParams Optional parameters.
- *
- * @opt_param string type Whether to return all sub-organizations or just
- * immediate children
- * @opt_param string orgUnitPath the URL-encoded organization unit
- * @return Postman_Google_Service_Directory_OrgUnits
- */
- public function listOrgunits($customerId, $optParams = array())
- {
- $params = array('customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_OrgUnits");
- }
-
- /**
- * Update Organization Unit. This method supports patch semantics.
- * (orgunits.patch)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $orgUnitPath Full path of the organization unit
- * @param Postman_Google_OrgUnit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_OrgUnit
- */
- public function patch($customerId, $orgUnitPath, Postman_Google_Service_Directory_OrgUnit $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_OrgUnit");
- }
-
- /**
- * Update Organization Unit (orgunits.update)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $orgUnitPath Full path of the organization unit
- * @param Postman_Google_OrgUnit $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_OrgUnit
- */
- public function update($customerId, $orgUnitPath, Postman_Google_Service_Directory_OrgUnit $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_OrgUnit");
- }
-}
-
-/**
- * The "schemas" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $schemas = $adminService->schemas;
- *
- */
-class Postman_Google_Service_Directory_Schemas_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete schema (schemas.delete)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $schemaKey Name or immutable Id of the schema
- * @param array $optParams Optional parameters.
- */
- public function delete($customerId, $schemaKey, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieve schema (schemas.get)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $schemaKey Name or immutable Id of the schema
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Schema
- */
- public function get($customerId, $schemaKey, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_Schema");
- }
-
- /**
- * Create schema. (schemas.insert)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param Postman_Google_Schema $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Schema
- */
- public function insert($customerId, Postman_Google_Service_Directory_Schema $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_Schema");
- }
-
- /**
- * Retrieve all schemas for a customer (schemas.listSchemas)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Schemas
- */
- public function listSchemas($customerId, $optParams = array())
- {
- $params = array('customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Schemas");
- }
-
- /**
- * Update schema. This method supports patch semantics. (schemas.patch)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $schemaKey Name or immutable Id of the schema.
- * @param Postman_Google_Schema $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Schema
- */
- public function patch($customerId, $schemaKey, Postman_Google_Service_Directory_Schema $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_Schema");
- }
-
- /**
- * Update schema (schemas.update)
- *
- * @param string $customerId Immutable id of the Google Apps account
- * @param string $schemaKey Name or immutable Id of the schema.
- * @param Postman_Google_Schema $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Schema
- */
- public function update($customerId, $schemaKey, Postman_Google_Service_Directory_Schema $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_Schema");
- }
-}
-
-/**
- * The "tokens" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $tokens = $adminService->tokens;
- *
- */
-class Postman_Google_Service_Directory_Tokens_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete all access tokens issued by a user for an application. (tokens.delete)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param string $clientId The Client ID of the application the token is issued
- * to.
- * @param array $optParams Optional parameters.
- */
- public function delete($userKey, $clientId, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'clientId' => $clientId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Get information about an access token issued by a user. (tokens.get)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param string $clientId The Client ID of the application the token is issued
- * to.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Token
- */
- public function get($userKey, $clientId, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'clientId' => $clientId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_Token");
- }
-
- /**
- * Returns the set of tokens specified user has issued to 3rd party
- * applications. (tokens.listTokens)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Tokens
- */
- public function listTokens($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Tokens");
- }
-}
-
-/**
- * The "users" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $users = $adminService->users;
- *
- */
-class Postman_Google_Service_Directory_Users_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete user (users.delete)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- */
- public function delete($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * retrieve user (users.get)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- *
- * @opt_param string viewType Whether to fetch the ADMIN_VIEW or DOMAIN_PUBLIC
- * view of the user.
- * @opt_param string customFieldMask Comma-separated list of schema names. All
- * fields from these schemas are fetched. This should only be set when
- * projection=custom.
- * @opt_param string projection What subset of fields to fetch for this user.
- * @return Postman_Google_Service_Directory_User
- */
- public function get($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_User");
- }
-
- /**
- * create user. (users.insert)
- *
- * @param Postman_Google_User $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_User
- */
- public function insert(Postman_Google_Service_Directory_User $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_User");
- }
-
- /**
- * Retrieve either deleted users or all users in a domain (paginated)
- * (users.listUsers)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customer Immutable id of the Google Apps account. In case
- * of multi-domain, to fetch all users for a customer, fill this field instead
- * of domain.
- * @opt_param string orderBy Column to use for sorting results
- * @opt_param string domain Name of the domain. Fill this field to get users
- * from only this domain. To return all users in a multi-domain fill customer
- * field instead.
- * @opt_param string projection What subset of fields to fetch for this user.
- * @opt_param string showDeleted If set to true retrieves the list of deleted
- * users. Default is false
- * @opt_param string customFieldMask Comma-separated list of schema names. All
- * fields from these schemas are fetched. This should only be set when
- * projection=custom.
- * @opt_param int maxResults Maximum number of results to return. Default is
- * 100. Max allowed is 500
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string sortOrder Whether to return results in ascending or
- * descending order.
- * @opt_param string query Query string search. Should be of the form "".
- * Complete documentation is at https://developers.google.com/admin-
- * sdk/directory/v1/guides/search-users
- * @opt_param string viewType Whether to fetch the ADMIN_VIEW or DOMAIN_PUBLIC
- * view of the user.
- * @opt_param string event Event on which subscription is intended (if
- * subscribing)
- * @return Postman_Google_Service_Directory_Users
- */
- public function listUsers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Users");
- }
-
- /**
- * change admin status of a user (users.makeAdmin)
- *
- * @param string $userKey Email or immutable Id of the user as admin
- * @param Postman_Google_UserMakeAdmin $postBody
- * @param array $optParams Optional parameters.
- */
- public function makeAdmin($userKey, Postman_Google_Service_Directory_UserMakeAdmin $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('makeAdmin', array($params));
- }
-
- /**
- * update user. This method supports patch semantics. (users.patch)
- *
- * @param string $userKey Email or immutable Id of the user. If Id, it should
- * match with id of user object
- * @param Postman_Google_User $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_User
- */
- public function patch($userKey, Postman_Google_Service_Directory_User $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_User");
- }
-
- /**
- * Undelete a deleted user (users.undelete)
- *
- * @param string $userKey The immutable id of the user
- * @param Postman_Google_UserUndelete $postBody
- * @param array $optParams Optional parameters.
- */
- public function undelete($userKey, Postman_Google_Service_Directory_UserUndelete $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('undelete', array($params));
- }
-
- /**
- * update user (users.update)
- *
- * @param string $userKey Email or immutable Id of the user. If Id, it should
- * match with id of user object
- * @param Postman_Google_User $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_User
- */
- public function update($userKey, Postman_Google_Service_Directory_User $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_User");
- }
-
- /**
- * Watch for changes in users list (users.watch)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customer Immutable id of the Google Apps account. In case
- * of multi-domain, to fetch all users for a customer, fill this field instead
- * of domain.
- * @opt_param string orderBy Column to use for sorting results
- * @opt_param string domain Name of the domain. Fill this field to get users
- * from only this domain. To return all users in a multi-domain fill customer
- * field instead.
- * @opt_param string projection What subset of fields to fetch for this user.
- * @opt_param string showDeleted If set to true retrieves the list of deleted
- * users. Default is false
- * @opt_param string customFieldMask Comma-separated list of schema names. All
- * fields from these schemas are fetched. This should only be set when
- * projection=custom.
- * @opt_param int maxResults Maximum number of results to return. Default is
- * 100. Max allowed is 500
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string sortOrder Whether to return results in ascending or
- * descending order.
- * @opt_param string query Query string search. Should be of the form "".
- * Complete documentation is at https://developers.google.com/admin-
- * sdk/directory/v1/guides/search-users
- * @opt_param string viewType Whether to fetch the ADMIN_VIEW or DOMAIN_PUBLIC
- * view of the user.
- * @opt_param string event Event on which subscription is intended (if
- * subscribing)
- * @return Postman_Google_Service_Directory_Channel
- */
- public function watch(Postman_Google_Service_Directory_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Directory_Channel");
- }
-}
-
-/**
- * The "aliases" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $aliases = $adminService->aliases;
- *
- */
-class Postman_Google_Service_Directory_UsersAliases_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove a alias for the user (aliases.delete)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param string $alias The alias to be removed
- * @param array $optParams Optional parameters.
- */
- public function delete($userKey, $alias, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'alias' => $alias);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Add a alias for the user (aliases.insert)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param Postman_Google_Alias $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_Alias
- */
- public function insert($userKey, Postman_Google_Service_Directory_Alias $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Directory_Alias");
- }
-
- /**
- * List all aliases for a user (aliases.listUsersAliases)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- *
- * @opt_param string event Event on which subscription is intended (if
- * subscribing)
- * @return Postman_Google_Service_Directory_Aliases
- */
- public function listUsersAliases($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_Aliases");
- }
-
- /**
- * Watch for changes in user aliases list (aliases.watch)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string event Event on which subscription is intended (if
- * subscribing)
- * @return Postman_Google_Service_Directory_Channel
- */
- public function watch($userKey, Postman_Google_Service_Directory_Channel $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Directory_Channel");
- }
-}
-/**
- * The "photos" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $photos = $adminService->photos;
- *
- */
-class Postman_Google_Service_Directory_UsersPhotos_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove photos for the user (photos.delete)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- */
- public function delete($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieve photo of a user (photos.get)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_UserPhoto
- */
- public function get($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Directory_UserPhoto");
- }
-
- /**
- * Add a photo for the user. This method supports patch semantics.
- * (photos.patch)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param Postman_Google_UserPhoto $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_UserPhoto
- */
- public function patch($userKey, Postman_Google_Service_Directory_UserPhoto $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Directory_UserPhoto");
- }
-
- /**
- * Add a photo for the user (photos.update)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param Postman_Google_UserPhoto $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_UserPhoto
- */
- public function update($userKey, Postman_Google_Service_Directory_UserPhoto $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Directory_UserPhoto");
- }
-}
-
-/**
- * The "verificationCodes" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Directory(...);
- * $verificationCodes = $adminService->verificationCodes;
- *
- */
-class Postman_Google_Service_Directory_VerificationCodes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generate new backup verification codes for the user.
- * (verificationCodes.generate)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- */
- public function generate($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params));
- }
-
- /**
- * Invalidate the current backup verification codes for the user.
- * (verificationCodes.invalidate)
- *
- * @param string $userKey Email or immutable Id of the user
- * @param array $optParams Optional parameters.
- */
- public function invalidate($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('invalidate', array($params));
- }
-
- /**
- * Returns the current set of valid backup verification codes for the specified
- * user. (verificationCodes.listVerificationCodes)
- *
- * @param string $userKey Identifies the user in the API request. The value can
- * be the user's primary email address, alias email address, or unique user ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Directory_VerificationCodes
- */
- public function listVerificationCodes($userKey, $optParams = array())
- {
- $params = array('userKey' => $userKey);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Directory_VerificationCodes");
- }
-}
-
-
-
-
-class Postman_Google_Service_Directory_Alias extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $alias;
- public $etag;
- public $id;
- public $kind;
- public $primaryEmail;
-
-
- public function setAlias($alias)
- {
- $this->alias = $alias;
- }
- public function getAlias()
- {
- return $this->alias;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setPrimaryEmail($primaryEmail)
- {
- $this->primaryEmail = $primaryEmail;
- }
- public function getPrimaryEmail()
- {
- return $this->primaryEmail;
- }
-}
-
-class Postman_Google_Service_Directory_Aliases extends Postman_Google_Collection
-{
- protected $collection_key = 'aliases';
- protected $internal_gapi_mappings = array(
- );
- protected $aliasesType = 'Postman_Google_Service_Directory_Alias';
- protected $aliasesDataType = 'array';
- public $etag;
- public $kind;
-
-
- public function setAliases($aliases)
- {
- $this->aliases = $aliases;
- }
- public function getAliases()
- {
- return $this->aliases;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Directory_Asp extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $codeId;
- public $creationTime;
- public $etag;
- public $kind;
- public $lastTimeUsed;
- public $name;
- public $userKey;
-
-
- public function setCodeId($codeId)
- {
- $this->codeId = $codeId;
- }
- public function getCodeId()
- {
- return $this->codeId;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastTimeUsed($lastTimeUsed)
- {
- $this->lastTimeUsed = $lastTimeUsed;
- }
- public function getLastTimeUsed()
- {
- return $this->lastTimeUsed;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setUserKey($userKey)
- {
- $this->userKey = $userKey;
- }
- public function getUserKey()
- {
- return $this->userKey;
- }
-}
-
-class Postman_Google_Service_Directory_Asps extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Directory_Asp';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Directory_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $expiration;
- public $id;
- public $kind;
- public $params;
- public $payload;
- public $resourceId;
- public $resourceUri;
- public $token;
- public $type;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setExpiration($expiration)
- {
- $this->expiration = $expiration;
- }
- public function getExpiration()
- {
- return $this->expiration;
- }
- 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 setParams($params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setResourceId($resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setResourceUri($resourceUri)
- {
- $this->resourceUri = $resourceUri;
- }
- public function getResourceUri()
- {
- return $this->resourceUri;
- }
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_ChannelParams extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Directory_ChromeOsDevice extends Postman_Google_Collection
-{
- protected $collection_key = 'recentUsers';
- protected $internal_gapi_mappings = array(
- );
- protected $activeTimeRangesType = 'Postman_Google_Service_Directory_ChromeOsDeviceActiveTimeRanges';
- protected $activeTimeRangesDataType = 'array';
- public $annotatedLocation;
- public $annotatedUser;
- public $bootMode;
- public $deviceId;
- public $etag;
- public $ethernetMacAddress;
- public $firmwareVersion;
- public $kind;
- public $lastEnrollmentTime;
- public $lastSync;
- public $macAddress;
- public $meid;
- public $model;
- public $notes;
- public $orderNumber;
- public $orgUnitPath;
- public $osVersion;
- public $platformVersion;
- protected $recentUsersType = 'Postman_Google_Service_Directory_ChromeOsDeviceRecentUsers';
- protected $recentUsersDataType = 'array';
- public $serialNumber;
- public $status;
- public $supportEndDate;
- public $willAutoRenew;
-
-
- public function setActiveTimeRanges($activeTimeRanges)
- {
- $this->activeTimeRanges = $activeTimeRanges;
- }
- public function getActiveTimeRanges()
- {
- return $this->activeTimeRanges;
- }
- public function setAnnotatedLocation($annotatedLocation)
- {
- $this->annotatedLocation = $annotatedLocation;
- }
- public function getAnnotatedLocation()
- {
- return $this->annotatedLocation;
- }
- public function setAnnotatedUser($annotatedUser)
- {
- $this->annotatedUser = $annotatedUser;
- }
- public function getAnnotatedUser()
- {
- return $this->annotatedUser;
- }
- public function setBootMode($bootMode)
- {
- $this->bootMode = $bootMode;
- }
- public function getBootMode()
- {
- return $this->bootMode;
- }
- public function setDeviceId($deviceId)
- {
- $this->deviceId = $deviceId;
- }
- public function getDeviceId()
- {
- return $this->deviceId;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEthernetMacAddress($ethernetMacAddress)
- {
- $this->ethernetMacAddress = $ethernetMacAddress;
- }
- public function getEthernetMacAddress()
- {
- return $this->ethernetMacAddress;
- }
- public function setFirmwareVersion($firmwareVersion)
- {
- $this->firmwareVersion = $firmwareVersion;
- }
- public function getFirmwareVersion()
- {
- return $this->firmwareVersion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastEnrollmentTime($lastEnrollmentTime)
- {
- $this->lastEnrollmentTime = $lastEnrollmentTime;
- }
- public function getLastEnrollmentTime()
- {
- return $this->lastEnrollmentTime;
- }
- public function setLastSync($lastSync)
- {
- $this->lastSync = $lastSync;
- }
- public function getLastSync()
- {
- return $this->lastSync;
- }
- public function setMacAddress($macAddress)
- {
- $this->macAddress = $macAddress;
- }
- public function getMacAddress()
- {
- return $this->macAddress;
- }
- public function setMeid($meid)
- {
- $this->meid = $meid;
- }
- public function getMeid()
- {
- return $this->meid;
- }
- public function setModel($model)
- {
- $this->model = $model;
- }
- public function getModel()
- {
- return $this->model;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setOrderNumber($orderNumber)
- {
- $this->orderNumber = $orderNumber;
- }
- public function getOrderNumber()
- {
- return $this->orderNumber;
- }
- public function setOrgUnitPath($orgUnitPath)
- {
- $this->orgUnitPath = $orgUnitPath;
- }
- public function getOrgUnitPath()
- {
- return $this->orgUnitPath;
- }
- public function setOsVersion($osVersion)
- {
- $this->osVersion = $osVersion;
- }
- public function getOsVersion()
- {
- return $this->osVersion;
- }
- public function setPlatformVersion($platformVersion)
- {
- $this->platformVersion = $platformVersion;
- }
- public function getPlatformVersion()
- {
- return $this->platformVersion;
- }
- public function setRecentUsers($recentUsers)
- {
- $this->recentUsers = $recentUsers;
- }
- public function getRecentUsers()
- {
- return $this->recentUsers;
- }
- public function setSerialNumber($serialNumber)
- {
- $this->serialNumber = $serialNumber;
- }
- public function getSerialNumber()
- {
- return $this->serialNumber;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setSupportEndDate($supportEndDate)
- {
- $this->supportEndDate = $supportEndDate;
- }
- public function getSupportEndDate()
- {
- return $this->supportEndDate;
- }
- public function setWillAutoRenew($willAutoRenew)
- {
- $this->willAutoRenew = $willAutoRenew;
- }
- public function getWillAutoRenew()
- {
- return $this->willAutoRenew;
- }
-}
-
-class Postman_Google_Service_Directory_ChromeOsDeviceActiveTimeRanges extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $activeTime;
- public $date;
-
-
- public function setActiveTime($activeTime)
- {
- $this->activeTime = $activeTime;
- }
- public function getActiveTime()
- {
- return $this->activeTime;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
-}
-
-class Postman_Google_Service_Directory_ChromeOsDeviceRecentUsers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $type;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_ChromeOsDevices extends Postman_Google_Collection
-{
- protected $collection_key = 'chromeosdevices';
- protected $internal_gapi_mappings = array(
- );
- protected $chromeosdevicesType = 'Postman_Google_Service_Directory_ChromeOsDevice';
- protected $chromeosdevicesDataType = 'array';
- public $etag;
- public $kind;
- public $nextPageToken;
-
-
- public function setChromeosdevices($chromeosdevices)
- {
- $this->chromeosdevices = $chromeosdevices;
- }
- public function getChromeosdevices()
- {
- return $this->chromeosdevices;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Directory_Group extends Postman_Google_Collection
-{
- protected $collection_key = 'nonEditableAliases';
- protected $internal_gapi_mappings = array(
- );
- public $adminCreated;
- public $aliases;
- public $description;
- public $directMembersCount;
- public $email;
- public $etag;
- public $id;
- public $kind;
- public $name;
- public $nonEditableAliases;
-
-
- public function setAdminCreated($adminCreated)
- {
- $this->adminCreated = $adminCreated;
- }
- public function getAdminCreated()
- {
- return $this->adminCreated;
- }
- public function setAliases($aliases)
- {
- $this->aliases = $aliases;
- }
- public function getAliases()
- {
- return $this->aliases;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDirectMembersCount($directMembersCount)
- {
- $this->directMembersCount = $directMembersCount;
- }
- public function getDirectMembersCount()
- {
- return $this->directMembersCount;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setNonEditableAliases($nonEditableAliases)
- {
- $this->nonEditableAliases = $nonEditableAliases;
- }
- public function getNonEditableAliases()
- {
- return $this->nonEditableAliases;
- }
-}
-
-class Postman_Google_Service_Directory_Groups extends Postman_Google_Collection
-{
- protected $collection_key = 'groups';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $groupsType = 'Postman_Google_Service_Directory_Group';
- protected $groupsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGroups($groups)
- {
- $this->groups = $groups;
- }
- public function getGroups()
- {
- return $this->groups;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Directory_Member extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $etag;
- public $id;
- public $kind;
- public $role;
- public $type;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_Members extends Postman_Google_Collection
-{
- protected $collection_key = 'members';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- protected $membersType = 'Postman_Google_Service_Directory_Member';
- protected $membersDataType = 'array';
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMembers($members)
- {
- $this->members = $members;
- }
- public function getMembers()
- {
- return $this->members;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Directory_MobileDevice extends Postman_Google_Collection
-{
- protected $collection_key = 'name';
- protected $internal_gapi_mappings = array(
- );
- protected $applicationsType = 'Postman_Google_Service_Directory_MobileDeviceApplications';
- protected $applicationsDataType = 'array';
- public $basebandVersion;
- public $buildNumber;
- public $defaultLanguage;
- public $deviceCompromisedStatus;
- public $deviceId;
- public $email;
- public $etag;
- public $firstSync;
- public $hardwareId;
- public $imei;
- public $kernelVersion;
- public $kind;
- public $lastSync;
- public $managedAccountIsOnOwnerProfile;
- public $meid;
- public $model;
- public $name;
- public $networkOperator;
- public $os;
- public $resourceId;
- public $serialNumber;
- public $status;
- public $type;
- public $userAgent;
- public $wifiMacAddress;
-
-
- public function setApplications($applications)
- {
- $this->applications = $applications;
- }
- public function getApplications()
- {
- return $this->applications;
- }
- public function setBasebandVersion($basebandVersion)
- {
- $this->basebandVersion = $basebandVersion;
- }
- public function getBasebandVersion()
- {
- return $this->basebandVersion;
- }
- public function setBuildNumber($buildNumber)
- {
- $this->buildNumber = $buildNumber;
- }
- public function getBuildNumber()
- {
- return $this->buildNumber;
- }
- public function setDefaultLanguage($defaultLanguage)
- {
- $this->defaultLanguage = $defaultLanguage;
- }
- public function getDefaultLanguage()
- {
- return $this->defaultLanguage;
- }
- public function setDeviceCompromisedStatus($deviceCompromisedStatus)
- {
- $this->deviceCompromisedStatus = $deviceCompromisedStatus;
- }
- public function getDeviceCompromisedStatus()
- {
- return $this->deviceCompromisedStatus;
- }
- public function setDeviceId($deviceId)
- {
- $this->deviceId = $deviceId;
- }
- public function getDeviceId()
- {
- return $this->deviceId;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFirstSync($firstSync)
- {
- $this->firstSync = $firstSync;
- }
- public function getFirstSync()
- {
- return $this->firstSync;
- }
- public function setHardwareId($hardwareId)
- {
- $this->hardwareId = $hardwareId;
- }
- public function getHardwareId()
- {
- return $this->hardwareId;
- }
- public function setImei($imei)
- {
- $this->imei = $imei;
- }
- public function getImei()
- {
- return $this->imei;
- }
- public function setKernelVersion($kernelVersion)
- {
- $this->kernelVersion = $kernelVersion;
- }
- public function getKernelVersion()
- {
- return $this->kernelVersion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastSync($lastSync)
- {
- $this->lastSync = $lastSync;
- }
- public function getLastSync()
- {
- return $this->lastSync;
- }
- public function setManagedAccountIsOnOwnerProfile($managedAccountIsOnOwnerProfile)
- {
- $this->managedAccountIsOnOwnerProfile = $managedAccountIsOnOwnerProfile;
- }
- public function getManagedAccountIsOnOwnerProfile()
- {
- return $this->managedAccountIsOnOwnerProfile;
- }
- public function setMeid($meid)
- {
- $this->meid = $meid;
- }
- public function getMeid()
- {
- return $this->meid;
- }
- public function setModel($model)
- {
- $this->model = $model;
- }
- public function getModel()
- {
- return $this->model;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNetworkOperator($networkOperator)
- {
- $this->networkOperator = $networkOperator;
- }
- public function getNetworkOperator()
- {
- return $this->networkOperator;
- }
- public function setOs($os)
- {
- $this->os = $os;
- }
- public function getOs()
- {
- return $this->os;
- }
- public function setResourceId($resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setSerialNumber($serialNumber)
- {
- $this->serialNumber = $serialNumber;
- }
- public function getSerialNumber()
- {
- return $this->serialNumber;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUserAgent($userAgent)
- {
- $this->userAgent = $userAgent;
- }
- public function getUserAgent()
- {
- return $this->userAgent;
- }
- public function setWifiMacAddress($wifiMacAddress)
- {
- $this->wifiMacAddress = $wifiMacAddress;
- }
- public function getWifiMacAddress()
- {
- return $this->wifiMacAddress;
- }
-}
-
-class Postman_Google_Service_Directory_MobileDeviceAction extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $action;
-
-
- public function setAction($action)
- {
- $this->action = $action;
- }
- public function getAction()
- {
- return $this->action;
- }
-}
-
-class Postman_Google_Service_Directory_MobileDeviceApplications extends Postman_Google_Collection
-{
- protected $collection_key = 'permission';
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $packageName;
- public $permission;
- public $versionCode;
- public $versionName;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setPackageName($packageName)
- {
- $this->packageName = $packageName;
- }
- public function getPackageName()
- {
- return $this->packageName;
- }
- public function setPermission($permission)
- {
- $this->permission = $permission;
- }
- public function getPermission()
- {
- return $this->permission;
- }
- public function setVersionCode($versionCode)
- {
- $this->versionCode = $versionCode;
- }
- public function getVersionCode()
- {
- return $this->versionCode;
- }
- public function setVersionName($versionName)
- {
- $this->versionName = $versionName;
- }
- public function getVersionName()
- {
- return $this->versionName;
- }
-}
-
-class Postman_Google_Service_Directory_MobileDevices extends Postman_Google_Collection
-{
- protected $collection_key = 'mobiledevices';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- protected $mobiledevicesType = 'Postman_Google_Service_Directory_MobileDevice';
- protected $mobiledevicesDataType = 'array';
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMobiledevices($mobiledevices)
- {
- $this->mobiledevices = $mobiledevices;
- }
- public function getMobiledevices()
- {
- return $this->mobiledevices;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Directory_Notification extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $body;
- public $etag;
- public $fromAddress;
- public $isUnread;
- public $kind;
- public $notificationId;
- public $sendTime;
- public $subject;
-
-
- public function setBody($body)
- {
- $this->body = $body;
- }
- public function getBody()
- {
- return $this->body;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFromAddress($fromAddress)
- {
- $this->fromAddress = $fromAddress;
- }
- public function getFromAddress()
- {
- return $this->fromAddress;
- }
- public function setIsUnread($isUnread)
- {
- $this->isUnread = $isUnread;
- }
- public function getIsUnread()
- {
- return $this->isUnread;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNotificationId($notificationId)
- {
- $this->notificationId = $notificationId;
- }
- public function getNotificationId()
- {
- return $this->notificationId;
- }
- public function setSendTime($sendTime)
- {
- $this->sendTime = $sendTime;
- }
- public function getSendTime()
- {
- return $this->sendTime;
- }
- public function setSubject($subject)
- {
- $this->subject = $subject;
- }
- public function getSubject()
- {
- return $this->subject;
- }
-}
-
-class Postman_Google_Service_Directory_Notifications extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Directory_Notification';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $unreadNotificationsCount;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setUnreadNotificationsCount($unreadNotificationsCount)
- {
- $this->unreadNotificationsCount = $unreadNotificationsCount;
- }
- public function getUnreadNotificationsCount()
- {
- return $this->unreadNotificationsCount;
- }
-}
-
-class Postman_Google_Service_Directory_OrgUnit extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $blockInheritance;
- public $description;
- public $etag;
- public $kind;
- public $name;
- public $orgUnitPath;
- public $parentOrgUnitPath;
-
-
- public function setBlockInheritance($blockInheritance)
- {
- $this->blockInheritance = $blockInheritance;
- }
- public function getBlockInheritance()
- {
- return $this->blockInheritance;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setOrgUnitPath($orgUnitPath)
- {
- $this->orgUnitPath = $orgUnitPath;
- }
- public function getOrgUnitPath()
- {
- return $this->orgUnitPath;
- }
- public function setParentOrgUnitPath($parentOrgUnitPath)
- {
- $this->parentOrgUnitPath = $parentOrgUnitPath;
- }
- public function getParentOrgUnitPath()
- {
- return $this->parentOrgUnitPath;
- }
-}
-
-class Postman_Google_Service_Directory_OrgUnits extends Postman_Google_Collection
-{
- protected $collection_key = 'organizationUnits';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- protected $organizationUnitsType = 'Postman_Google_Service_Directory_OrgUnit';
- protected $organizationUnitsDataType = 'array';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOrganizationUnits($organizationUnits)
- {
- $this->organizationUnits = $organizationUnits;
- }
- public function getOrganizationUnits()
- {
- return $this->organizationUnits;
- }
-}
-
-class Postman_Google_Service_Directory_Schema extends Postman_Google_Collection
-{
- protected $collection_key = 'fields';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $fieldsType = 'Postman_Google_Service_Directory_SchemaFieldSpec';
- protected $fieldsDataType = 'array';
- public $kind;
- public $schemaId;
- public $schemaName;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFields($fields)
- {
- $this->fields = $fields;
- }
- public function getFields()
- {
- return $this->fields;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSchemaId($schemaId)
- {
- $this->schemaId = $schemaId;
- }
- public function getSchemaId()
- {
- return $this->schemaId;
- }
- public function setSchemaName($schemaName)
- {
- $this->schemaName = $schemaName;
- }
- public function getSchemaName()
- {
- return $this->schemaName;
- }
-}
-
-class Postman_Google_Service_Directory_SchemaFieldSpec extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $fieldId;
- public $fieldName;
- public $fieldType;
- public $indexed;
- public $kind;
- public $multiValued;
- protected $numericIndexingSpecType = 'Postman_Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec';
- protected $numericIndexingSpecDataType = '';
- public $readAccessType;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFieldId($fieldId)
- {
- $this->fieldId = $fieldId;
- }
- public function getFieldId()
- {
- return $this->fieldId;
- }
- public function setFieldName($fieldName)
- {
- $this->fieldName = $fieldName;
- }
- public function getFieldName()
- {
- return $this->fieldName;
- }
- public function setFieldType($fieldType)
- {
- $this->fieldType = $fieldType;
- }
- public function getFieldType()
- {
- return $this->fieldType;
- }
- public function setIndexed($indexed)
- {
- $this->indexed = $indexed;
- }
- public function getIndexed()
- {
- return $this->indexed;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMultiValued($multiValued)
- {
- $this->multiValued = $multiValued;
- }
- public function getMultiValued()
- {
- return $this->multiValued;
- }
- public function setNumericIndexingSpec(Postman_Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec $numericIndexingSpec)
- {
- $this->numericIndexingSpec = $numericIndexingSpec;
- }
- public function getNumericIndexingSpec()
- {
- return $this->numericIndexingSpec;
- }
- public function setReadAccessType($readAccessType)
- {
- $this->readAccessType = $readAccessType;
- }
- public function getReadAccessType()
- {
- return $this->readAccessType;
- }
-}
-
-class Postman_Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $maxValue;
- public $minValue;
-
-
- public function setMaxValue($maxValue)
- {
- $this->maxValue = $maxValue;
- }
- public function getMaxValue()
- {
- return $this->maxValue;
- }
- public function setMinValue($minValue)
- {
- $this->minValue = $minValue;
- }
- public function getMinValue()
- {
- return $this->minValue;
- }
-}
-
-class Postman_Google_Service_Directory_Schemas extends Postman_Google_Collection
-{
- protected $collection_key = 'schemas';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- protected $schemasType = 'Postman_Google_Service_Directory_Schema';
- protected $schemasDataType = 'array';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSchemas($schemas)
- {
- $this->schemas = $schemas;
- }
- public function getSchemas()
- {
- return $this->schemas;
- }
-}
-
-class Postman_Google_Service_Directory_Token extends Postman_Google_Collection
-{
- protected $collection_key = 'scopes';
- protected $internal_gapi_mappings = array(
- );
- public $anonymous;
- public $clientId;
- public $displayText;
- public $etag;
- public $kind;
- public $nativeApp;
- public $scopes;
- public $userKey;
-
-
- public function setAnonymous($anonymous)
- {
- $this->anonymous = $anonymous;
- }
- public function getAnonymous()
- {
- return $this->anonymous;
- }
- public function setClientId($clientId)
- {
- $this->clientId = $clientId;
- }
- public function getClientId()
- {
- return $this->clientId;
- }
- public function setDisplayText($displayText)
- {
- $this->displayText = $displayText;
- }
- public function getDisplayText()
- {
- return $this->displayText;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNativeApp($nativeApp)
- {
- $this->nativeApp = $nativeApp;
- }
- public function getNativeApp()
- {
- return $this->nativeApp;
- }
- public function setScopes($scopes)
- {
- $this->scopes = $scopes;
- }
- public function getScopes()
- {
- return $this->scopes;
- }
- public function setUserKey($userKey)
- {
- $this->userKey = $userKey;
- }
- public function getUserKey()
- {
- return $this->userKey;
- }
-}
-
-class Postman_Google_Service_Directory_Tokens extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Directory_Token';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Directory_User extends Postman_Google_Collection
-{
- protected $collection_key = 'nonEditableAliases';
- protected $internal_gapi_mappings = array(
- );
- public $addresses;
- public $agreedToTerms;
- public $aliases;
- public $changePasswordAtNextLogin;
- public $creationTime;
- public $customSchemas;
- public $customerId;
- public $deletionTime;
- public $emails;
- public $etag;
- public $externalIds;
- public $hashFunction;
- public $id;
- public $ims;
- public $includeInGlobalAddressList;
- public $ipWhitelisted;
- public $isAdmin;
- public $isDelegatedAdmin;
- public $isMailboxSetup;
- public $kind;
- public $lastLoginTime;
- protected $nameType = 'Postman_Google_Service_Directory_UserName';
- protected $nameDataType = '';
- public $nonEditableAliases;
- public $orgUnitPath;
- public $organizations;
- public $password;
- public $phones;
- public $primaryEmail;
- public $relations;
- public $suspended;
- public $suspensionReason;
- public $thumbnailPhotoUrl;
-
-
- public function setAddresses($addresses)
- {
- $this->addresses = $addresses;
- }
- public function getAddresses()
- {
- return $this->addresses;
- }
- public function setAgreedToTerms($agreedToTerms)
- {
- $this->agreedToTerms = $agreedToTerms;
- }
- public function getAgreedToTerms()
- {
- return $this->agreedToTerms;
- }
- public function setAliases($aliases)
- {
- $this->aliases = $aliases;
- }
- public function getAliases()
- {
- return $this->aliases;
- }
- public function setChangePasswordAtNextLogin($changePasswordAtNextLogin)
- {
- $this->changePasswordAtNextLogin = $changePasswordAtNextLogin;
- }
- public function getChangePasswordAtNextLogin()
- {
- return $this->changePasswordAtNextLogin;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCustomSchemas($customSchemas)
- {
- $this->customSchemas = $customSchemas;
- }
- public function getCustomSchemas()
- {
- return $this->customSchemas;
- }
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setDeletionTime($deletionTime)
- {
- $this->deletionTime = $deletionTime;
- }
- public function getDeletionTime()
- {
- return $this->deletionTime;
- }
- public function setEmails($emails)
- {
- $this->emails = $emails;
- }
- public function getEmails()
- {
- return $this->emails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExternalIds($externalIds)
- {
- $this->externalIds = $externalIds;
- }
- public function getExternalIds()
- {
- return $this->externalIds;
- }
- public function setHashFunction($hashFunction)
- {
- $this->hashFunction = $hashFunction;
- }
- public function getHashFunction()
- {
- return $this->hashFunction;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIms($ims)
- {
- $this->ims = $ims;
- }
- public function getIms()
- {
- return $this->ims;
- }
- public function setIncludeInGlobalAddressList($includeInGlobalAddressList)
- {
- $this->includeInGlobalAddressList = $includeInGlobalAddressList;
- }
- public function getIncludeInGlobalAddressList()
- {
- return $this->includeInGlobalAddressList;
- }
- public function setIpWhitelisted($ipWhitelisted)
- {
- $this->ipWhitelisted = $ipWhitelisted;
- }
- public function getIpWhitelisted()
- {
- return $this->ipWhitelisted;
- }
- public function setIsAdmin($isAdmin)
- {
- $this->isAdmin = $isAdmin;
- }
- public function getIsAdmin()
- {
- return $this->isAdmin;
- }
- public function setIsDelegatedAdmin($isDelegatedAdmin)
- {
- $this->isDelegatedAdmin = $isDelegatedAdmin;
- }
- public function getIsDelegatedAdmin()
- {
- return $this->isDelegatedAdmin;
- }
- public function setIsMailboxSetup($isMailboxSetup)
- {
- $this->isMailboxSetup = $isMailboxSetup;
- }
- public function getIsMailboxSetup()
- {
- return $this->isMailboxSetup;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastLoginTime($lastLoginTime)
- {
- $this->lastLoginTime = $lastLoginTime;
- }
- public function getLastLoginTime()
- {
- return $this->lastLoginTime;
- }
- public function setName(Postman_Google_Service_Directory_UserName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNonEditableAliases($nonEditableAliases)
- {
- $this->nonEditableAliases = $nonEditableAliases;
- }
- public function getNonEditableAliases()
- {
- return $this->nonEditableAliases;
- }
- public function setOrgUnitPath($orgUnitPath)
- {
- $this->orgUnitPath = $orgUnitPath;
- }
- public function getOrgUnitPath()
- {
- return $this->orgUnitPath;
- }
- public function setOrganizations($organizations)
- {
- $this->organizations = $organizations;
- }
- public function getOrganizations()
- {
- return $this->organizations;
- }
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
- public function setPhones($phones)
- {
- $this->phones = $phones;
- }
- public function getPhones()
- {
- return $this->phones;
- }
- public function setPrimaryEmail($primaryEmail)
- {
- $this->primaryEmail = $primaryEmail;
- }
- public function getPrimaryEmail()
- {
- return $this->primaryEmail;
- }
- public function setRelations($relations)
- {
- $this->relations = $relations;
- }
- public function getRelations()
- {
- return $this->relations;
- }
- public function setSuspended($suspended)
- {
- $this->suspended = $suspended;
- }
- public function getSuspended()
- {
- return $this->suspended;
- }
- public function setSuspensionReason($suspensionReason)
- {
- $this->suspensionReason = $suspensionReason;
- }
- public function getSuspensionReason()
- {
- return $this->suspensionReason;
- }
- public function setThumbnailPhotoUrl($thumbnailPhotoUrl)
- {
- $this->thumbnailPhotoUrl = $thumbnailPhotoUrl;
- }
- public function getThumbnailPhotoUrl()
- {
- return $this->thumbnailPhotoUrl;
- }
-}
-
-class Postman_Google_Service_Directory_UserAddress extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $country;
- public $countryCode;
- public $customType;
- public $extendedAddress;
- public $formatted;
- public $locality;
- public $poBox;
- public $postalCode;
- public $primary;
- public $region;
- public $sourceIsStructured;
- public $streetAddress;
- public $type;
-
-
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setCountryCode($countryCode)
- {
- $this->countryCode = $countryCode;
- }
- public function getCountryCode()
- {
- return $this->countryCode;
- }
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setExtendedAddress($extendedAddress)
- {
- $this->extendedAddress = $extendedAddress;
- }
- public function getExtendedAddress()
- {
- return $this->extendedAddress;
- }
- public function setFormatted($formatted)
- {
- $this->formatted = $formatted;
- }
- public function getFormatted()
- {
- return $this->formatted;
- }
- public function setLocality($locality)
- {
- $this->locality = $locality;
- }
- public function getLocality()
- {
- return $this->locality;
- }
- public function setPoBox($poBox)
- {
- $this->poBox = $poBox;
- }
- public function getPoBox()
- {
- return $this->poBox;
- }
- public function setPostalCode($postalCode)
- {
- $this->postalCode = $postalCode;
- }
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSourceIsStructured($sourceIsStructured)
- {
- $this->sourceIsStructured = $sourceIsStructured;
- }
- public function getSourceIsStructured()
- {
- return $this->sourceIsStructured;
- }
- public function setStreetAddress($streetAddress)
- {
- $this->streetAddress = $streetAddress;
- }
- public function getStreetAddress()
- {
- return $this->streetAddress;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_UserCustomProperties extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Directory_UserCustomSchemas extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Directory_UserEmail extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $customType;
- public $primary;
- public $type;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_UserExternalId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customType;
- public $type;
- public $value;
-
-
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Directory_UserIm extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customProtocol;
- public $customType;
- public $im;
- public $primary;
- public $protocol;
- public $type;
-
-
- public function setCustomProtocol($customProtocol)
- {
- $this->customProtocol = $customProtocol;
- }
- public function getCustomProtocol()
- {
- return $this->customProtocol;
- }
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setIm($im)
- {
- $this->im = $im;
- }
- public function getIm()
- {
- return $this->im;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setProtocol($protocol)
- {
- $this->protocol = $protocol;
- }
- public function getProtocol()
- {
- return $this->protocol;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_UserMakeAdmin extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $status;
-
-
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Directory_UserName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $fullName;
- public $givenName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setFullName($fullName)
- {
- $this->fullName = $fullName;
- }
- public function getFullName()
- {
- return $this->fullName;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
-}
-
-class Postman_Google_Service_Directory_UserOrganization extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $costCenter;
- public $customType;
- public $department;
- public $description;
- public $domain;
- public $location;
- public $name;
- public $primary;
- public $symbol;
- public $title;
- public $type;
-
-
- public function setCostCenter($costCenter)
- {
- $this->costCenter = $costCenter;
- }
- public function getCostCenter()
- {
- return $this->costCenter;
- }
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setDepartment($department)
- {
- $this->department = $department;
- }
- public function getDepartment()
- {
- return $this->department;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setSymbol($symbol)
- {
- $this->symbol = $symbol;
- }
- public function getSymbol()
- {
- return $this->symbol;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Directory_UserPhone extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customType;
- public $primary;
- public $type;
- public $value;
-
-
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Directory_UserPhoto extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $height;
- public $id;
- public $kind;
- public $mimeType;
- public $photoData;
- public $primaryEmail;
- public $width;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- 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 setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setPhotoData($photoData)
- {
- $this->photoData = $photoData;
- }
- public function getPhotoData()
- {
- return $this->photoData;
- }
- public function setPrimaryEmail($primaryEmail)
- {
- $this->primaryEmail = $primaryEmail;
- }
- public function getPrimaryEmail()
- {
- return $this->primaryEmail;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Directory_UserRelation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customType;
- public $type;
- public $value;
-
-
- public function setCustomType($customType)
- {
- $this->customType = $customType;
- }
- public function getCustomType()
- {
- return $this->customType;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Directory_UserUndelete extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $orgUnitPath;
-
-
- public function setOrgUnitPath($orgUnitPath)
- {
- $this->orgUnitPath = $orgUnitPath;
- }
- public function getOrgUnitPath()
- {
- return $this->orgUnitPath;
- }
-}
-
-class Postman_Google_Service_Directory_Users extends Postman_Google_Collection
-{
- protected $collection_key = 'users';
- protected $internal_gapi_mappings = array(
- "triggerEvent" => "trigger_event",
- );
- public $etag;
- public $kind;
- public $nextPageToken;
- public $triggerEvent;
- protected $usersType = 'Postman_Google_Service_Directory_User';
- protected $usersDataType = 'array';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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;
- }
- public function setTriggerEvent($triggerEvent)
- {
- $this->triggerEvent = $triggerEvent;
- }
- public function getTriggerEvent()
- {
- return $this->triggerEvent;
- }
- public function setUsers($users)
- {
- $this->users = $users;
- }
- public function getUsers()
- {
- return $this->users;
- }
-}
-
-class Postman_Google_Service_Directory_VerificationCode extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- public $userId;
- public $verificationCode;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUserId($userId)
- {
- $this->userId = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
- public function setVerificationCode($verificationCode)
- {
- $this->verificationCode = $verificationCode;
- }
- public function getVerificationCode()
- {
- return $this->verificationCode;
- }
-}
-
-class Postman_Google_Service_Directory_VerificationCodes extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Directory_VerificationCode';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Dns.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Dns.php
deleted file mode 100644
index 2c11ab7..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Dns.php
+++ /dev/null
@@ -1,907 +0,0 @@
-
- * The Google Cloud DNS API provides services for configuring and serving
- * authoritative DNS records.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Dns extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your DNS records hosted by Google Cloud DNS. */ - const NDEV_CLOUDDNS_READONLY = - "https://www.googleapis.com/auth/ndev.clouddns.readonly"; - /** View and manage your DNS records hosted by Google Cloud DNS. */ - const NDEV_CLOUDDNS_READWRITE = - "https://www.googleapis.com/auth/ndev.clouddns.readwrite"; - - public $changes; - public $managedZones; - public $projects; - public $resourceRecordSets; - - - /** - * Constructs the internal representation of the Dns service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'dns/v1beta1/projects/'; - $this->version = 'v1beta1'; - $this->serviceName = 'dns'; - - $this->changes = new Postman_Google_Service_Dns_Changes_Resource( - $this, - $this->serviceName, - 'changes', - array( - 'methods' => array( - 'create' => array( - 'path' => '{project}/managedZones/{managedZone}/changes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/managedZones/{managedZone}/changes/{changeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'changeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/managedZones/{managedZone}/changes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->managedZones = new Postman_Google_Service_Dns_ManagedZones_Resource( - $this, - $this->serviceName, - 'managedZones', - array( - 'methods' => array( - 'create' => array( - 'path' => '{project}/managedZones', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/managedZones/{managedZone}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/managedZones/{managedZone}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/managedZones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects = new Postman_Google_Service_Dns_Projects_Resource( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->resourceRecordSets = new Postman_Google_Service_Dns_ResourceRecordSets_Resource( - $this, - $this->serviceName, - 'resourceRecordSets', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/managedZones/{managedZone}/rrsets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "changes" collection of methods. - * Typical usage is: - *
- * $dnsService = new Postman_Google_Service_Dns(...);
- * $changes = $dnsService->changes;
- *
- */
-class Postman_Google_Service_Dns_Changes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Atomically update the ResourceRecordSet collection. (changes.create)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param string $managedZone Identifies the managed zone addressed by this
- * request. Can be the managed zone name or id.
- * @param Postman_Google_Change $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dns_Change
- */
- public function create($project, $managedZone, Postman_Google_Service_Dns_Change $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Dns_Change");
- }
-
- /**
- * Fetch the representation of an existing Change. (changes.get)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param string $managedZone Identifies the managed zone addressed by this
- * request. Can be the managed zone name or id.
- * @param string $changeId The identifier of the requested change, from a
- * previous ResourceRecordSetsChangeResponse.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dns_Change
- */
- public function get($project, $managedZone, $changeId, $optParams = array())
- {
- $params = array('project' => $project, 'managedZone' => $managedZone, 'changeId' => $changeId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dns_Change");
- }
-
- /**
- * Enumerate Changes to a ResourceRecordSet collection. (changes.listChanges)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param string $managedZone Identifies the managed zone addressed by this
- * request. Can be the managed zone name or id.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int maxResults Optional. Maximum number of results to be returned.
- * If unspecified, the server will decide how many results to return.
- * @opt_param string pageToken Optional. A tag returned by a previous list
- * request that was truncated. Use this parameter to continue a previous list
- * request.
- * @opt_param string sortBy Sorting criterion. The only supported value is
- * change sequence.
- * @opt_param string sortOrder Sorting order direction: 'ascending' or
- * 'descending'.
- * @return Postman_Google_Service_Dns_ChangesListResponse
- */
- public function listChanges($project, $managedZone, $optParams = array())
- {
- $params = array('project' => $project, 'managedZone' => $managedZone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dns_ChangesListResponse");
- }
-}
-
-/**
- * The "managedZones" collection of methods.
- * Typical usage is:
- *
- * $dnsService = new Postman_Google_Service_Dns(...);
- * $managedZones = $dnsService->managedZones;
- *
- */
-class Postman_Google_Service_Dns_ManagedZones_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Create a new ManagedZone. (managedZones.create)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param Postman_Google_ManagedZone $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dns_ManagedZone
- */
- public function create($project, Postman_Google_Service_Dns_ManagedZone $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Dns_ManagedZone");
- }
-
- /**
- * Delete a previously created ManagedZone. (managedZones.delete)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param string $managedZone Identifies the managed zone addressed by this
- * request. Can be the managed zone name or id.
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $managedZone, $optParams = array())
- {
- $params = array('project' => $project, 'managedZone' => $managedZone);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Fetch the representation of an existing ManagedZone. (managedZones.get)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param string $managedZone Identifies the managed zone addressed by this
- * request. Can be the managed zone name or id.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dns_ManagedZone
- */
- public function get($project, $managedZone, $optParams = array())
- {
- $params = array('project' => $project, 'managedZone' => $managedZone);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dns_ManagedZone");
- }
-
- /**
- * Enumerate ManagedZones that have been created but not yet deleted.
- * (managedZones.listManagedZones)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Optional. A tag returned by a previous list
- * request that was truncated. Use this parameter to continue a previous list
- * request.
- * @opt_param int maxResults Optional. Maximum number of results to be returned.
- * If unspecified, the server will decide how many results to return.
- * @return Postman_Google_Service_Dns_ManagedZonesListResponse
- */
- public function listManagedZones($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dns_ManagedZonesListResponse");
- }
-}
-
-/**
- * The "projects" collection of methods.
- * Typical usage is:
- *
- * $dnsService = new Postman_Google_Service_Dns(...);
- * $projects = $dnsService->projects;
- *
- */
-class Postman_Google_Service_Dns_Projects_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Fetch the representation of an existing Project. (projects.get)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Dns_Project
- */
- public function get($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Dns_Project");
- }
-}
-
-/**
- * The "resourceRecordSets" collection of methods.
- * Typical usage is:
- *
- * $dnsService = new Postman_Google_Service_Dns(...);
- * $resourceRecordSets = $dnsService->resourceRecordSets;
- *
- */
-class Postman_Google_Service_Dns_ResourceRecordSets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Enumerate ResourceRecordSets that have been created but not yet deleted.
- * (resourceRecordSets.listResourceRecordSets)
- *
- * @param string $project Identifies the project addressed by this request.
- * @param string $managedZone Identifies the managed zone addressed by this
- * request. Can be the managed zone name or id.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string name Restricts the list to return only records with this
- * fully qualified domain name.
- * @opt_param int maxResults Optional. Maximum number of results to be returned.
- * If unspecified, the server will decide how many results to return.
- * @opt_param string pageToken Optional. A tag returned by a previous list
- * request that was truncated. Use this parameter to continue a previous list
- * request.
- * @opt_param string type Restricts the list to return only records of this
- * type. If present, the "name" parameter must also be present.
- * @return Postman_Google_Service_Dns_ResourceRecordSetsListResponse
- */
- public function listResourceRecordSets($project, $managedZone, $optParams = array())
- {
- $params = array('project' => $project, 'managedZone' => $managedZone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Dns_ResourceRecordSetsListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Dns_Change extends Postman_Google_Collection
-{
- protected $collection_key = 'deletions';
- protected $internal_gapi_mappings = array(
- );
- protected $additionsType = 'Postman_Google_Service_Dns_ResourceRecordSet';
- protected $additionsDataType = 'array';
- protected $deletionsType = 'Postman_Google_Service_Dns_ResourceRecordSet';
- protected $deletionsDataType = 'array';
- public $id;
- public $kind;
- public $startTime;
- public $status;
-
-
- public function setAdditions($additions)
- {
- $this->additions = $additions;
- }
- public function getAdditions()
- {
- return $this->additions;
- }
- public function setDeletions($deletions)
- {
- $this->deletions = $deletions;
- }
- public function getDeletions()
- {
- return $this->deletions;
- }
- 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 setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Dns_ChangesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'changes';
- protected $internal_gapi_mappings = array(
- );
- protected $changesType = 'Postman_Google_Service_Dns_Change';
- protected $changesDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setChanges($changes)
- {
- $this->changes = $changes;
- }
- public function getChanges()
- {
- return $this->changes;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_Dns_ManagedZone extends Postman_Google_Collection
-{
- protected $collection_key = 'nameServers';
- protected $internal_gapi_mappings = array(
- );
- public $creationTime;
- public $description;
- public $dnsName;
- public $id;
- public $kind;
- public $name;
- public $nameServers;
-
-
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDnsName($dnsName)
- {
- $this->dnsName = $dnsName;
- }
- public function getDnsName()
- {
- return $this->dnsName;
- }
- 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 setNameServers($nameServers)
- {
- $this->nameServers = $nameServers;
- }
- public function getNameServers()
- {
- return $this->nameServers;
- }
-}
-
-class Postman_Google_Service_Dns_ManagedZonesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'managedZones';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $managedZonesType = 'Postman_Google_Service_Dns_ManagedZone';
- protected $managedZonesDataType = 'array';
- public $nextPageToken;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setManagedZones($managedZones)
- {
- $this->managedZones = $managedZones;
- }
- public function getManagedZones()
- {
- return $this->managedZones;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Dns_Project extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $number;
- protected $quotaType = 'Postman_Google_Service_Dns_Quota';
- protected $quotaDataType = '';
-
-
- 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 setNumber($number)
- {
- $this->number = $number;
- }
- public function getNumber()
- {
- return $this->number;
- }
- public function setQuota(Postman_Google_Service_Dns_Quota $quota)
- {
- $this->quota = $quota;
- }
- public function getQuota()
- {
- return $this->quota;
- }
-}
-
-class Postman_Google_Service_Dns_Quota extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $managedZones;
- public $resourceRecordsPerRrset;
- public $rrsetAdditionsPerChange;
- public $rrsetDeletionsPerChange;
- public $rrsetsPerManagedZone;
- public $totalRrdataSizePerChange;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setManagedZones($managedZones)
- {
- $this->managedZones = $managedZones;
- }
- public function getManagedZones()
- {
- return $this->managedZones;
- }
- public function setResourceRecordsPerRrset($resourceRecordsPerRrset)
- {
- $this->resourceRecordsPerRrset = $resourceRecordsPerRrset;
- }
- public function getResourceRecordsPerRrset()
- {
- return $this->resourceRecordsPerRrset;
- }
- public function setRrsetAdditionsPerChange($rrsetAdditionsPerChange)
- {
- $this->rrsetAdditionsPerChange = $rrsetAdditionsPerChange;
- }
- public function getRrsetAdditionsPerChange()
- {
- return $this->rrsetAdditionsPerChange;
- }
- public function setRrsetDeletionsPerChange($rrsetDeletionsPerChange)
- {
- $this->rrsetDeletionsPerChange = $rrsetDeletionsPerChange;
- }
- public function getRrsetDeletionsPerChange()
- {
- return $this->rrsetDeletionsPerChange;
- }
- public function setRrsetsPerManagedZone($rrsetsPerManagedZone)
- {
- $this->rrsetsPerManagedZone = $rrsetsPerManagedZone;
- }
- public function getRrsetsPerManagedZone()
- {
- return $this->rrsetsPerManagedZone;
- }
- public function setTotalRrdataSizePerChange($totalRrdataSizePerChange)
- {
- $this->totalRrdataSizePerChange = $totalRrdataSizePerChange;
- }
- public function getTotalRrdataSizePerChange()
- {
- return $this->totalRrdataSizePerChange;
- }
-}
-
-class Postman_Google_Service_Dns_ResourceRecordSet extends Postman_Google_Collection
-{
- protected $collection_key = 'rrdatas';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $name;
- public $rrdatas;
- public $ttl;
- public $type;
-
-
- 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 setRrdatas($rrdatas)
- {
- $this->rrdatas = $rrdatas;
- }
- public function getRrdatas()
- {
- return $this->rrdatas;
- }
- public function setTtl($ttl)
- {
- $this->ttl = $ttl;
- }
- public function getTtl()
- {
- return $this->ttl;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Dns_ResourceRecordSetsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rrsets';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $rrsetsType = 'Postman_Google_Service_Dns_ResourceRecordSet';
- protected $rrsetsDataType = 'array';
-
-
- 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;
- }
- public function setRrsets($rrsets)
- {
- $this->rrsets = $rrsets;
- }
- public function getRrsets()
- {
- return $this->rrsets;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php
deleted file mode 100644
index c11328a..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php
+++ /dev/null
@@ -1,1066 +0,0 @@
-
- * API for viewing and managing your reports in DoubleClick Bid Manager.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_DoubleClickBidManager extends Postman_Google_Service -{ - - - public $lineitems; - public $queries; - public $reports; - - - /** - * Constructs the internal representation of the DoubleClickBidManager - * service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'doubleclickbidmanager/v1/'; - $this->version = 'v1'; - $this->serviceName = 'doubleclickbidmanager'; - - $this->lineitems = new Postman_Google_Service_DoubleClickBidManager_Lineitems_Resource( - $this, - $this->serviceName, - 'lineitems', - array( - 'methods' => array( - 'downloadlineitems' => array( - 'path' => 'lineitems/downloadlineitems', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'uploadlineitems' => array( - 'path' => 'lineitems/uploadlineitems', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->queries = new Postman_Google_Service_DoubleClickBidManager_Queries_Resource( - $this, - $this->serviceName, - 'queries', - array( - 'methods' => array( - 'createquery' => array( - 'path' => 'query', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'deletequery' => array( - 'path' => 'query/{queryId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getquery' => array( - 'path' => 'query/{queryId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'listqueries' => array( - 'path' => 'queries', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'runquery' => array( - 'path' => 'query/{queryId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports = new Postman_Google_Service_DoubleClickBidManager_Reports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'listreports' => array( - 'path' => 'queries/{queryId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "lineitems" collection of methods. - * Typical usage is: - *
- * $doubleclickbidmanagerService = new Postman_Google_Service_DoubleClickBidManager(...);
- * $lineitems = $doubleclickbidmanagerService->lineitems;
- *
- */
-class Postman_Google_Service_DoubleClickBidManager_Lineitems_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves line items in CSV format. (lineitems.downloadlineitems)
- *
- * @param Postman_Google_DownloadLineItemsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsResponse
- */
- public function downloadlineitems(Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('downloadlineitems', array($params), "Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsResponse");
- }
-
- /**
- * Uploads line items in CSV format. (lineitems.uploadlineitems)
- *
- * @param Postman_Google_UploadLineItemsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_DoubleClickBidManager_UploadLineItemsResponse
- */
- public function uploadlineitems(Postman_Google_Service_DoubleClickBidManager_UploadLineItemsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('uploadlineitems', array($params), "Postman_Google_Service_DoubleClickBidManager_UploadLineItemsResponse");
- }
-}
-
-/**
- * The "queries" collection of methods.
- * Typical usage is:
- *
- * $doubleclickbidmanagerService = new Postman_Google_Service_DoubleClickBidManager(...);
- * $queries = $doubleclickbidmanagerService->queries;
- *
- */
-class Postman_Google_Service_DoubleClickBidManager_Queries_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a query. (queries.createquery)
- *
- * @param Postman_Google_Query $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_DoubleClickBidManager_Query
- */
- public function createquery(Postman_Google_Service_DoubleClickBidManager_Query $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('createquery', array($params), "Postman_Google_Service_DoubleClickBidManager_Query");
- }
-
- /**
- * Deletes a stored query as well as the associated stored reports.
- * (queries.deletequery)
- *
- * @param string $queryId Query ID to delete.
- * @param array $optParams Optional parameters.
- */
- public function deletequery($queryId, $optParams = array())
- {
- $params = array('queryId' => $queryId);
- $params = array_merge($params, $optParams);
- return $this->call('deletequery', array($params));
- }
-
- /**
- * Retrieves a stored query. (queries.getquery)
- *
- * @param string $queryId Query ID to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_DoubleClickBidManager_Query
- */
- public function getquery($queryId, $optParams = array())
- {
- $params = array('queryId' => $queryId);
- $params = array_merge($params, $optParams);
- return $this->call('getquery', array($params), "Postman_Google_Service_DoubleClickBidManager_Query");
- }
-
- /**
- * Retrieves stored queries. (queries.listqueries)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_DoubleClickBidManager_ListQueriesResponse
- */
- public function listqueries($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('listqueries', array($params), "Postman_Google_Service_DoubleClickBidManager_ListQueriesResponse");
- }
-
- /**
- * Runs a stored query to generate a report. (queries.runquery)
- *
- * @param string $queryId Query ID to run.
- * @param Postman_Google_RunQueryRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function runquery($queryId, Postman_Google_Service_DoubleClickBidManager_RunQueryRequest $postBody, $optParams = array())
- {
- $params = array('queryId' => $queryId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('runquery', array($params));
- }
-}
-
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $doubleclickbidmanagerService = new Postman_Google_Service_DoubleClickBidManager(...);
- * $reports = $doubleclickbidmanagerService->reports;
- *
- */
-class Postman_Google_Service_DoubleClickBidManager_Reports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves stored reports. (reports.listreports)
- *
- * @param string $queryId Query ID with which the reports are associated.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_DoubleClickBidManager_ListReportsResponse
- */
- public function listreports($queryId, $optParams = array())
- {
- $params = array('queryId' => $queryId);
- $params = array_merge($params, $optParams);
- return $this->call('listreports', array($params), "Postman_Google_Service_DoubleClickBidManager_ListReportsResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'filterIds';
- protected $internal_gapi_mappings = array(
- );
- public $filterIds;
- public $filterType;
- public $format;
-
-
- public function setFilterIds($filterIds)
- {
- $this->filterIds = $filterIds;
- }
- public function getFilterIds()
- {
- return $this->filterIds;
- }
- public function setFilterType($filterType)
- {
- $this->filterType = $filterType;
- }
- public function getFilterType()
- {
- return $this->filterType;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $lineItems;
-
-
- public function setLineItems($lineItems)
- {
- $this->lineItems = $lineItems;
- }
- public function getLineItems()
- {
- return $this->lineItems;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_FilterPair extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_ListQueriesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'queries';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $queriesType = 'Postman_Google_Service_DoubleClickBidManager_Query';
- protected $queriesDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setQueries($queries)
- {
- $this->queries = $queries;
- }
- public function getQueries()
- {
- return $this->queries;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_ListReportsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'reports';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $reportsType = 'Postman_Google_Service_DoubleClickBidManager_Report';
- protected $reportsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setReports($reports)
- {
- $this->reports = $reports;
- }
- public function getReports()
- {
- return $this->reports;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_Parameters extends Postman_Google_Collection
-{
- protected $collection_key = 'metrics';
- protected $internal_gapi_mappings = array(
- );
- protected $filtersType = 'Postman_Google_Service_DoubleClickBidManager_FilterPair';
- protected $filtersDataType = 'array';
- public $groupBys;
- public $includeInviteData;
- public $metrics;
- public $type;
-
-
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setGroupBys($groupBys)
- {
- $this->groupBys = $groupBys;
- }
- public function getGroupBys()
- {
- return $this->groupBys;
- }
- public function setIncludeInviteData($includeInviteData)
- {
- $this->includeInviteData = $includeInviteData;
- }
- public function getIncludeInviteData()
- {
- return $this->includeInviteData;
- }
- public function setMetrics($metrics)
- {
- $this->metrics = $metrics;
- }
- public function getMetrics()
- {
- return $this->metrics;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_Query extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $metadataType = 'Postman_Google_Service_DoubleClickBidManager_QueryMetadata';
- protected $metadataDataType = '';
- protected $paramsType = 'Postman_Google_Service_DoubleClickBidManager_Parameters';
- protected $paramsDataType = '';
- public $queryId;
- public $reportDataEndTimeMs;
- public $reportDataStartTimeMs;
- protected $scheduleType = 'Postman_Google_Service_DoubleClickBidManager_QuerySchedule';
- protected $scheduleDataType = '';
- public $timezoneCode;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMetadata(Postman_Google_Service_DoubleClickBidManager_QueryMetadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setParams(Postman_Google_Service_DoubleClickBidManager_Parameters $params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
- public function setQueryId($queryId)
- {
- $this->queryId = $queryId;
- }
- public function getQueryId()
- {
- return $this->queryId;
- }
- public function setReportDataEndTimeMs($reportDataEndTimeMs)
- {
- $this->reportDataEndTimeMs = $reportDataEndTimeMs;
- }
- public function getReportDataEndTimeMs()
- {
- return $this->reportDataEndTimeMs;
- }
- public function setReportDataStartTimeMs($reportDataStartTimeMs)
- {
- $this->reportDataStartTimeMs = $reportDataStartTimeMs;
- }
- public function getReportDataStartTimeMs()
- {
- return $this->reportDataStartTimeMs;
- }
- public function setSchedule(Postman_Google_Service_DoubleClickBidManager_QuerySchedule $schedule)
- {
- $this->schedule = $schedule;
- }
- public function getSchedule()
- {
- return $this->schedule;
- }
- public function setTimezoneCode($timezoneCode)
- {
- $this->timezoneCode = $timezoneCode;
- }
- public function getTimezoneCode()
- {
- return $this->timezoneCode;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_QueryMetadata extends Postman_Google_Collection
-{
- protected $collection_key = 'shareEmailAddress';
- protected $internal_gapi_mappings = array(
- );
- public $dataRange;
- public $format;
- public $googleCloudStoragePathForLatestReport;
- public $googleDrivePathForLatestReport;
- public $latestReportRunTimeMs;
- public $reportCount;
- public $running;
- public $sendNotification;
- public $shareEmailAddress;
- public $title;
-
-
- public function setDataRange($dataRange)
- {
- $this->dataRange = $dataRange;
- }
- public function getDataRange()
- {
- return $this->dataRange;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setGoogleCloudStoragePathForLatestReport($googleCloudStoragePathForLatestReport)
- {
- $this->googleCloudStoragePathForLatestReport = $googleCloudStoragePathForLatestReport;
- }
- public function getGoogleCloudStoragePathForLatestReport()
- {
- return $this->googleCloudStoragePathForLatestReport;
- }
- public function setGoogleDrivePathForLatestReport($googleDrivePathForLatestReport)
- {
- $this->googleDrivePathForLatestReport = $googleDrivePathForLatestReport;
- }
- public function getGoogleDrivePathForLatestReport()
- {
- return $this->googleDrivePathForLatestReport;
- }
- public function setLatestReportRunTimeMs($latestReportRunTimeMs)
- {
- $this->latestReportRunTimeMs = $latestReportRunTimeMs;
- }
- public function getLatestReportRunTimeMs()
- {
- return $this->latestReportRunTimeMs;
- }
- public function setReportCount($reportCount)
- {
- $this->reportCount = $reportCount;
- }
- public function getReportCount()
- {
- return $this->reportCount;
- }
- public function setRunning($running)
- {
- $this->running = $running;
- }
- public function getRunning()
- {
- return $this->running;
- }
- public function setSendNotification($sendNotification)
- {
- $this->sendNotification = $sendNotification;
- }
- public function getSendNotification()
- {
- return $this->sendNotification;
- }
- public function setShareEmailAddress($shareEmailAddress)
- {
- $this->shareEmailAddress = $shareEmailAddress;
- }
- public function getShareEmailAddress()
- {
- return $this->shareEmailAddress;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_QuerySchedule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endTimeMs;
- public $frequency;
- public $nextRunMinuteOfDay;
- public $nextRunTimezoneCode;
-
-
- public function setEndTimeMs($endTimeMs)
- {
- $this->endTimeMs = $endTimeMs;
- }
- public function getEndTimeMs()
- {
- return $this->endTimeMs;
- }
- public function setFrequency($frequency)
- {
- $this->frequency = $frequency;
- }
- public function getFrequency()
- {
- return $this->frequency;
- }
- public function setNextRunMinuteOfDay($nextRunMinuteOfDay)
- {
- $this->nextRunMinuteOfDay = $nextRunMinuteOfDay;
- }
- public function getNextRunMinuteOfDay()
- {
- return $this->nextRunMinuteOfDay;
- }
- public function setNextRunTimezoneCode($nextRunTimezoneCode)
- {
- $this->nextRunTimezoneCode = $nextRunTimezoneCode;
- }
- public function getNextRunTimezoneCode()
- {
- return $this->nextRunTimezoneCode;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_Report extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $keyType = 'Postman_Google_Service_DoubleClickBidManager_ReportKey';
- protected $keyDataType = '';
- protected $metadataType = 'Postman_Google_Service_DoubleClickBidManager_ReportMetadata';
- protected $metadataDataType = '';
- protected $paramsType = 'Postman_Google_Service_DoubleClickBidManager_Parameters';
- protected $paramsDataType = '';
-
-
- public function setKey(Postman_Google_Service_DoubleClickBidManager_ReportKey $key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setMetadata(Postman_Google_Service_DoubleClickBidManager_ReportMetadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setParams(Postman_Google_Service_DoubleClickBidManager_Parameters $params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_ReportFailure extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $errorCode;
-
-
- public function setErrorCode($errorCode)
- {
- $this->errorCode = $errorCode;
- }
- public function getErrorCode()
- {
- return $this->errorCode;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_ReportKey extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $queryId;
- public $reportId;
-
-
- public function setQueryId($queryId)
- {
- $this->queryId = $queryId;
- }
- public function getQueryId()
- {
- return $this->queryId;
- }
- public function setReportId($reportId)
- {
- $this->reportId = $reportId;
- }
- public function getReportId()
- {
- return $this->reportId;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_ReportMetadata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $googleCloudStoragePath;
- public $reportDataEndTimeMs;
- public $reportDataStartTimeMs;
- protected $statusType = 'Postman_Google_Service_DoubleClickBidManager_ReportStatus';
- protected $statusDataType = '';
-
-
- public function setGoogleCloudStoragePath($googleCloudStoragePath)
- {
- $this->googleCloudStoragePath = $googleCloudStoragePath;
- }
- public function getGoogleCloudStoragePath()
- {
- return $this->googleCloudStoragePath;
- }
- public function setReportDataEndTimeMs($reportDataEndTimeMs)
- {
- $this->reportDataEndTimeMs = $reportDataEndTimeMs;
- }
- public function getReportDataEndTimeMs()
- {
- return $this->reportDataEndTimeMs;
- }
- public function setReportDataStartTimeMs($reportDataStartTimeMs)
- {
- $this->reportDataStartTimeMs = $reportDataStartTimeMs;
- }
- public function getReportDataStartTimeMs()
- {
- return $this->reportDataStartTimeMs;
- }
- public function setStatus(Postman_Google_Service_DoubleClickBidManager_ReportStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_ReportStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $failureType = 'Postman_Google_Service_DoubleClickBidManager_ReportFailure';
- protected $failureDataType = '';
- public $finishTimeMs;
- public $format;
- public $state;
-
-
- public function setFailure(Postman_Google_Service_DoubleClickBidManager_ReportFailure $failure)
- {
- $this->failure = $failure;
- }
- public function getFailure()
- {
- return $this->failure;
- }
- public function setFinishTimeMs($finishTimeMs)
- {
- $this->finishTimeMs = $finishTimeMs;
- }
- public function getFinishTimeMs()
- {
- return $this->finishTimeMs;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_RowStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- public $changed;
- public $entityId;
- public $entityName;
- public $errors;
- public $persisted;
- public $rowNumber;
-
-
- public function setChanged($changed)
- {
- $this->changed = $changed;
- }
- public function getChanged()
- {
- return $this->changed;
- }
- public function setEntityId($entityId)
- {
- $this->entityId = $entityId;
- }
- public function getEntityId()
- {
- return $this->entityId;
- }
- public function setEntityName($entityName)
- {
- $this->entityName = $entityName;
- }
- public function getEntityName()
- {
- return $this->entityName;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setPersisted($persisted)
- {
- $this->persisted = $persisted;
- }
- public function getPersisted()
- {
- return $this->persisted;
- }
- public function setRowNumber($rowNumber)
- {
- $this->rowNumber = $rowNumber;
- }
- public function getRowNumber()
- {
- return $this->rowNumber;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_RunQueryRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $dataRange;
- public $reportDataEndTimeMs;
- public $reportDataStartTimeMs;
- public $timezoneCode;
-
-
- public function setDataRange($dataRange)
- {
- $this->dataRange = $dataRange;
- }
- public function getDataRange()
- {
- return $this->dataRange;
- }
- public function setReportDataEndTimeMs($reportDataEndTimeMs)
- {
- $this->reportDataEndTimeMs = $reportDataEndTimeMs;
- }
- public function getReportDataEndTimeMs()
- {
- return $this->reportDataEndTimeMs;
- }
- public function setReportDataStartTimeMs($reportDataStartTimeMs)
- {
- $this->reportDataStartTimeMs = $reportDataStartTimeMs;
- }
- public function getReportDataStartTimeMs()
- {
- return $this->reportDataStartTimeMs;
- }
- public function setTimezoneCode($timezoneCode)
- {
- $this->timezoneCode = $timezoneCode;
- }
- public function getTimezoneCode()
- {
- return $this->timezoneCode;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_UploadLineItemsRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $dryRun;
- public $format;
- public $lineItems;
-
-
- public function setDryRun($dryRun)
- {
- $this->dryRun = $dryRun;
- }
- public function getDryRun()
- {
- return $this->dryRun;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setLineItems($lineItems)
- {
- $this->lineItems = $lineItems;
- }
- public function getLineItems()
- {
- return $this->lineItems;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_UploadLineItemsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $uploadStatusType = 'Postman_Google_Service_DoubleClickBidManager_UploadStatus';
- protected $uploadStatusDataType = '';
-
-
- public function setUploadStatus(Postman_Google_Service_DoubleClickBidManager_UploadStatus $uploadStatus)
- {
- $this->uploadStatus = $uploadStatus;
- }
- public function getUploadStatus()
- {
- return $this->uploadStatus;
- }
-}
-
-class Postman_Google_Service_DoubleClickBidManager_UploadStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'rowStatus';
- protected $internal_gapi_mappings = array(
- );
- public $errors;
- protected $rowStatusType = 'Postman_Google_Service_DoubleClickBidManager_RowStatus';
- protected $rowStatusDataType = 'array';
-
-
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setRowStatus($rowStatus)
- {
- $this->rowStatus = $rowStatus;
- }
- public function getRowStatus()
- {
- return $this->rowStatus;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Doubleclicksearch.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Doubleclicksearch.php
deleted file mode 100644
index a21203a..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Doubleclicksearch.php
+++ /dev/null
@@ -1,1461 +0,0 @@
-
- * Report and modify your advertising data in DoubleClick Search (for example,
- * campaigns, ad groups, keywords, and conversions).
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Doubleclicksearch extends Postman_Google_Service -{ - /** View and manage your advertising data in DoubleClick Search. */ - const DOUBLECLICKSEARCH = - "https://www.googleapis.com/auth/doubleclicksearch"; - - public $conversion; - public $reports; - public $savedColumns; - - - /** - * Constructs the internal representation of the Doubleclicksearch service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'doubleclicksearch/v2/'; - $this->version = 'v2'; - $this->serviceName = 'doubleclicksearch'; - - $this->conversion = new Postman_Google_Service_Doubleclicksearch_Conversion_Resource( - $this, - $this->serviceName, - 'conversion', - array( - 'methods' => array( - 'get' => array( - 'path' => 'agency/{agencyId}/advertiser/{advertiserId}/engine/{engineAccountId}/conversion', - 'httpMethod' => 'GET', - 'parameters' => array( - 'agencyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'engineAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'rowCount' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startRow' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'adGroupId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'campaignId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'adId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'criterionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'conversion', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'conversion', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'agencyId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'engineAccountId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'rowCount' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startRow' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'conversion', - 'httpMethod' => 'PUT', - 'parameters' => array(), - ),'updateAvailability' => array( - 'path' => 'conversion/updateAvailability', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->reports = new Postman_Google_Service_Doubleclicksearch_Reports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports/generate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'reports/{reportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getFile' => array( - 'path' => 'reports/{reportId}/files/{reportFragment}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportFragment' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'request' => array( - 'path' => 'reports', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->savedColumns = new Postman_Google_Service_Doubleclicksearch_SavedColumns_Resource( - $this, - $this->serviceName, - 'savedColumns', - array( - 'methods' => array( - 'list' => array( - 'path' => 'agency/{agencyId}/advertiser/{advertiserId}/savedcolumns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'agencyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "conversion" collection of methods. - * Typical usage is: - *
- * $doubleclicksearchService = new Postman_Google_Service_Doubleclicksearch(...);
- * $conversion = $doubleclicksearchService->conversion;
- *
- */
-class Postman_Google_Service_Doubleclicksearch_Conversion_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of conversions from a DoubleClick Search engine account.
- * (conversion.get)
- *
- * @param string $agencyId Numeric ID of the agency.
- * @param string $advertiserId Numeric ID of the advertiser.
- * @param string $engineAccountId Numeric ID of the engine account.
- * @param int $endDate Last date (inclusive) on which to retrieve conversions.
- * Format is yyyymmdd.
- * @param int $rowCount The number of conversions to return per call.
- * @param int $startDate First date (inclusive) on which to retrieve
- * conversions. Format is yyyymmdd.
- * @param string $startRow The 0-based starting index for retrieving conversions
- * results.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string adGroupId Numeric ID of the ad group.
- * @opt_param string campaignId Numeric ID of the campaign.
- * @opt_param string adId Numeric ID of the ad.
- * @opt_param string criterionId Numeric ID of the criterion.
- * @return Postman_Google_Service_Doubleclicksearch_ConversionList
- */
- public function get($agencyId, $advertiserId, $engineAccountId, $endDate, $rowCount, $startDate, $startRow, $optParams = array())
- {
- $params = array('agencyId' => $agencyId, 'advertiserId' => $advertiserId, 'engineAccountId' => $engineAccountId, 'endDate' => $endDate, 'rowCount' => $rowCount, 'startDate' => $startDate, 'startRow' => $startRow);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Doubleclicksearch_ConversionList");
- }
-
- /**
- * Inserts a batch of new conversions into DoubleClick Search.
- * (conversion.insert)
- *
- * @param Postman_Google_ConversionList $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_ConversionList
- */
- public function insert(Postman_Google_Service_Doubleclicksearch_ConversionList $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Doubleclicksearch_ConversionList");
- }
-
- /**
- * Updates a batch of conversions in DoubleClick Search. This method supports
- * patch semantics. (conversion.patch)
- *
- * @param string $advertiserId Numeric ID of the advertiser.
- * @param string $agencyId Numeric ID of the agency.
- * @param int $endDate Last date (inclusive) on which to retrieve conversions.
- * Format is yyyymmdd.
- * @param string $engineAccountId Numeric ID of the engine account.
- * @param int $rowCount The number of conversions to return per call.
- * @param int $startDate First date (inclusive) on which to retrieve
- * conversions. Format is yyyymmdd.
- * @param string $startRow The 0-based starting index for retrieving conversions
- * results.
- * @param Postman_Google_ConversionList $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_ConversionList
- */
- public function patch($advertiserId, $agencyId, $endDate, $engineAccountId, $rowCount, $startDate, $startRow, Postman_Google_Service_Doubleclicksearch_ConversionList $postBody, $optParams = array())
- {
- $params = array('advertiserId' => $advertiserId, 'agencyId' => $agencyId, 'endDate' => $endDate, 'engineAccountId' => $engineAccountId, 'rowCount' => $rowCount, 'startDate' => $startDate, 'startRow' => $startRow, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Doubleclicksearch_ConversionList");
- }
-
- /**
- * Updates a batch of conversions in DoubleClick Search. (conversion.update)
- *
- * @param Postman_Google_ConversionList $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_ConversionList
- */
- public function update(Postman_Google_Service_Doubleclicksearch_ConversionList $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Doubleclicksearch_ConversionList");
- }
-
- /**
- * Updates the availabilities of a batch of floodlight activities in DoubleClick
- * Search. (conversion.updateAvailability)
- *
- * @param Postman_Google_UpdateAvailabilityRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_UpdateAvailabilityResponse
- */
- public function updateAvailability(Postman_Google_Service_Doubleclicksearch_UpdateAvailabilityRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('updateAvailability', array($params), "Postman_Google_Service_Doubleclicksearch_UpdateAvailabilityResponse");
- }
-}
-
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $doubleclicksearchService = new Postman_Google_Service_Doubleclicksearch(...);
- * $reports = $doubleclicksearchService->reports;
- *
- */
-class Postman_Google_Service_Doubleclicksearch_Reports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Generates and returns a report immediately. (reports.generate)
- *
- * @param Postman_Google_ReportRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_Report
- */
- public function generate(Postman_Google_Service_Doubleclicksearch_ReportRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('generate', array($params), "Postman_Google_Service_Doubleclicksearch_Report");
- }
-
- /**
- * Polls for the status of a report request. (reports.get)
- *
- * @param string $reportId ID of the report request being polled.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_Report
- */
- public function get($reportId, $optParams = array())
- {
- $params = array('reportId' => $reportId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Doubleclicksearch_Report");
- }
-
- /**
- * Downloads a report file. (reports.getFile)
- *
- * @param string $reportId ID of the report.
- * @param int $reportFragment The index of the report fragment to download.
- * @param array $optParams Optional parameters.
- */
- public function getFile($reportId, $reportFragment, $optParams = array())
- {
- $params = array('reportId' => $reportId, 'reportFragment' => $reportFragment);
- $params = array_merge($params, $optParams);
- return $this->call('getFile', array($params));
- }
-
- /**
- * Inserts a report request into the reporting system. (reports.request)
- *
- * @param Postman_Google_ReportRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_Report
- */
- public function request(Postman_Google_Service_Doubleclicksearch_ReportRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('request', array($params), "Postman_Google_Service_Doubleclicksearch_Report");
- }
-}
-
-/**
- * The "savedColumns" collection of methods.
- * Typical usage is:
- *
- * $doubleclicksearchService = new Postman_Google_Service_Doubleclicksearch(...);
- * $savedColumns = $doubleclicksearchService->savedColumns;
- *
- */
-class Postman_Google_Service_Doubleclicksearch_SavedColumns_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieve the list of saved columns for a specified advertiser.
- * (savedColumns.listSavedColumns)
- *
- * @param string $agencyId DS ID of the agency.
- * @param string $advertiserId DS ID of the advertiser.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Doubleclicksearch_SavedColumnList
- */
- public function listSavedColumns($agencyId, $advertiserId, $optParams = array())
- {
- $params = array('agencyId' => $agencyId, 'advertiserId' => $advertiserId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Doubleclicksearch_SavedColumnList");
- }
-}
-
-
-
-
-class Postman_Google_Service_Doubleclicksearch_Availability extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $advertiserId;
- public $agencyId;
- public $availabilityTimestamp;
- public $segmentationId;
- public $segmentationName;
- public $segmentationType;
-
-
- public function setAdvertiserId($advertiserId)
- {
- $this->advertiserId = $advertiserId;
- }
- public function getAdvertiserId()
- {
- return $this->advertiserId;
- }
- public function setAgencyId($agencyId)
- {
- $this->agencyId = $agencyId;
- }
- public function getAgencyId()
- {
- return $this->agencyId;
- }
- public function setAvailabilityTimestamp($availabilityTimestamp)
- {
- $this->availabilityTimestamp = $availabilityTimestamp;
- }
- public function getAvailabilityTimestamp()
- {
- return $this->availabilityTimestamp;
- }
- public function setSegmentationId($segmentationId)
- {
- $this->segmentationId = $segmentationId;
- }
- public function getSegmentationId()
- {
- return $this->segmentationId;
- }
- public function setSegmentationName($segmentationName)
- {
- $this->segmentationName = $segmentationName;
- }
- public function getSegmentationName()
- {
- return $this->segmentationName;
- }
- public function setSegmentationType($segmentationType)
- {
- $this->segmentationType = $segmentationType;
- }
- public function getSegmentationType()
- {
- return $this->segmentationType;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_Conversion extends Postman_Google_Collection
-{
- protected $collection_key = 'customMetric';
- protected $internal_gapi_mappings = array(
- );
- public $adGroupId;
- public $adId;
- public $advertiserId;
- public $agencyId;
- public $attributionModel;
- public $campaignId;
- public $clickId;
- public $conversionId;
- public $conversionModifiedTimestamp;
- public $conversionTimestamp;
- public $countMillis;
- public $criterionId;
- public $currencyCode;
- protected $customDimensionType = 'Postman_Google_Service_Doubleclicksearch_CustomDimension';
- protected $customDimensionDataType = 'array';
- protected $customMetricType = 'Postman_Google_Service_Doubleclicksearch_CustomMetric';
- protected $customMetricDataType = 'array';
- public $dsConversionId;
- public $engineAccountId;
- public $floodlightOrderId;
- public $quantityMillis;
- public $revenueMicros;
- public $segmentationId;
- public $segmentationName;
- public $segmentationType;
- public $state;
- public $type;
-
-
- public function setAdGroupId($adGroupId)
- {
- $this->adGroupId = $adGroupId;
- }
- public function getAdGroupId()
- {
- return $this->adGroupId;
- }
- public function setAdId($adId)
- {
- $this->adId = $adId;
- }
- public function getAdId()
- {
- return $this->adId;
- }
- public function setAdvertiserId($advertiserId)
- {
- $this->advertiserId = $advertiserId;
- }
- public function getAdvertiserId()
- {
- return $this->advertiserId;
- }
- public function setAgencyId($agencyId)
- {
- $this->agencyId = $agencyId;
- }
- public function getAgencyId()
- {
- return $this->agencyId;
- }
- public function setAttributionModel($attributionModel)
- {
- $this->attributionModel = $attributionModel;
- }
- public function getAttributionModel()
- {
- return $this->attributionModel;
- }
- public function setCampaignId($campaignId)
- {
- $this->campaignId = $campaignId;
- }
- public function getCampaignId()
- {
- return $this->campaignId;
- }
- public function setClickId($clickId)
- {
- $this->clickId = $clickId;
- }
- public function getClickId()
- {
- return $this->clickId;
- }
- public function setConversionId($conversionId)
- {
- $this->conversionId = $conversionId;
- }
- public function getConversionId()
- {
- return $this->conversionId;
- }
- public function setConversionModifiedTimestamp($conversionModifiedTimestamp)
- {
- $this->conversionModifiedTimestamp = $conversionModifiedTimestamp;
- }
- public function getConversionModifiedTimestamp()
- {
- return $this->conversionModifiedTimestamp;
- }
- public function setConversionTimestamp($conversionTimestamp)
- {
- $this->conversionTimestamp = $conversionTimestamp;
- }
- public function getConversionTimestamp()
- {
- return $this->conversionTimestamp;
- }
- public function setCountMillis($countMillis)
- {
- $this->countMillis = $countMillis;
- }
- public function getCountMillis()
- {
- return $this->countMillis;
- }
- public function setCriterionId($criterionId)
- {
- $this->criterionId = $criterionId;
- }
- public function getCriterionId()
- {
- return $this->criterionId;
- }
- public function setCurrencyCode($currencyCode)
- {
- $this->currencyCode = $currencyCode;
- }
- public function getCurrencyCode()
- {
- return $this->currencyCode;
- }
- public function setCustomDimension($customDimension)
- {
- $this->customDimension = $customDimension;
- }
- public function getCustomDimension()
- {
- return $this->customDimension;
- }
- public function setCustomMetric($customMetric)
- {
- $this->customMetric = $customMetric;
- }
- public function getCustomMetric()
- {
- return $this->customMetric;
- }
- public function setDsConversionId($dsConversionId)
- {
- $this->dsConversionId = $dsConversionId;
- }
- public function getDsConversionId()
- {
- return $this->dsConversionId;
- }
- public function setEngineAccountId($engineAccountId)
- {
- $this->engineAccountId = $engineAccountId;
- }
- public function getEngineAccountId()
- {
- return $this->engineAccountId;
- }
- public function setFloodlightOrderId($floodlightOrderId)
- {
- $this->floodlightOrderId = $floodlightOrderId;
- }
- public function getFloodlightOrderId()
- {
- return $this->floodlightOrderId;
- }
- public function setQuantityMillis($quantityMillis)
- {
- $this->quantityMillis = $quantityMillis;
- }
- public function getQuantityMillis()
- {
- return $this->quantityMillis;
- }
- public function setRevenueMicros($revenueMicros)
- {
- $this->revenueMicros = $revenueMicros;
- }
- public function getRevenueMicros()
- {
- return $this->revenueMicros;
- }
- public function setSegmentationId($segmentationId)
- {
- $this->segmentationId = $segmentationId;
- }
- public function getSegmentationId()
- {
- return $this->segmentationId;
- }
- public function setSegmentationName($segmentationName)
- {
- $this->segmentationName = $segmentationName;
- }
- public function getSegmentationName()
- {
- return $this->segmentationName;
- }
- public function setSegmentationType($segmentationType)
- {
- $this->segmentationType = $segmentationType;
- }
- public function getSegmentationType()
- {
- return $this->segmentationType;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ConversionList extends Postman_Google_Collection
-{
- protected $collection_key = 'conversion';
- protected $internal_gapi_mappings = array(
- );
- protected $conversionType = 'Postman_Google_Service_Doubleclicksearch_Conversion';
- protected $conversionDataType = 'array';
- public $kind;
-
-
- public function setConversion($conversion)
- {
- $this->conversion = $conversion;
- }
- public function getConversion()
- {
- return $this->conversion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_CustomDimension extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $value;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_CustomMetric extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $value;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_Report extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- protected $filesType = 'Postman_Google_Service_Doubleclicksearch_ReportFiles';
- protected $filesDataType = 'array';
- public $id;
- public $isReportReady;
- public $kind;
- protected $requestType = 'Postman_Google_Service_Doubleclicksearch_ReportRequest';
- protected $requestDataType = '';
- public $rowCount;
- public $rows;
- public $statisticsCurrencyCode;
- public $statisticsTimeZone;
-
-
- public function setFiles($files)
- {
- $this->files = $files;
- }
- public function getFiles()
- {
- return $this->files;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsReportReady($isReportReady)
- {
- $this->isReportReady = $isReportReady;
- }
- public function getIsReportReady()
- {
- return $this->isReportReady;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRequest(Postman_Google_Service_Doubleclicksearch_ReportRequest $request)
- {
- $this->request = $request;
- }
- public function getRequest()
- {
- return $this->request;
- }
- public function setRowCount($rowCount)
- {
- $this->rowCount = $rowCount;
- }
- public function getRowCount()
- {
- return $this->rowCount;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
- public function setStatisticsCurrencyCode($statisticsCurrencyCode)
- {
- $this->statisticsCurrencyCode = $statisticsCurrencyCode;
- }
- public function getStatisticsCurrencyCode()
- {
- return $this->statisticsCurrencyCode;
- }
- public function setStatisticsTimeZone($statisticsTimeZone)
- {
- $this->statisticsTimeZone = $statisticsTimeZone;
- }
- public function getStatisticsTimeZone()
- {
- return $this->statisticsTimeZone;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportApiColumnSpec extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnName;
- public $customDimensionName;
- public $customMetricName;
- public $endDate;
- public $groupByColumn;
- public $headerText;
- public $platformSource;
- public $savedColumnName;
- public $startDate;
-
-
- public function setColumnName($columnName)
- {
- $this->columnName = $columnName;
- }
- public function getColumnName()
- {
- return $this->columnName;
- }
- public function setCustomDimensionName($customDimensionName)
- {
- $this->customDimensionName = $customDimensionName;
- }
- public function getCustomDimensionName()
- {
- return $this->customDimensionName;
- }
- public function setCustomMetricName($customMetricName)
- {
- $this->customMetricName = $customMetricName;
- }
- public function getCustomMetricName()
- {
- return $this->customMetricName;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setGroupByColumn($groupByColumn)
- {
- $this->groupByColumn = $groupByColumn;
- }
- public function getGroupByColumn()
- {
- return $this->groupByColumn;
- }
- public function setHeaderText($headerText)
- {
- $this->headerText = $headerText;
- }
- public function getHeaderText()
- {
- return $this->headerText;
- }
- public function setPlatformSource($platformSource)
- {
- $this->platformSource = $platformSource;
- }
- public function getPlatformSource()
- {
- return $this->platformSource;
- }
- public function setSavedColumnName($savedColumnName)
- {
- $this->savedColumnName = $savedColumnName;
- }
- public function getSavedColumnName()
- {
- return $this->savedColumnName;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportFiles extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $byteCount;
- public $url;
-
-
- public function setByteCount($byteCount)
- {
- $this->byteCount = $byteCount;
- }
- public function getByteCount()
- {
- return $this->byteCount;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'orderBy';
- protected $internal_gapi_mappings = array(
- );
- protected $columnsType = 'Postman_Google_Service_Doubleclicksearch_ReportApiColumnSpec';
- protected $columnsDataType = 'array';
- public $downloadFormat;
- protected $filtersType = 'Postman_Google_Service_Doubleclicksearch_ReportRequestFilters';
- protected $filtersDataType = 'array';
- public $includeDeletedEntities;
- public $includeRemovedEntities;
- public $maxRowsPerFile;
- protected $orderByType = 'Postman_Google_Service_Doubleclicksearch_ReportRequestOrderBy';
- protected $orderByDataType = 'array';
- protected $reportScopeType = 'Postman_Google_Service_Doubleclicksearch_ReportRequestReportScope';
- protected $reportScopeDataType = '';
- public $reportType;
- public $rowCount;
- public $startRow;
- public $statisticsCurrency;
- protected $timeRangeType = 'Postman_Google_Service_Doubleclicksearch_ReportRequestTimeRange';
- protected $timeRangeDataType = '';
- public $verifySingleTimeZone;
-
-
- public function setColumns($columns)
- {
- $this->columns = $columns;
- }
- public function getColumns()
- {
- return $this->columns;
- }
- public function setDownloadFormat($downloadFormat)
- {
- $this->downloadFormat = $downloadFormat;
- }
- public function getDownloadFormat()
- {
- return $this->downloadFormat;
- }
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setIncludeDeletedEntities($includeDeletedEntities)
- {
- $this->includeDeletedEntities = $includeDeletedEntities;
- }
- public function getIncludeDeletedEntities()
- {
- return $this->includeDeletedEntities;
- }
- public function setIncludeRemovedEntities($includeRemovedEntities)
- {
- $this->includeRemovedEntities = $includeRemovedEntities;
- }
- public function getIncludeRemovedEntities()
- {
- return $this->includeRemovedEntities;
- }
- public function setMaxRowsPerFile($maxRowsPerFile)
- {
- $this->maxRowsPerFile = $maxRowsPerFile;
- }
- public function getMaxRowsPerFile()
- {
- return $this->maxRowsPerFile;
- }
- public function setOrderBy($orderBy)
- {
- $this->orderBy = $orderBy;
- }
- public function getOrderBy()
- {
- return $this->orderBy;
- }
- public function setReportScope(Postman_Google_Service_Doubleclicksearch_ReportRequestReportScope $reportScope)
- {
- $this->reportScope = $reportScope;
- }
- public function getReportScope()
- {
- return $this->reportScope;
- }
- public function setReportType($reportType)
- {
- $this->reportType = $reportType;
- }
- public function getReportType()
- {
- return $this->reportType;
- }
- public function setRowCount($rowCount)
- {
- $this->rowCount = $rowCount;
- }
- public function getRowCount()
- {
- return $this->rowCount;
- }
- public function setStartRow($startRow)
- {
- $this->startRow = $startRow;
- }
- public function getStartRow()
- {
- return $this->startRow;
- }
- public function setStatisticsCurrency($statisticsCurrency)
- {
- $this->statisticsCurrency = $statisticsCurrency;
- }
- public function getStatisticsCurrency()
- {
- return $this->statisticsCurrency;
- }
- public function setTimeRange(Postman_Google_Service_Doubleclicksearch_ReportRequestTimeRange $timeRange)
- {
- $this->timeRange = $timeRange;
- }
- public function getTimeRange()
- {
- return $this->timeRange;
- }
- public function setVerifySingleTimeZone($verifySingleTimeZone)
- {
- $this->verifySingleTimeZone = $verifySingleTimeZone;
- }
- public function getVerifySingleTimeZone()
- {
- return $this->verifySingleTimeZone;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportRequestFilters extends Postman_Google_Collection
-{
- protected $collection_key = 'values';
- protected $internal_gapi_mappings = array(
- );
- protected $columnType = 'Postman_Google_Service_Doubleclicksearch_ReportApiColumnSpec';
- protected $columnDataType = '';
- public $operator;
- public $values;
-
-
- public function setColumn(Postman_Google_Service_Doubleclicksearch_ReportApiColumnSpec $column)
- {
- $this->column = $column;
- }
- public function getColumn()
- {
- return $this->column;
- }
- public function setOperator($operator)
- {
- $this->operator = $operator;
- }
- public function getOperator()
- {
- return $this->operator;
- }
- public function setValues($values)
- {
- $this->values = $values;
- }
- public function getValues()
- {
- return $this->values;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportRequestOrderBy extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $columnType = 'Postman_Google_Service_Doubleclicksearch_ReportApiColumnSpec';
- protected $columnDataType = '';
- public $sortOrder;
-
-
- public function setColumn(Postman_Google_Service_Doubleclicksearch_ReportApiColumnSpec $column)
- {
- $this->column = $column;
- }
- public function getColumn()
- {
- return $this->column;
- }
- public function setSortOrder($sortOrder)
- {
- $this->sortOrder = $sortOrder;
- }
- public function getSortOrder()
- {
- return $this->sortOrder;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportRequestReportScope extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adGroupId;
- public $adId;
- public $advertiserId;
- public $agencyId;
- public $campaignId;
- public $engineAccountId;
- public $keywordId;
-
-
- public function setAdGroupId($adGroupId)
- {
- $this->adGroupId = $adGroupId;
- }
- public function getAdGroupId()
- {
- return $this->adGroupId;
- }
- public function setAdId($adId)
- {
- $this->adId = $adId;
- }
- public function getAdId()
- {
- return $this->adId;
- }
- public function setAdvertiserId($advertiserId)
- {
- $this->advertiserId = $advertiserId;
- }
- public function getAdvertiserId()
- {
- return $this->advertiserId;
- }
- public function setAgencyId($agencyId)
- {
- $this->agencyId = $agencyId;
- }
- public function getAgencyId()
- {
- return $this->agencyId;
- }
- public function setCampaignId($campaignId)
- {
- $this->campaignId = $campaignId;
- }
- public function getCampaignId()
- {
- return $this->campaignId;
- }
- public function setEngineAccountId($engineAccountId)
- {
- $this->engineAccountId = $engineAccountId;
- }
- public function getEngineAccountId()
- {
- return $this->engineAccountId;
- }
- public function setKeywordId($keywordId)
- {
- $this->keywordId = $keywordId;
- }
- public function getKeywordId()
- {
- return $this->keywordId;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportRequestTimeRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $changedAttributesSinceTimestamp;
- public $changedMetricsSinceTimestamp;
- public $endDate;
- public $startDate;
-
-
- public function setChangedAttributesSinceTimestamp($changedAttributesSinceTimestamp)
- {
- $this->changedAttributesSinceTimestamp = $changedAttributesSinceTimestamp;
- }
- public function getChangedAttributesSinceTimestamp()
- {
- return $this->changedAttributesSinceTimestamp;
- }
- public function setChangedMetricsSinceTimestamp($changedMetricsSinceTimestamp)
- {
- $this->changedMetricsSinceTimestamp = $changedMetricsSinceTimestamp;
- }
- public function getChangedMetricsSinceTimestamp()
- {
- return $this->changedMetricsSinceTimestamp;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_ReportRow extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Doubleclicksearch_SavedColumn extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $savedColumnName;
- public $type;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSavedColumnName($savedColumnName)
- {
- $this->savedColumnName = $savedColumnName;
- }
- public function getSavedColumnName()
- {
- return $this->savedColumnName;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_SavedColumnList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Doubleclicksearch_SavedColumn';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_UpdateAvailabilityRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'availabilities';
- protected $internal_gapi_mappings = array(
- );
- protected $availabilitiesType = 'Postman_Google_Service_Doubleclicksearch_Availability';
- protected $availabilitiesDataType = 'array';
-
-
- public function setAvailabilities($availabilities)
- {
- $this->availabilities = $availabilities;
- }
- public function getAvailabilities()
- {
- return $this->availabilities;
- }
-}
-
-class Postman_Google_Service_Doubleclicksearch_UpdateAvailabilityResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'availabilities';
- protected $internal_gapi_mappings = array(
- );
- protected $availabilitiesType = 'Postman_Google_Service_Doubleclicksearch_Availability';
- protected $availabilitiesDataType = 'array';
-
-
- public function setAvailabilities($availabilities)
- {
- $this->availabilities = $availabilities;
- }
- public function getAvailabilities()
- {
- return $this->availabilities;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Drive.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Drive.php
deleted file mode 100644
index 86c7d01..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Drive.php
+++ /dev/null
@@ -1,5567 +0,0 @@
-
- * The API to interact with Drive.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Drive extends Postman_Google_Service -{ - /** View and manage the files and documents in your Google Drive. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View and manage its own configuration data in your Google Drive. */ - const DRIVE_APPDATA = - "https://www.googleapis.com/auth/drive.appdata"; - /** View your Google Drive apps. */ - const DRIVE_APPS_READONLY = - "https://www.googleapis.com/auth/drive.apps.readonly"; - /** View and manage Google Drive files that you have opened or created with this app. */ - const DRIVE_FILE = - "https://www.googleapis.com/auth/drive.file"; - /** View metadata for files and documents in your Google Drive. */ - const DRIVE_METADATA_READONLY = - "https://www.googleapis.com/auth/drive.metadata.readonly"; - /** View the files and documents in your Google Drive. */ - const DRIVE_READONLY = - "https://www.googleapis.com/auth/drive.readonly"; - /** Modify your Google Apps Script scripts' behavior. */ - const DRIVE_SCRIPTS = - "https://www.googleapis.com/auth/drive.scripts"; - - public $about; - public $apps; - public $changes; - public $channels; - public $children; - public $comments; - public $files; - public $parents; - public $permissions; - public $properties; - public $realtime; - public $replies; - public $revisions; - - - /** - * Constructs the internal representation of the Drive service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'drive/v2/'; - $this->version = 'v2'; - $this->serviceName = 'drive'; - - $this->about = new Postman_Google_Service_Drive_About_Resource( - $this, - $this->serviceName, - 'about', - array( - 'methods' => array( - 'get' => array( - 'path' => 'about', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeSubscribed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxChangeIdCount' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startChangeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apps = new Postman_Google_Service_Drive_Apps_Resource( - $this, - $this->serviceName, - 'apps', - array( - 'methods' => array( - 'get' => array( - 'path' => 'apps/{appId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'apps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'appFilterExtensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'appFilterMimeTypes' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->changes = new Postman_Google_Service_Drive_Changes_Resource( - $this, - $this->serviceName, - 'changes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'changes/{changeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'changeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'changes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeSubscribed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startChangeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'changes/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'includeSubscribed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startChangeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Postman_Google_Service_Drive_Channels_Resource( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => 'channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->children = new Postman_Google_Service_Drive_Children_Resource( - $this, - $this->serviceName, - 'children', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{folderId}/children/{childId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'folderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'childId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{folderId}/children/{childId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'folderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'childId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'files/{folderId}/children', - 'httpMethod' => 'POST', - 'parameters' => array( - 'folderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'files/{folderId}/children', - 'httpMethod' => 'GET', - 'parameters' => array( - 'folderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->comments = new Postman_Google_Service_Drive_Comments_Resource( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'insert' => array( - 'path' => 'files/{fileId}/comments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->files = new Postman_Google_Service_Drive_Files_Resource( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'copy' => array( - 'path' => 'files/{fileId}/copy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'convert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pinned' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocr' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timedTextTrackName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timedTextLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'emptyTrash' => array( - 'path' => 'files/trash', - 'httpMethod' => 'DELETE', - 'parameters' => array(), - ),'get' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acknowledgeAbuse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateViewedDate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'files', - 'httpMethod' => 'POST', - 'parameters' => array( - 'convert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useContentAsIndexableText' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pinned' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocr' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timedTextTrackName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timedTextLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'corpus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'addParents' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateViewedDate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'removeParents' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'setModifiedDate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'convert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useContentAsIndexableText' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pinned' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'newRevision' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocr' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timedTextLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timedTextTrackName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'touch' => array( - 'path' => 'files/{fileId}/touch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'trash' => array( - 'path' => 'files/{fileId}/trash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'untrash' => array( - 'path' => 'files/{fileId}/untrash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'addParents' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateViewedDate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'removeParents' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'setModifiedDate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'convert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useContentAsIndexableText' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pinned' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'newRevision' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocr' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timedTextLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timedTextTrackName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'files/{fileId}/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acknowledgeAbuse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateViewedDate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->parents = new Postman_Google_Service_Drive_Parents_Resource( - $this, - $this->serviceName, - 'parents', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/parents/{parentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/parents/{parentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'files/{fileId}/parents', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/parents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->permissions = new Postman_Google_Service_Drive_Permissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIdForEmail' => array( - 'path' => 'permissionIds/{email}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'email' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'files/{fileId}/permissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'emailMessage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sendNotificationEmails' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'transferOwnership' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'transferOwnership' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->properties = new Postman_Google_Service_Drive_Properties_Resource( - $this, - $this->serviceName, - 'properties', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/properties/{propertyKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'propertyKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/properties/{propertyKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'propertyKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'files/{fileId}/properties', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/properties', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'files/{fileId}/properties/{propertyKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'propertyKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/properties/{propertyKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'propertyKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->realtime = new Postman_Google_Service_Drive_Realtime_Resource( - $this, - $this->serviceName, - 'realtime', - array( - 'methods' => array( - 'get' => array( - 'path' => 'files/{fileId}/realtime', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revision' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/realtime', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'baseRevision' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->replies = new Postman_Google_Service_Drive_Replies_Resource( - $this, - $this->serviceName, - 'replies', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'insert' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->revisions = new Postman_Google_Service_Drive_Revisions_Resource( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/revisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "about" collection of methods. - * Typical usage is: - *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $about = $driveService->about;
- *
- */
-class Postman_Google_Service_Drive_About_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the information about the current user along with Drive API settings
- * (about.get)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeSubscribed When calculating the number of remaining
- * change IDs, whether to include public files the user has opened and shared
- * files. When set to false, this counts only change IDs for owned files and any
- * shared or public files that the user has explicitly added to a folder they
- * own.
- * @opt_param string maxChangeIdCount Maximum number of remaining change IDs to
- * count
- * @opt_param string startChangeId Change ID to start counting from when
- * calculating number of remaining change IDs
- * @return Postman_Google_Service_Drive_About
- */
- public function get($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_About");
- }
-}
-
-/**
- * The "apps" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $apps = $driveService->apps;
- *
- */
-class Postman_Google_Service_Drive_Apps_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a specific app. (apps.get)
- *
- * @param string $appId The ID of the app.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_App
- */
- public function get($appId, $optParams = array())
- {
- $params = array('appId' => $appId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_App");
- }
-
- /**
- * Lists a user's installed apps. (apps.listApps)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string languageCode A language or locale code, as defined by BCP
- * 47, with some extensions from Unicode's LDML format
- * (http://www.unicode.org/reports/tr35/).
- * @opt_param string appFilterExtensions A comma-separated list of file
- * extensions for open with filtering. All apps within the given app query scope
- * which can open any of the given file extensions will be included in the
- * response. If appFilterMimeTypes are provided as well, the result is a union
- * of the two resulting app lists.
- * @opt_param string appFilterMimeTypes A comma-separated list of MIME types for
- * open with filtering. All apps within the given app query scope which can open
- * any of the given MIME types will be included in the response. If
- * appFilterExtensions are provided as well, the result is a union of the two
- * resulting app lists.
- * @return Postman_Google_Service_Drive_AppList
- */
- public function listApps($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_AppList");
- }
-}
-
-/**
- * The "changes" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $changes = $driveService->changes;
- *
- */
-class Postman_Google_Service_Drive_Changes_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a specific change. (changes.get)
- *
- * @param string $changeId The ID of the change.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Change
- */
- public function get($changeId, $optParams = array())
- {
- $params = array('changeId' => $changeId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_Change");
- }
-
- /**
- * Lists the changes for a user. (changes.listChanges)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeSubscribed Whether to include public files the user
- * has opened and shared files. When set to false, the list only includes owned
- * files plus any shared or public files the user has explicitly added to a
- * folder they own.
- * @opt_param string startChangeId Change ID to start listing changes from.
- * @opt_param bool includeDeleted Whether to include deleted items.
- * @opt_param int maxResults Maximum number of changes to return.
- * @opt_param string pageToken Page token for changes.
- * @return Postman_Google_Service_Drive_ChangeList
- */
- public function listChanges($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_ChangeList");
- }
-
- /**
- * Subscribe to changes for a user. (changes.watch)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeSubscribed Whether to include public files the user
- * has opened and shared files. When set to false, the list only includes owned
- * files plus any shared or public files the user has explicitly added to a
- * folder they own.
- * @opt_param string startChangeId Change ID to start listing changes from.
- * @opt_param bool includeDeleted Whether to include deleted items.
- * @opt_param int maxResults Maximum number of changes to return.
- * @opt_param string pageToken Page token for changes.
- * @return Postman_Google_Service_Drive_Channel
- */
- public function watch(Postman_Google_Service_Drive_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Drive_Channel");
- }
-}
-
-/**
- * The "channels" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $channels = $driveService->channels;
- *
- */
-class Postman_Google_Service_Drive_Channels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Stop watching resources through this channel (channels.stop)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- */
- public function stop(Postman_Google_Service_Drive_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('stop', array($params));
- }
-}
-
-/**
- * The "children" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $children = $driveService->children;
- *
- */
-class Postman_Google_Service_Drive_Children_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a child from a folder. (children.delete)
- *
- * @param string $folderId The ID of the folder.
- * @param string $childId The ID of the child.
- * @param array $optParams Optional parameters.
- */
- public function delete($folderId, $childId, $optParams = array())
- {
- $params = array('folderId' => $folderId, 'childId' => $childId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a specific child reference. (children.get)
- *
- * @param string $folderId The ID of the folder.
- * @param string $childId The ID of the child.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_ChildReference
- */
- public function get($folderId, $childId, $optParams = array())
- {
- $params = array('folderId' => $folderId, 'childId' => $childId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_ChildReference");
- }
-
- /**
- * Inserts a file into a folder. (children.insert)
- *
- * @param string $folderId The ID of the folder.
- * @param Postman_Google_ChildReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_ChildReference
- */
- public function insert($folderId, Postman_Google_Service_Drive_ChildReference $postBody, $optParams = array())
- {
- $params = array('folderId' => $folderId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_ChildReference");
- }
-
- /**
- * Lists a folder's children. (children.listChildren)
- *
- * @param string $folderId The ID of the folder.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string q Query string for searching children.
- * @opt_param string pageToken Page token for children.
- * @opt_param int maxResults Maximum number of children to return.
- * @return Postman_Google_Service_Drive_ChildList
- */
- public function listChildren($folderId, $optParams = array())
- {
- $params = array('folderId' => $folderId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_ChildList");
- }
-}
-
-/**
- * The "comments" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $comments = $driveService->comments;
- *
- */
-class Postman_Google_Service_Drive_Comments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a comment. (comments.delete)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param array $optParams Optional parameters.
- */
- public function delete($fileId, $commentId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a comment by ID. (comments.get)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeDeleted If set, this will succeed when retrieving a
- * deleted comment, and will include any deleted replies.
- * @return Postman_Google_Service_Drive_Comment
- */
- public function get($fileId, $commentId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_Comment");
- }
-
- /**
- * Creates a new comment on the given file. (comments.insert)
- *
- * @param string $fileId The ID of the file.
- * @param Postman_Google_Comment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Comment
- */
- public function insert($fileId, Postman_Google_Service_Drive_Comment $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_Comment");
- }
-
- /**
- * Lists a file's comments. (comments.listComments)
- *
- * @param string $fileId The ID of the file.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of "nextPageToken" from the previous response.
- * @opt_param string updatedMin Only discussions that were updated after this
- * timestamp will be returned. Formatted as an RFC 3339 timestamp.
- * @opt_param bool includeDeleted If set, all comments and replies, including
- * deleted comments and replies (with content stripped) will be returned.
- * @opt_param int maxResults The maximum number of discussions to include in the
- * response, used for paging.
- * @return Postman_Google_Service_Drive_CommentList
- */
- public function listComments($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_CommentList");
- }
-
- /**
- * Updates an existing comment. This method supports patch semantics.
- * (comments.patch)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param Postman_Google_Comment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Comment
- */
- public function patch($fileId, $commentId, Postman_Google_Service_Drive_Comment $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Drive_Comment");
- }
-
- /**
- * Updates an existing comment. (comments.update)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param Postman_Google_Comment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Comment
- */
- public function update($fileId, $commentId, Postman_Google_Service_Drive_Comment $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Drive_Comment");
- }
-}
-
-/**
- * The "files" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $files = $driveService->files;
- *
- */
-class Postman_Google_Service_Drive_Files_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a copy of the specified file. (files.copy)
- *
- * @param string $fileId The ID of the file to copy.
- * @param Postman_Google_DriveFile $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool convert Whether to convert this file to the corresponding
- * Google Docs format.
- * @opt_param string ocrLanguage If ocr is true, hints at the language to use.
- * Valid values are ISO 639-1 codes.
- * @opt_param string visibility The visibility of the new file. This parameter
- * is only relevant when the source is not a native Google Doc and
- * convert=false.
- * @opt_param bool pinned Whether to pin the head revision of the new copy. A
- * file can have a maximum of 200 pinned revisions.
- * @opt_param bool ocr Whether to attempt OCR on .jpg, .png, .gif, or .pdf
- * uploads.
- * @opt_param string timedTextTrackName The timed text track name.
- * @opt_param string timedTextLanguage The language of the timed text.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function copy($fileId, Postman_Google_Service_Drive_DriveFile $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('copy', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Permanently deletes a file by ID. Skips the trash. (files.delete)
- *
- * @param string $fileId The ID of the file to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Permanently deletes all of the user's trashed files. (files.emptyTrash)
- *
- * @param array $optParams Optional parameters.
- */
- public function emptyTrash($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('emptyTrash', array($params));
- }
-
- /**
- * Gets a file's metadata by ID. (files.get)
- *
- * @param string $fileId The ID for the file in question.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool acknowledgeAbuse Whether the user is acknowledging the risk
- * of downloading known malware or other abusive files.
- * @opt_param bool updateViewedDate Whether to update the view date after
- * successfully retrieving the file.
- * @opt_param string projection This parameter is deprecated and has no
- * function.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function get($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Insert a new file. (files.insert)
- *
- * @param Postman_Google_DriveFile $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool convert Whether to convert this file to the corresponding
- * Google Docs format.
- * @opt_param bool useContentAsIndexableText Whether to use the content as
- * indexable text.
- * @opt_param string ocrLanguage If ocr is true, hints at the language to use.
- * Valid values are ISO 639-1 codes.
- * @opt_param string visibility The visibility of the new file. This parameter
- * is only relevant when convert=false.
- * @opt_param bool pinned Whether to pin the head revision of the uploaded file.
- * A file can have a maximum of 200 pinned revisions.
- * @opt_param bool ocr Whether to attempt OCR on .jpg, .png, .gif, or .pdf
- * uploads.
- * @opt_param string timedTextTrackName The timed text track name.
- * @opt_param string timedTextLanguage The language of the timed text.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function insert(Postman_Google_Service_Drive_DriveFile $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Lists the user's files. (files.listFiles)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string q Query string for searching files.
- * @opt_param string pageToken Page token for files.
- * @opt_param string corpus The body of items (files/documents) to which the
- * query applies.
- * @opt_param string projection This parameter is deprecated and has no
- * function.
- * @opt_param int maxResults Maximum number of files to return.
- * @return Postman_Google_Service_Drive_FileList
- */
- public function listFiles($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_FileList");
- }
-
- /**
- * Updates file metadata and/or content. This method supports patch semantics.
- * (files.patch)
- *
- * @param string $fileId The ID of the file to update.
- * @param Postman_Google_DriveFile $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string addParents Comma-separated list of parent IDs to add.
- * @opt_param bool updateViewedDate Whether to update the view date after
- * successfully updating the file.
- * @opt_param string removeParents Comma-separated list of parent IDs to remove.
- * @opt_param bool setModifiedDate Whether to set the modified date with the
- * supplied modified date.
- * @opt_param bool convert Whether to convert this file to the corresponding
- * Google Docs format.
- * @opt_param bool useContentAsIndexableText Whether to use the content as
- * indexable text.
- * @opt_param string ocrLanguage If ocr is true, hints at the language to use.
- * Valid values are ISO 639-1 codes.
- * @opt_param bool pinned Whether to pin the new revision. A file can have a
- * maximum of 200 pinned revisions.
- * @opt_param bool newRevision Whether a blob upload should create a new
- * revision. If false, the blob data in the current head revision is replaced.
- * If true or not set, a new blob is created as head revision, and previous
- * revisions are preserved (causing increased use of the user's data storage
- * quota).
- * @opt_param bool ocr Whether to attempt OCR on .jpg, .png, .gif, or .pdf
- * uploads.
- * @opt_param string timedTextLanguage The language of the timed text.
- * @opt_param string timedTextTrackName The timed text track name.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function patch($fileId, Postman_Google_Service_Drive_DriveFile $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Set the file's updated time to the current server time. (files.touch)
- *
- * @param string $fileId The ID of the file to update.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function touch($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('touch', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Moves a file to the trash. (files.trash)
- *
- * @param string $fileId The ID of the file to trash.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function trash($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('trash', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Restores a file from the trash. (files.untrash)
- *
- * @param string $fileId The ID of the file to untrash.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function untrash($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('untrash', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Updates file metadata and/or content. (files.update)
- *
- * @param string $fileId The ID of the file to update.
- * @param Postman_Google_DriveFile $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string addParents Comma-separated list of parent IDs to add.
- * @opt_param bool updateViewedDate Whether to update the view date after
- * successfully updating the file.
- * @opt_param string removeParents Comma-separated list of parent IDs to remove.
- * @opt_param bool setModifiedDate Whether to set the modified date with the
- * supplied modified date.
- * @opt_param bool convert Whether to convert this file to the corresponding
- * Google Docs format.
- * @opt_param bool useContentAsIndexableText Whether to use the content as
- * indexable text.
- * @opt_param string ocrLanguage If ocr is true, hints at the language to use.
- * Valid values are ISO 639-1 codes.
- * @opt_param bool pinned Whether to pin the new revision. A file can have a
- * maximum of 200 pinned revisions.
- * @opt_param bool newRevision Whether a blob upload should create a new
- * revision. If false, the blob data in the current head revision is replaced.
- * If true or not set, a new blob is created as head revision, and previous
- * revisions are preserved (causing increased use of the user's data storage
- * quota).
- * @opt_param bool ocr Whether to attempt OCR on .jpg, .png, .gif, or .pdf
- * uploads.
- * @opt_param string timedTextLanguage The language of the timed text.
- * @opt_param string timedTextTrackName The timed text track name.
- * @return Postman_Google_Service_Drive_DriveFile
- */
- public function update($fileId, Postman_Google_Service_Drive_DriveFile $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Drive_DriveFile");
- }
-
- /**
- * Subscribe to changes on a file (files.watch)
- *
- * @param string $fileId The ID for the file in question.
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool acknowledgeAbuse Whether the user is acknowledging the risk
- * of downloading known malware or other abusive files.
- * @opt_param bool updateViewedDate Whether to update the view date after
- * successfully retrieving the file.
- * @opt_param string projection This parameter is deprecated and has no
- * function.
- * @return Postman_Google_Service_Drive_Channel
- */
- public function watch($fileId, Postman_Google_Service_Drive_Channel $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Drive_Channel");
- }
-}
-
-/**
- * The "parents" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $parents = $driveService->parents;
- *
- */
-class Postman_Google_Service_Drive_Parents_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a parent from a file. (parents.delete)
- *
- * @param string $fileId The ID of the file.
- * @param string $parentId The ID of the parent.
- * @param array $optParams Optional parameters.
- */
- public function delete($fileId, $parentId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'parentId' => $parentId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a specific parent reference. (parents.get)
- *
- * @param string $fileId The ID of the file.
- * @param string $parentId The ID of the parent.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_ParentReference
- */
- public function get($fileId, $parentId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'parentId' => $parentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_ParentReference");
- }
-
- /**
- * Adds a parent folder for a file. (parents.insert)
- *
- * @param string $fileId The ID of the file.
- * @param Postman_Google_ParentReference $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_ParentReference
- */
- public function insert($fileId, Postman_Google_Service_Drive_ParentReference $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_ParentReference");
- }
-
- /**
- * Lists a file's parents. (parents.listParents)
- *
- * @param string $fileId The ID of the file.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_ParentList
- */
- public function listParents($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_ParentList");
- }
-}
-
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $permissions = $driveService->permissions;
- *
- */
-class Postman_Google_Service_Drive_Permissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a permission from a file. (permissions.delete)
- *
- * @param string $fileId The ID for the file.
- * @param string $permissionId The ID for the permission.
- * @param array $optParams Optional parameters.
- */
- public function delete($fileId, $permissionId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'permissionId' => $permissionId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a permission by ID. (permissions.get)
- *
- * @param string $fileId The ID for the file.
- * @param string $permissionId The ID for the permission.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Permission
- */
- public function get($fileId, $permissionId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'permissionId' => $permissionId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_Permission");
- }
-
- /**
- * Returns the permission ID for an email address. (permissions.getIdForEmail)
- *
- * @param string $email The email address for which to return a permission ID
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_PermissionId
- */
- public function getIdForEmail($email, $optParams = array())
- {
- $params = array('email' => $email);
- $params = array_merge($params, $optParams);
- return $this->call('getIdForEmail', array($params), "Postman_Google_Service_Drive_PermissionId");
- }
-
- /**
- * Inserts a permission for a file. (permissions.insert)
- *
- * @param string $fileId The ID for the file.
- * @param Postman_Google_Permission $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string emailMessage A custom message to include in notification
- * emails.
- * @opt_param bool sendNotificationEmails Whether to send notification emails
- * when sharing to users or groups. This parameter is ignored and an email is
- * sent if the role is owner.
- * @return Postman_Google_Service_Drive_Permission
- */
- public function insert($fileId, Postman_Google_Service_Drive_Permission $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_Permission");
- }
-
- /**
- * Lists a file's permissions. (permissions.listPermissions)
- *
- * @param string $fileId The ID for the file.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_PermissionList
- */
- public function listPermissions($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_PermissionList");
- }
-
- /**
- * Updates a permission. This method supports patch semantics.
- * (permissions.patch)
- *
- * @param string $fileId The ID for the file.
- * @param string $permissionId The ID for the permission.
- * @param Postman_Google_Permission $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool transferOwnership Whether changing a role to 'owner' should
- * also downgrade the current owners to writers.
- * @return Postman_Google_Service_Drive_Permission
- */
- public function patch($fileId, $permissionId, Postman_Google_Service_Drive_Permission $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'permissionId' => $permissionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Drive_Permission");
- }
-
- /**
- * Updates a permission. (permissions.update)
- *
- * @param string $fileId The ID for the file.
- * @param string $permissionId The ID for the permission.
- * @param Postman_Google_Permission $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool transferOwnership Whether changing a role to 'owner' should
- * also downgrade the current owners to writers.
- * @return Postman_Google_Service_Drive_Permission
- */
- public function update($fileId, $permissionId, Postman_Google_Service_Drive_Permission $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'permissionId' => $permissionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Drive_Permission");
- }
-}
-
-/**
- * The "properties" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $properties = $driveService->properties;
- *
- */
-class Postman_Google_Service_Drive_Properties_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a property. (properties.delete)
- *
- * @param string $fileId The ID of the file.
- * @param string $propertyKey The key of the property.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string visibility The visibility of the property.
- */
- public function delete($fileId, $propertyKey, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'propertyKey' => $propertyKey);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a property by its key. (properties.get)
- *
- * @param string $fileId The ID of the file.
- * @param string $propertyKey The key of the property.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string visibility The visibility of the property.
- * @return Postman_Google_Service_Drive_Property
- */
- public function get($fileId, $propertyKey, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'propertyKey' => $propertyKey);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_Property");
- }
-
- /**
- * Adds a property to a file. (properties.insert)
- *
- * @param string $fileId The ID of the file.
- * @param Postman_Google_Property $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Property
- */
- public function insert($fileId, Postman_Google_Service_Drive_Property $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_Property");
- }
-
- /**
- * Lists a file's properties. (properties.listProperties)
- *
- * @param string $fileId The ID of the file.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_PropertyList
- */
- public function listProperties($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_PropertyList");
- }
-
- /**
- * Updates a property. This method supports patch semantics. (properties.patch)
- *
- * @param string $fileId The ID of the file.
- * @param string $propertyKey The key of the property.
- * @param Postman_Google_Property $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string visibility The visibility of the property.
- * @return Postman_Google_Service_Drive_Property
- */
- public function patch($fileId, $propertyKey, Postman_Google_Service_Drive_Property $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'propertyKey' => $propertyKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Drive_Property");
- }
-
- /**
- * Updates a property. (properties.update)
- *
- * @param string $fileId The ID of the file.
- * @param string $propertyKey The key of the property.
- * @param Postman_Google_Property $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string visibility The visibility of the property.
- * @return Postman_Google_Service_Drive_Property
- */
- public function update($fileId, $propertyKey, Postman_Google_Service_Drive_Property $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'propertyKey' => $propertyKey, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Drive_Property");
- }
-}
-
-/**
- * The "realtime" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $realtime = $driveService->realtime;
- *
- */
-class Postman_Google_Service_Drive_Realtime_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Exports the contents of the Realtime API data model associated with this file
- * as JSON. (realtime.get)
- *
- * @param string $fileId The ID of the file that the Realtime API data model is
- * associated with.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int revision The revision of the Realtime API data model to
- * export. Revisions start at 1 (the initial empty data model) and are
- * incremented with each change. If this parameter is excluded, the most recent
- * data model will be returned.
- */
- public function get($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params));
- }
-
- /**
- * Overwrites the Realtime API data model associated with this file with the
- * provided JSON data model. (realtime.update)
- *
- * @param string $fileId The ID of the file that the Realtime API data model is
- * associated with.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string baseRevision The revision of the model to diff the uploaded
- * model against. If set, the uploaded model is diffed against the provided
- * revision and those differences are merged with any changes made to the model
- * after the provided revision. If not set, the uploaded model replaces the
- * current model on the server.
- */
- public function update($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params));
- }
-}
-
-/**
- * The "replies" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $replies = $driveService->replies;
- *
- */
-class Postman_Google_Service_Drive_Replies_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a reply. (replies.delete)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param string $replyId The ID of the reply.
- * @param array $optParams Optional parameters.
- */
- public function delete($fileId, $commentId, $replyId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a reply. (replies.get)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param string $replyId The ID of the reply.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool includeDeleted If set, this will succeed when retrieving a
- * deleted reply.
- * @return Postman_Google_Service_Drive_CommentReply
- */
- public function get($fileId, $commentId, $replyId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_CommentReply");
- }
-
- /**
- * Creates a new reply to the given comment. (replies.insert)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param Postman_Google_CommentReply $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_CommentReply
- */
- public function insert($fileId, $commentId, Postman_Google_Service_Drive_CommentReply $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Drive_CommentReply");
- }
-
- /**
- * Lists all of the replies to a comment. (replies.listReplies)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of "nextPageToken" from the previous response.
- * @opt_param bool includeDeleted If set, all replies, including deleted replies
- * (with content stripped) will be returned.
- * @opt_param int maxResults The maximum number of replies to include in the
- * response, used for paging.
- * @return Postman_Google_Service_Drive_CommentReplyList
- */
- public function listReplies($fileId, $commentId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_CommentReplyList");
- }
-
- /**
- * Updates an existing reply. This method supports patch semantics.
- * (replies.patch)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param string $replyId The ID of the reply.
- * @param Postman_Google_CommentReply $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_CommentReply
- */
- public function patch($fileId, $commentId, $replyId, Postman_Google_Service_Drive_CommentReply $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Drive_CommentReply");
- }
-
- /**
- * Updates an existing reply. (replies.update)
- *
- * @param string $fileId The ID of the file.
- * @param string $commentId The ID of the comment.
- * @param string $replyId The ID of the reply.
- * @param Postman_Google_CommentReply $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_CommentReply
- */
- public function update($fileId, $commentId, $replyId, Postman_Google_Service_Drive_CommentReply $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Drive_CommentReply");
- }
-}
-
-/**
- * The "revisions" collection of methods.
- * Typical usage is:
- *
- * $driveService = new Postman_Google_Service_Drive(...);
- * $revisions = $driveService->revisions;
- *
- */
-class Postman_Google_Service_Drive_Revisions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a revision. (revisions.delete)
- *
- * @param string $fileId The ID of the file.
- * @param string $revisionId The ID of the revision.
- * @param array $optParams Optional parameters.
- */
- public function delete($fileId, $revisionId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'revisionId' => $revisionId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a specific revision. (revisions.get)
- *
- * @param string $fileId The ID of the file.
- * @param string $revisionId The ID of the revision.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Revision
- */
- public function get($fileId, $revisionId, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'revisionId' => $revisionId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Drive_Revision");
- }
-
- /**
- * Lists a file's revisions. (revisions.listRevisions)
- *
- * @param string $fileId The ID of the file.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_RevisionList
- */
- public function listRevisions($fileId, $optParams = array())
- {
- $params = array('fileId' => $fileId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Drive_RevisionList");
- }
-
- /**
- * Updates a revision. This method supports patch semantics. (revisions.patch)
- *
- * @param string $fileId The ID for the file.
- * @param string $revisionId The ID for the revision.
- * @param Postman_Google_Revision $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Revision
- */
- public function patch($fileId, $revisionId, Postman_Google_Service_Drive_Revision $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'revisionId' => $revisionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Drive_Revision");
- }
-
- /**
- * Updates a revision. (revisions.update)
- *
- * @param string $fileId The ID for the file.
- * @param string $revisionId The ID for the revision.
- * @param Postman_Google_Revision $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Drive_Revision
- */
- public function update($fileId, $revisionId, Postman_Google_Service_Drive_Revision $postBody, $optParams = array())
- {
- $params = array('fileId' => $fileId, 'revisionId' => $revisionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Drive_Revision");
- }
-}
-
-
-
-
-class Postman_Google_Service_Drive_About extends Postman_Google_Collection
-{
- protected $collection_key = 'quotaBytesByService';
- protected $internal_gapi_mappings = array(
- );
- protected $additionalRoleInfoType = 'Postman_Google_Service_Drive_AboutAdditionalRoleInfo';
- protected $additionalRoleInfoDataType = 'array';
- public $domainSharingPolicy;
- public $etag;
- protected $exportFormatsType = 'Postman_Google_Service_Drive_AboutExportFormats';
- protected $exportFormatsDataType = 'array';
- protected $featuresType = 'Postman_Google_Service_Drive_AboutFeatures';
- protected $featuresDataType = 'array';
- protected $importFormatsType = 'Postman_Google_Service_Drive_AboutImportFormats';
- protected $importFormatsDataType = 'array';
- public $isCurrentAppInstalled;
- public $kind;
- public $languageCode;
- public $largestChangeId;
- protected $maxUploadSizesType = 'Postman_Google_Service_Drive_AboutMaxUploadSizes';
- protected $maxUploadSizesDataType = 'array';
- public $name;
- public $permissionId;
- protected $quotaBytesByServiceType = 'Postman_Google_Service_Drive_AboutQuotaBytesByService';
- protected $quotaBytesByServiceDataType = 'array';
- public $quotaBytesTotal;
- public $quotaBytesUsed;
- public $quotaBytesUsedAggregate;
- public $quotaBytesUsedInTrash;
- public $quotaType;
- public $remainingChangeIds;
- public $rootFolderId;
- public $selfLink;
- protected $userType = 'Postman_Google_Service_Drive_User';
- protected $userDataType = '';
-
-
- public function setAdditionalRoleInfo($additionalRoleInfo)
- {
- $this->additionalRoleInfo = $additionalRoleInfo;
- }
- public function getAdditionalRoleInfo()
- {
- return $this->additionalRoleInfo;
- }
- public function setDomainSharingPolicy($domainSharingPolicy)
- {
- $this->domainSharingPolicy = $domainSharingPolicy;
- }
- public function getDomainSharingPolicy()
- {
- return $this->domainSharingPolicy;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExportFormats($exportFormats)
- {
- $this->exportFormats = $exportFormats;
- }
- public function getExportFormats()
- {
- return $this->exportFormats;
- }
- public function setFeatures($features)
- {
- $this->features = $features;
- }
- public function getFeatures()
- {
- return $this->features;
- }
- public function setImportFormats($importFormats)
- {
- $this->importFormats = $importFormats;
- }
- public function getImportFormats()
- {
- return $this->importFormats;
- }
- public function setIsCurrentAppInstalled($isCurrentAppInstalled)
- {
- $this->isCurrentAppInstalled = $isCurrentAppInstalled;
- }
- public function getIsCurrentAppInstalled()
- {
- return $this->isCurrentAppInstalled;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLanguageCode($languageCode)
- {
- $this->languageCode = $languageCode;
- }
- public function getLanguageCode()
- {
- return $this->languageCode;
- }
- public function setLargestChangeId($largestChangeId)
- {
- $this->largestChangeId = $largestChangeId;
- }
- public function getLargestChangeId()
- {
- return $this->largestChangeId;
- }
- public function setMaxUploadSizes($maxUploadSizes)
- {
- $this->maxUploadSizes = $maxUploadSizes;
- }
- public function getMaxUploadSizes()
- {
- return $this->maxUploadSizes;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPermissionId($permissionId)
- {
- $this->permissionId = $permissionId;
- }
- public function getPermissionId()
- {
- return $this->permissionId;
- }
- public function setQuotaBytesByService($quotaBytesByService)
- {
- $this->quotaBytesByService = $quotaBytesByService;
- }
- public function getQuotaBytesByService()
- {
- return $this->quotaBytesByService;
- }
- public function setQuotaBytesTotal($quotaBytesTotal)
- {
- $this->quotaBytesTotal = $quotaBytesTotal;
- }
- public function getQuotaBytesTotal()
- {
- return $this->quotaBytesTotal;
- }
- public function setQuotaBytesUsed($quotaBytesUsed)
- {
- $this->quotaBytesUsed = $quotaBytesUsed;
- }
- public function getQuotaBytesUsed()
- {
- return $this->quotaBytesUsed;
- }
- public function setQuotaBytesUsedAggregate($quotaBytesUsedAggregate)
- {
- $this->quotaBytesUsedAggregate = $quotaBytesUsedAggregate;
- }
- public function getQuotaBytesUsedAggregate()
- {
- return $this->quotaBytesUsedAggregate;
- }
- public function setQuotaBytesUsedInTrash($quotaBytesUsedInTrash)
- {
- $this->quotaBytesUsedInTrash = $quotaBytesUsedInTrash;
- }
- public function getQuotaBytesUsedInTrash()
- {
- return $this->quotaBytesUsedInTrash;
- }
- public function setQuotaType($quotaType)
- {
- $this->quotaType = $quotaType;
- }
- public function getQuotaType()
- {
- return $this->quotaType;
- }
- public function setRemainingChangeIds($remainingChangeIds)
- {
- $this->remainingChangeIds = $remainingChangeIds;
- }
- public function getRemainingChangeIds()
- {
- return $this->remainingChangeIds;
- }
- public function setRootFolderId($rootFolderId)
- {
- $this->rootFolderId = $rootFolderId;
- }
- public function getRootFolderId()
- {
- return $this->rootFolderId;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUser(Postman_Google_Service_Drive_User $user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
-}
-
-class Postman_Google_Service_Drive_AboutAdditionalRoleInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'roleSets';
- protected $internal_gapi_mappings = array(
- );
- protected $roleSetsType = 'Postman_Google_Service_Drive_AboutAdditionalRoleInfoRoleSets';
- protected $roleSetsDataType = 'array';
- public $type;
-
-
- public function setRoleSets($roleSets)
- {
- $this->roleSets = $roleSets;
- }
- public function getRoleSets()
- {
- return $this->roleSets;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Drive_AboutAdditionalRoleInfoRoleSets extends Postman_Google_Collection
-{
- protected $collection_key = 'additionalRoles';
- protected $internal_gapi_mappings = array(
- );
- public $additionalRoles;
- public $primaryRole;
-
-
- public function setAdditionalRoles($additionalRoles)
- {
- $this->additionalRoles = $additionalRoles;
- }
- public function getAdditionalRoles()
- {
- return $this->additionalRoles;
- }
- public function setPrimaryRole($primaryRole)
- {
- $this->primaryRole = $primaryRole;
- }
- public function getPrimaryRole()
- {
- return $this->primaryRole;
- }
-}
-
-class Postman_Google_Service_Drive_AboutExportFormats extends Postman_Google_Collection
-{
- protected $collection_key = 'targets';
- protected $internal_gapi_mappings = array(
- );
- public $source;
- public $targets;
-
-
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setTargets($targets)
- {
- $this->targets = $targets;
- }
- public function getTargets()
- {
- return $this->targets;
- }
-}
-
-class Postman_Google_Service_Drive_AboutFeatures extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $featureName;
- public $featureRate;
-
-
- public function setFeatureName($featureName)
- {
- $this->featureName = $featureName;
- }
- public function getFeatureName()
- {
- return $this->featureName;
- }
- public function setFeatureRate($featureRate)
- {
- $this->featureRate = $featureRate;
- }
- public function getFeatureRate()
- {
- return $this->featureRate;
- }
-}
-
-class Postman_Google_Service_Drive_AboutImportFormats extends Postman_Google_Collection
-{
- protected $collection_key = 'targets';
- protected $internal_gapi_mappings = array(
- );
- public $source;
- public $targets;
-
-
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setTargets($targets)
- {
- $this->targets = $targets;
- }
- public function getTargets()
- {
- return $this->targets;
- }
-}
-
-class Postman_Google_Service_Drive_AboutMaxUploadSizes extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $size;
- public $type;
-
-
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Drive_AboutQuotaBytesByService extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bytesUsed;
- public $serviceName;
-
-
- public function setBytesUsed($bytesUsed)
- {
- $this->bytesUsed = $bytesUsed;
- }
- public function getBytesUsed()
- {
- return $this->bytesUsed;
- }
- public function setServiceName($serviceName)
- {
- $this->serviceName = $serviceName;
- }
- public function getServiceName()
- {
- return $this->serviceName;
- }
-}
-
-class Postman_Google_Service_Drive_App extends Postman_Google_Collection
-{
- protected $collection_key = 'secondaryMimeTypes';
- protected $internal_gapi_mappings = array(
- );
- public $authorized;
- public $createInFolderTemplate;
- public $createUrl;
- public $hasDriveWideScope;
- protected $iconsType = 'Postman_Google_Service_Drive_AppIcons';
- protected $iconsDataType = 'array';
- public $id;
- public $installed;
- public $kind;
- public $longDescription;
- public $name;
- public $objectType;
- public $openUrlTemplate;
- public $primaryFileExtensions;
- public $primaryMimeTypes;
- public $productId;
- public $productUrl;
- public $secondaryFileExtensions;
- public $secondaryMimeTypes;
- public $shortDescription;
- public $supportsCreate;
- public $supportsImport;
- public $supportsMultiOpen;
- public $supportsOfflineCreate;
- public $useByDefault;
-
-
- public function setAuthorized($authorized)
- {
- $this->authorized = $authorized;
- }
- public function getAuthorized()
- {
- return $this->authorized;
- }
- public function setCreateInFolderTemplate($createInFolderTemplate)
- {
- $this->createInFolderTemplate = $createInFolderTemplate;
- }
- public function getCreateInFolderTemplate()
- {
- return $this->createInFolderTemplate;
- }
- public function setCreateUrl($createUrl)
- {
- $this->createUrl = $createUrl;
- }
- public function getCreateUrl()
- {
- return $this->createUrl;
- }
- public function setHasDriveWideScope($hasDriveWideScope)
- {
- $this->hasDriveWideScope = $hasDriveWideScope;
- }
- public function getHasDriveWideScope()
- {
- return $this->hasDriveWideScope;
- }
- public function setIcons($icons)
- {
- $this->icons = $icons;
- }
- public function getIcons()
- {
- return $this->icons;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInstalled($installed)
- {
- $this->installed = $installed;
- }
- public function getInstalled()
- {
- return $this->installed;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLongDescription($longDescription)
- {
- $this->longDescription = $longDescription;
- }
- public function getLongDescription()
- {
- return $this->longDescription;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOpenUrlTemplate($openUrlTemplate)
- {
- $this->openUrlTemplate = $openUrlTemplate;
- }
- public function getOpenUrlTemplate()
- {
- return $this->openUrlTemplate;
- }
- public function setPrimaryFileExtensions($primaryFileExtensions)
- {
- $this->primaryFileExtensions = $primaryFileExtensions;
- }
- public function getPrimaryFileExtensions()
- {
- return $this->primaryFileExtensions;
- }
- public function setPrimaryMimeTypes($primaryMimeTypes)
- {
- $this->primaryMimeTypes = $primaryMimeTypes;
- }
- public function getPrimaryMimeTypes()
- {
- return $this->primaryMimeTypes;
- }
- public function setProductId($productId)
- {
- $this->productId = $productId;
- }
- public function getProductId()
- {
- return $this->productId;
- }
- public function setProductUrl($productUrl)
- {
- $this->productUrl = $productUrl;
- }
- public function getProductUrl()
- {
- return $this->productUrl;
- }
- public function setSecondaryFileExtensions($secondaryFileExtensions)
- {
- $this->secondaryFileExtensions = $secondaryFileExtensions;
- }
- public function getSecondaryFileExtensions()
- {
- return $this->secondaryFileExtensions;
- }
- public function setSecondaryMimeTypes($secondaryMimeTypes)
- {
- $this->secondaryMimeTypes = $secondaryMimeTypes;
- }
- public function getSecondaryMimeTypes()
- {
- return $this->secondaryMimeTypes;
- }
- public function setShortDescription($shortDescription)
- {
- $this->shortDescription = $shortDescription;
- }
- public function getShortDescription()
- {
- return $this->shortDescription;
- }
- public function setSupportsCreate($supportsCreate)
- {
- $this->supportsCreate = $supportsCreate;
- }
- public function getSupportsCreate()
- {
- return $this->supportsCreate;
- }
- public function setSupportsImport($supportsImport)
- {
- $this->supportsImport = $supportsImport;
- }
- public function getSupportsImport()
- {
- return $this->supportsImport;
- }
- public function setSupportsMultiOpen($supportsMultiOpen)
- {
- $this->supportsMultiOpen = $supportsMultiOpen;
- }
- public function getSupportsMultiOpen()
- {
- return $this->supportsMultiOpen;
- }
- public function setSupportsOfflineCreate($supportsOfflineCreate)
- {
- $this->supportsOfflineCreate = $supportsOfflineCreate;
- }
- public function getSupportsOfflineCreate()
- {
- return $this->supportsOfflineCreate;
- }
- public function setUseByDefault($useByDefault)
- {
- $this->useByDefault = $useByDefault;
- }
- public function getUseByDefault()
- {
- return $this->useByDefault;
- }
-}
-
-class Postman_Google_Service_Drive_AppIcons extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $category;
- public $iconUrl;
- public $size;
-
-
- public function setCategory($category)
- {
- $this->category = $category;
- }
- public function getCategory()
- {
- return $this->category;
- }
- public function setIconUrl($iconUrl)
- {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl()
- {
- return $this->iconUrl;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
-}
-
-class Postman_Google_Service_Drive_AppList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $defaultAppIds;
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_App';
- protected $itemsDataType = 'array';
- public $kind;
- public $selfLink;
-
-
- public function setDefaultAppIds($defaultAppIds)
- {
- $this->defaultAppIds = $defaultAppIds;
- }
- public function getDefaultAppIds()
- {
- return $this->defaultAppIds;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_Change extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deleted;
- protected $fileType = 'Postman_Google_Service_Drive_DriveFile';
- protected $fileDataType = '';
- public $fileId;
- public $id;
- public $kind;
- public $modificationDate;
- public $selfLink;
-
-
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setFile(Postman_Google_Service_Drive_DriveFile $file)
- {
- $this->file = $file;
- }
- public function getFile()
- {
- return $this->file;
- }
- public function setFileId($fileId)
- {
- $this->fileId = $fileId;
- }
- public function getFileId()
- {
- return $this->fileId;
- }
- 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 setModificationDate($modificationDate)
- {
- $this->modificationDate = $modificationDate;
- }
- public function getModificationDate()
- {
- return $this->modificationDate;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_ChangeList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_Change';
- protected $itemsDataType = 'array';
- public $kind;
- public $largestChangeId;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLargestChangeId($largestChangeId)
- {
- $this->largestChangeId = $largestChangeId;
- }
- public function getLargestChangeId()
- {
- return $this->largestChangeId;
- }
- public function setNextLink($nextLink)
- {
- $this->nextLink = $nextLink;
- }
- public function getNextLink()
- {
- return $this->nextLink;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $expiration;
- public $id;
- public $kind;
- public $params;
- public $payload;
- public $resourceId;
- public $resourceUri;
- public $token;
- public $type;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setExpiration($expiration)
- {
- $this->expiration = $expiration;
- }
- public function getExpiration()
- {
- return $this->expiration;
- }
- 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 setParams($params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setResourceId($resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setResourceUri($resourceUri)
- {
- $this->resourceUri = $resourceUri;
- }
- public function getResourceUri()
- {
- return $this->resourceUri;
- }
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Drive_ChannelParams extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Drive_ChildList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_ChildReference';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_ChildReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $childLink;
- public $id;
- public $kind;
- public $selfLink;
-
-
- public function setChildLink($childLink)
- {
- $this->childLink = $childLink;
- }
- public function getChildLink()
- {
- return $this->childLink;
- }
- 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 setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_Comment extends Postman_Google_Collection
-{
- protected $collection_key = 'replies';
- protected $internal_gapi_mappings = array(
- );
- public $anchor;
- protected $authorType = 'Postman_Google_Service_Drive_User';
- protected $authorDataType = '';
- public $commentId;
- public $content;
- protected $contextType = 'Postman_Google_Service_Drive_CommentContext';
- protected $contextDataType = '';
- public $createdDate;
- public $deleted;
- public $fileId;
- public $fileTitle;
- public $htmlContent;
- public $kind;
- public $modifiedDate;
- protected $repliesType = 'Postman_Google_Service_Drive_CommentReply';
- protected $repliesDataType = 'array';
- public $selfLink;
- public $status;
-
-
- public function setAnchor($anchor)
- {
- $this->anchor = $anchor;
- }
- public function getAnchor()
- {
- return $this->anchor;
- }
- public function setAuthor(Postman_Google_Service_Drive_User $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setCommentId($commentId)
- {
- $this->commentId = $commentId;
- }
- public function getCommentId()
- {
- return $this->commentId;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setContext(Postman_Google_Service_Drive_CommentContext $context)
- {
- $this->context = $context;
- }
- public function getContext()
- {
- return $this->context;
- }
- public function setCreatedDate($createdDate)
- {
- $this->createdDate = $createdDate;
- }
- public function getCreatedDate()
- {
- return $this->createdDate;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setFileId($fileId)
- {
- $this->fileId = $fileId;
- }
- public function getFileId()
- {
- return $this->fileId;
- }
- public function setFileTitle($fileTitle)
- {
- $this->fileTitle = $fileTitle;
- }
- public function getFileTitle()
- {
- return $this->fileTitle;
- }
- public function setHtmlContent($htmlContent)
- {
- $this->htmlContent = $htmlContent;
- }
- public function getHtmlContent()
- {
- return $this->htmlContent;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setModifiedDate($modifiedDate)
- {
- $this->modifiedDate = $modifiedDate;
- }
- public function getModifiedDate()
- {
- return $this->modifiedDate;
- }
- public function setReplies($replies)
- {
- $this->replies = $replies;
- }
- public function getReplies()
- {
- return $this->replies;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Drive_CommentContext extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Drive_CommentList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Drive_Comment';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_CommentReply extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $authorType = 'Postman_Google_Service_Drive_User';
- protected $authorDataType = '';
- public $content;
- public $createdDate;
- public $deleted;
- public $htmlContent;
- public $kind;
- public $modifiedDate;
- public $replyId;
- public $verb;
-
-
- public function setAuthor(Postman_Google_Service_Drive_User $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setCreatedDate($createdDate)
- {
- $this->createdDate = $createdDate;
- }
- public function getCreatedDate()
- {
- return $this->createdDate;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setHtmlContent($htmlContent)
- {
- $this->htmlContent = $htmlContent;
- }
- public function getHtmlContent()
- {
- return $this->htmlContent;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setModifiedDate($modifiedDate)
- {
- $this->modifiedDate = $modifiedDate;
- }
- public function getModifiedDate()
- {
- return $this->modifiedDate;
- }
- public function setReplyId($replyId)
- {
- $this->replyId = $replyId;
- }
- public function getReplyId()
- {
- return $this->replyId;
- }
- public function setVerb($verb)
- {
- $this->verb = $verb;
- }
- public function getVerb()
- {
- return $this->verb;
- }
-}
-
-class Postman_Google_Service_Drive_CommentReplyList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Drive_CommentReply';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFile extends Postman_Google_Collection
-{
- protected $collection_key = 'properties';
- protected $internal_gapi_mappings = array(
- );
- public $alternateLink;
- public $appDataContents;
- public $copyable;
- public $createdDate;
- public $defaultOpenWithLink;
- public $description;
- public $downloadUrl;
- public $editable;
- public $embedLink;
- public $etag;
- public $explicitlyTrashed;
- public $exportLinks;
- public $fileExtension;
- public $fileSize;
- public $headRevisionId;
- public $iconLink;
- public $id;
- protected $imageMediaMetadataType = 'Postman_Google_Service_Drive_DriveFileImageMediaMetadata';
- protected $imageMediaMetadataDataType = '';
- protected $indexableTextType = 'Postman_Google_Service_Drive_DriveFileIndexableText';
- protected $indexableTextDataType = '';
- public $kind;
- protected $labelsType = 'Postman_Google_Service_Drive_DriveFileLabels';
- protected $labelsDataType = '';
- protected $lastModifyingUserType = 'Postman_Google_Service_Drive_User';
- protected $lastModifyingUserDataType = '';
- public $lastModifyingUserName;
- public $lastViewedByMeDate;
- public $markedViewedByMeDate;
- public $md5Checksum;
- public $mimeType;
- public $modifiedByMeDate;
- public $modifiedDate;
- public $openWithLinks;
- public $originalFilename;
- public $ownerNames;
- protected $ownersType = 'Postman_Google_Service_Drive_User';
- protected $ownersDataType = 'array';
- protected $parentsType = 'Postman_Google_Service_Drive_ParentReference';
- protected $parentsDataType = 'array';
- protected $permissionsType = 'Postman_Google_Service_Drive_Permission';
- protected $permissionsDataType = 'array';
- protected $propertiesType = 'Postman_Google_Service_Drive_Property';
- protected $propertiesDataType = 'array';
- public $quotaBytesUsed;
- public $selfLink;
- public $shared;
- public $sharedWithMeDate;
- protected $sharingUserType = 'Postman_Google_Service_Drive_User';
- protected $sharingUserDataType = '';
- protected $thumbnailType = 'Postman_Google_Service_Drive_DriveFileThumbnail';
- protected $thumbnailDataType = '';
- public $thumbnailLink;
- public $title;
- protected $userPermissionType = 'Postman_Google_Service_Drive_Permission';
- protected $userPermissionDataType = '';
- public $version;
- protected $videoMediaMetadataType = 'Postman_Google_Service_Drive_DriveFileVideoMediaMetadata';
- protected $videoMediaMetadataDataType = '';
- public $webContentLink;
- public $webViewLink;
- public $writersCanShare;
-
-
- public function setAlternateLink($alternateLink)
- {
- $this->alternateLink = $alternateLink;
- }
- public function getAlternateLink()
- {
- return $this->alternateLink;
- }
- public function setAppDataContents($appDataContents)
- {
- $this->appDataContents = $appDataContents;
- }
- public function getAppDataContents()
- {
- return $this->appDataContents;
- }
- public function setCopyable($copyable)
- {
- $this->copyable = $copyable;
- }
- public function getCopyable()
- {
- return $this->copyable;
- }
- public function setCreatedDate($createdDate)
- {
- $this->createdDate = $createdDate;
- }
- public function getCreatedDate()
- {
- return $this->createdDate;
- }
- public function setDefaultOpenWithLink($defaultOpenWithLink)
- {
- $this->defaultOpenWithLink = $defaultOpenWithLink;
- }
- public function getDefaultOpenWithLink()
- {
- return $this->defaultOpenWithLink;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDownloadUrl($downloadUrl)
- {
- $this->downloadUrl = $downloadUrl;
- }
- public function getDownloadUrl()
- {
- return $this->downloadUrl;
- }
- public function setEditable($editable)
- {
- $this->editable = $editable;
- }
- public function getEditable()
- {
- return $this->editable;
- }
- public function setEmbedLink($embedLink)
- {
- $this->embedLink = $embedLink;
- }
- public function getEmbedLink()
- {
- return $this->embedLink;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExplicitlyTrashed($explicitlyTrashed)
- {
- $this->explicitlyTrashed = $explicitlyTrashed;
- }
- public function getExplicitlyTrashed()
- {
- return $this->explicitlyTrashed;
- }
- public function setExportLinks($exportLinks)
- {
- $this->exportLinks = $exportLinks;
- }
- public function getExportLinks()
- {
- return $this->exportLinks;
- }
- public function setFileExtension($fileExtension)
- {
- $this->fileExtension = $fileExtension;
- }
- public function getFileExtension()
- {
- return $this->fileExtension;
- }
- public function setFileSize($fileSize)
- {
- $this->fileSize = $fileSize;
- }
- public function getFileSize()
- {
- return $this->fileSize;
- }
- public function setHeadRevisionId($headRevisionId)
- {
- $this->headRevisionId = $headRevisionId;
- }
- public function getHeadRevisionId()
- {
- return $this->headRevisionId;
- }
- public function setIconLink($iconLink)
- {
- $this->iconLink = $iconLink;
- }
- public function getIconLink()
- {
- return $this->iconLink;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImageMediaMetadata(Postman_Google_Service_Drive_DriveFileImageMediaMetadata $imageMediaMetadata)
- {
- $this->imageMediaMetadata = $imageMediaMetadata;
- }
- public function getImageMediaMetadata()
- {
- return $this->imageMediaMetadata;
- }
- public function setIndexableText(Postman_Google_Service_Drive_DriveFileIndexableText $indexableText)
- {
- $this->indexableText = $indexableText;
- }
- public function getIndexableText()
- {
- return $this->indexableText;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLabels(Postman_Google_Service_Drive_DriveFileLabels $labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
- public function setLastModifyingUser(Postman_Google_Service_Drive_User $lastModifyingUser)
- {
- $this->lastModifyingUser = $lastModifyingUser;
- }
- public function getLastModifyingUser()
- {
- return $this->lastModifyingUser;
- }
- public function setLastModifyingUserName($lastModifyingUserName)
- {
- $this->lastModifyingUserName = $lastModifyingUserName;
- }
- public function getLastModifyingUserName()
- {
- return $this->lastModifyingUserName;
- }
- public function setLastViewedByMeDate($lastViewedByMeDate)
- {
- $this->lastViewedByMeDate = $lastViewedByMeDate;
- }
- public function getLastViewedByMeDate()
- {
- return $this->lastViewedByMeDate;
- }
- public function setMarkedViewedByMeDate($markedViewedByMeDate)
- {
- $this->markedViewedByMeDate = $markedViewedByMeDate;
- }
- public function getMarkedViewedByMeDate()
- {
- return $this->markedViewedByMeDate;
- }
- public function setMd5Checksum($md5Checksum)
- {
- $this->md5Checksum = $md5Checksum;
- }
- public function getMd5Checksum()
- {
- return $this->md5Checksum;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setModifiedByMeDate($modifiedByMeDate)
- {
- $this->modifiedByMeDate = $modifiedByMeDate;
- }
- public function getModifiedByMeDate()
- {
- return $this->modifiedByMeDate;
- }
- public function setModifiedDate($modifiedDate)
- {
- $this->modifiedDate = $modifiedDate;
- }
- public function getModifiedDate()
- {
- return $this->modifiedDate;
- }
- public function setOpenWithLinks($openWithLinks)
- {
- $this->openWithLinks = $openWithLinks;
- }
- public function getOpenWithLinks()
- {
- return $this->openWithLinks;
- }
- public function setOriginalFilename($originalFilename)
- {
- $this->originalFilename = $originalFilename;
- }
- public function getOriginalFilename()
- {
- return $this->originalFilename;
- }
- public function setOwnerNames($ownerNames)
- {
- $this->ownerNames = $ownerNames;
- }
- public function getOwnerNames()
- {
- return $this->ownerNames;
- }
- public function setOwners($owners)
- {
- $this->owners = $owners;
- }
- public function getOwners()
- {
- return $this->owners;
- }
- public function setParents($parents)
- {
- $this->parents = $parents;
- }
- public function getParents()
- {
- return $this->parents;
- }
- public function setPermissions($permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
- public function setProperties($properties)
- {
- $this->properties = $properties;
- }
- public function getProperties()
- {
- return $this->properties;
- }
- public function setQuotaBytesUsed($quotaBytesUsed)
- {
- $this->quotaBytesUsed = $quotaBytesUsed;
- }
- public function getQuotaBytesUsed()
- {
- return $this->quotaBytesUsed;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setShared($shared)
- {
- $this->shared = $shared;
- }
- public function getShared()
- {
- return $this->shared;
- }
- public function setSharedWithMeDate($sharedWithMeDate)
- {
- $this->sharedWithMeDate = $sharedWithMeDate;
- }
- public function getSharedWithMeDate()
- {
- return $this->sharedWithMeDate;
- }
- public function setSharingUser(Postman_Google_Service_Drive_User $sharingUser)
- {
- $this->sharingUser = $sharingUser;
- }
- public function getSharingUser()
- {
- return $this->sharingUser;
- }
- public function setThumbnail(Postman_Google_Service_Drive_DriveFileThumbnail $thumbnail)
- {
- $this->thumbnail = $thumbnail;
- }
- public function getThumbnail()
- {
- return $this->thumbnail;
- }
- public function setThumbnailLink($thumbnailLink)
- {
- $this->thumbnailLink = $thumbnailLink;
- }
- public function getThumbnailLink()
- {
- return $this->thumbnailLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUserPermission(Postman_Google_Service_Drive_Permission $userPermission)
- {
- $this->userPermission = $userPermission;
- }
- public function getUserPermission()
- {
- return $this->userPermission;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
- public function setVideoMediaMetadata(Postman_Google_Service_Drive_DriveFileVideoMediaMetadata $videoMediaMetadata)
- {
- $this->videoMediaMetadata = $videoMediaMetadata;
- }
- public function getVideoMediaMetadata()
- {
- return $this->videoMediaMetadata;
- }
- public function setWebContentLink($webContentLink)
- {
- $this->webContentLink = $webContentLink;
- }
- public function getWebContentLink()
- {
- return $this->webContentLink;
- }
- public function setWebViewLink($webViewLink)
- {
- $this->webViewLink = $webViewLink;
- }
- public function getWebViewLink()
- {
- return $this->webViewLink;
- }
- public function setWritersCanShare($writersCanShare)
- {
- $this->writersCanShare = $writersCanShare;
- }
- public function getWritersCanShare()
- {
- return $this->writersCanShare;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFileExportLinks extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Drive_DriveFileImageMediaMetadata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $aperture;
- public $cameraMake;
- public $cameraModel;
- public $colorSpace;
- public $date;
- public $exposureBias;
- public $exposureMode;
- public $exposureTime;
- public $flashUsed;
- public $focalLength;
- public $height;
- public $isoSpeed;
- public $lens;
- protected $locationType = 'Postman_Google_Service_Drive_DriveFileImageMediaMetadataLocation';
- protected $locationDataType = '';
- public $maxApertureValue;
- public $meteringMode;
- public $rotation;
- public $sensor;
- public $subjectDistance;
- public $whiteBalance;
- public $width;
-
-
- public function setAperture($aperture)
- {
- $this->aperture = $aperture;
- }
- public function getAperture()
- {
- return $this->aperture;
- }
- public function setCameraMake($cameraMake)
- {
- $this->cameraMake = $cameraMake;
- }
- public function getCameraMake()
- {
- return $this->cameraMake;
- }
- public function setCameraModel($cameraModel)
- {
- $this->cameraModel = $cameraModel;
- }
- public function getCameraModel()
- {
- return $this->cameraModel;
- }
- public function setColorSpace($colorSpace)
- {
- $this->colorSpace = $colorSpace;
- }
- public function getColorSpace()
- {
- return $this->colorSpace;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setExposureBias($exposureBias)
- {
- $this->exposureBias = $exposureBias;
- }
- public function getExposureBias()
- {
- return $this->exposureBias;
- }
- public function setExposureMode($exposureMode)
- {
- $this->exposureMode = $exposureMode;
- }
- public function getExposureMode()
- {
- return $this->exposureMode;
- }
- public function setExposureTime($exposureTime)
- {
- $this->exposureTime = $exposureTime;
- }
- public function getExposureTime()
- {
- return $this->exposureTime;
- }
- public function setFlashUsed($flashUsed)
- {
- $this->flashUsed = $flashUsed;
- }
- public function getFlashUsed()
- {
- return $this->flashUsed;
- }
- public function setFocalLength($focalLength)
- {
- $this->focalLength = $focalLength;
- }
- public function getFocalLength()
- {
- return $this->focalLength;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setIsoSpeed($isoSpeed)
- {
- $this->isoSpeed = $isoSpeed;
- }
- public function getIsoSpeed()
- {
- return $this->isoSpeed;
- }
- public function setLens($lens)
- {
- $this->lens = $lens;
- }
- public function getLens()
- {
- return $this->lens;
- }
- public function setLocation(Postman_Google_Service_Drive_DriveFileImageMediaMetadataLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMaxApertureValue($maxApertureValue)
- {
- $this->maxApertureValue = $maxApertureValue;
- }
- public function getMaxApertureValue()
- {
- return $this->maxApertureValue;
- }
- public function setMeteringMode($meteringMode)
- {
- $this->meteringMode = $meteringMode;
- }
- public function getMeteringMode()
- {
- return $this->meteringMode;
- }
- public function setRotation($rotation)
- {
- $this->rotation = $rotation;
- }
- public function getRotation()
- {
- return $this->rotation;
- }
- public function setSensor($sensor)
- {
- $this->sensor = $sensor;
- }
- public function getSensor()
- {
- return $this->sensor;
- }
- public function setSubjectDistance($subjectDistance)
- {
- $this->subjectDistance = $subjectDistance;
- }
- public function getSubjectDistance()
- {
- return $this->subjectDistance;
- }
- public function setWhiteBalance($whiteBalance)
- {
- $this->whiteBalance = $whiteBalance;
- }
- public function getWhiteBalance()
- {
- return $this->whiteBalance;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFileImageMediaMetadataLocation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $altitude;
- public $latitude;
- public $longitude;
-
-
- public function setAltitude($altitude)
- {
- $this->altitude = $altitude;
- }
- public function getAltitude()
- {
- return $this->altitude;
- }
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFileIndexableText extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $text;
-
-
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFileLabels extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $hidden;
- public $restricted;
- public $starred;
- public $trashed;
- public $viewed;
-
-
- public function setHidden($hidden)
- {
- $this->hidden = $hidden;
- }
- public function getHidden()
- {
- return $this->hidden;
- }
- public function setRestricted($restricted)
- {
- $this->restricted = $restricted;
- }
- public function getRestricted()
- {
- return $this->restricted;
- }
- public function setStarred($starred)
- {
- $this->starred = $starred;
- }
- public function getStarred()
- {
- return $this->starred;
- }
- public function setTrashed($trashed)
- {
- $this->trashed = $trashed;
- }
- public function getTrashed()
- {
- return $this->trashed;
- }
- public function setViewed($viewed)
- {
- $this->viewed = $viewed;
- }
- public function getViewed()
- {
- return $this->viewed;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFileOpenWithLinks extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Drive_DriveFileThumbnail extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $image;
- public $mimeType;
-
-
- public function setImage($image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
-}
-
-class Postman_Google_Service_Drive_DriveFileVideoMediaMetadata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $durationMillis;
- public $height;
- public $width;
-
-
- public function setDurationMillis($durationMillis)
- {
- $this->durationMillis = $durationMillis;
- }
- public function getDurationMillis()
- {
- return $this->durationMillis;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Drive_FileList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_DriveFile';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_ParentList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_ParentReference';
- protected $itemsDataType = 'array';
- public $kind;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_ParentReference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $isRoot;
- public $kind;
- public $parentLink;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsRoot($isRoot)
- {
- $this->isRoot = $isRoot;
- }
- public function getIsRoot()
- {
- return $this->isRoot;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setParentLink($parentLink)
- {
- $this->parentLink = $parentLink;
- }
- public function getParentLink()
- {
- return $this->parentLink;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_Permission extends Postman_Google_Collection
-{
- protected $collection_key = 'additionalRoles';
- protected $internal_gapi_mappings = array(
- );
- public $additionalRoles;
- public $authKey;
- public $domain;
- public $emailAddress;
- public $etag;
- public $id;
- public $kind;
- public $name;
- public $photoLink;
- public $role;
- public $selfLink;
- public $type;
- public $value;
- public $withLink;
-
-
- public function setAdditionalRoles($additionalRoles)
- {
- $this->additionalRoles = $additionalRoles;
- }
- public function getAdditionalRoles()
- {
- return $this->additionalRoles;
- }
- public function setAuthKey($authKey)
- {
- $this->authKey = $authKey;
- }
- public function getAuthKey()
- {
- return $this->authKey;
- }
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setEmailAddress($emailAddress)
- {
- $this->emailAddress = $emailAddress;
- }
- public function getEmailAddress()
- {
- return $this->emailAddress;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setPhotoLink($photoLink)
- {
- $this->photoLink = $photoLink;
- }
- public function getPhotoLink()
- {
- return $this->photoLink;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
- public function setWithLink($withLink)
- {
- $this->withLink = $withLink;
- }
- public function getWithLink()
- {
- return $this->withLink;
- }
-}
-
-class Postman_Google_Service_Drive_PermissionId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_Drive_PermissionList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_Permission';
- protected $itemsDataType = 'array';
- public $kind;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_Property extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $key;
- public $kind;
- public $selfLink;
- public $value;
- public $visibility;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_Drive_PropertyList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_Property';
- protected $itemsDataType = 'array';
- public $kind;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_Revision extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $downloadUrl;
- public $etag;
- public $exportLinks;
- public $fileSize;
- public $id;
- public $kind;
- protected $lastModifyingUserType = 'Postman_Google_Service_Drive_User';
- protected $lastModifyingUserDataType = '';
- public $lastModifyingUserName;
- public $md5Checksum;
- public $mimeType;
- public $modifiedDate;
- public $originalFilename;
- public $pinned;
- public $publishAuto;
- public $published;
- public $publishedLink;
- public $publishedOutsideDomain;
- public $selfLink;
-
-
- public function setDownloadUrl($downloadUrl)
- {
- $this->downloadUrl = $downloadUrl;
- }
- public function getDownloadUrl()
- {
- return $this->downloadUrl;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExportLinks($exportLinks)
- {
- $this->exportLinks = $exportLinks;
- }
- public function getExportLinks()
- {
- return $this->exportLinks;
- }
- public function setFileSize($fileSize)
- {
- $this->fileSize = $fileSize;
- }
- public function getFileSize()
- {
- return $this->fileSize;
- }
- 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 setLastModifyingUser(Postman_Google_Service_Drive_User $lastModifyingUser)
- {
- $this->lastModifyingUser = $lastModifyingUser;
- }
- public function getLastModifyingUser()
- {
- return $this->lastModifyingUser;
- }
- public function setLastModifyingUserName($lastModifyingUserName)
- {
- $this->lastModifyingUserName = $lastModifyingUserName;
- }
- public function getLastModifyingUserName()
- {
- return $this->lastModifyingUserName;
- }
- public function setMd5Checksum($md5Checksum)
- {
- $this->md5Checksum = $md5Checksum;
- }
- public function getMd5Checksum()
- {
- return $this->md5Checksum;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setModifiedDate($modifiedDate)
- {
- $this->modifiedDate = $modifiedDate;
- }
- public function getModifiedDate()
- {
- return $this->modifiedDate;
- }
- public function setOriginalFilename($originalFilename)
- {
- $this->originalFilename = $originalFilename;
- }
- public function getOriginalFilename()
- {
- return $this->originalFilename;
- }
- public function setPinned($pinned)
- {
- $this->pinned = $pinned;
- }
- public function getPinned()
- {
- return $this->pinned;
- }
- public function setPublishAuto($publishAuto)
- {
- $this->publishAuto = $publishAuto;
- }
- public function getPublishAuto()
- {
- return $this->publishAuto;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setPublishedLink($publishedLink)
- {
- $this->publishedLink = $publishedLink;
- }
- public function getPublishedLink()
- {
- return $this->publishedLink;
- }
- public function setPublishedOutsideDomain($publishedOutsideDomain)
- {
- $this->publishedOutsideDomain = $publishedOutsideDomain;
- }
- public function getPublishedOutsideDomain()
- {
- return $this->publishedOutsideDomain;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_RevisionExportLinks extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Drive_RevisionList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Drive_Revision';
- protected $itemsDataType = 'array';
- public $kind;
- public $selfLink;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Drive_User extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $emailAddress;
- public $isAuthenticatedUser;
- public $kind;
- public $permissionId;
- protected $pictureType = 'Postman_Google_Service_Drive_UserPicture';
- protected $pictureDataType = '';
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmailAddress($emailAddress)
- {
- $this->emailAddress = $emailAddress;
- }
- public function getEmailAddress()
- {
- return $this->emailAddress;
- }
- public function setIsAuthenticatedUser($isAuthenticatedUser)
- {
- $this->isAuthenticatedUser = $isAuthenticatedUser;
- }
- public function getIsAuthenticatedUser()
- {
- return $this->isAuthenticatedUser;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPermissionId($permissionId)
- {
- $this->permissionId = $permissionId;
- }
- public function getPermissionId()
- {
- return $this->permissionId;
- }
- public function setPicture(Postman_Google_Service_Drive_UserPicture $picture)
- {
- $this->picture = $picture;
- }
- public function getPicture()
- {
- return $this->picture;
- }
-}
-
-class Postman_Google_Service_Drive_UserPicture extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Exception.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Exception.php
deleted file mode 100644
index 8b41163..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Exception.php
+++ /dev/null
@@ -1,53 +0,0 @@
-= 0) {
- parent::__construct($message, $code, $previous);
- } else {
- parent::__construct($message, $code);
- }
-
- $this->errors = $errors;
- }
-
- /**
- * An example of the possible errors returned.
- *
- * {
- * "domain": "global",
- * "reason": "authError",
- * "message": "Invalid Credentials",
- * "locationType": "header",
- * "location": "Authorization",
- * }
- *
- * @return [{string, string}] List of errors return in an HTTP response or [].
- */
- public function getErrors()
- {
- return $this->errors;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Fitness.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Fitness.php
deleted file mode 100644
index af84018..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Fitness.php
+++ /dev/null
@@ -1,1155 +0,0 @@
-
- * Google Fit API
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Fitness extends Postman_Google_Service -{ - /** View your activity information in Google Fit. */ - const FITNESS_ACTIVITY_READ = - "https://www.googleapis.com/auth/fitness.activity.read"; - /** View and store your activity information in Google Fit. */ - const FITNESS_ACTIVITY_WRITE = - "https://www.googleapis.com/auth/fitness.activity.write"; - /** View body sensor information in Google Fit. */ - const FITNESS_BODY_READ = - "https://www.googleapis.com/auth/fitness.body.read"; - /** View and store body sensor data in Google Fit. */ - const FITNESS_BODY_WRITE = - "https://www.googleapis.com/auth/fitness.body.write"; - /** View your stored location data in Google Fit. */ - const FITNESS_LOCATION_READ = - "https://www.googleapis.com/auth/fitness.location.read"; - /** View and store your location data in Google Fit. */ - const FITNESS_LOCATION_WRITE = - "https://www.googleapis.com/auth/fitness.location.write"; - - public $users_dataSources; - public $users_dataSources_datasets; - public $users_sessions; - - - /** - * Constructs the internal representation of the Fitness service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'fitness/v1/users/'; - $this->version = 'v1'; - $this->serviceName = 'fitness'; - - $this->users_dataSources = new Postman_Google_Service_Fitness_UsersDataSources_Resource( - $this, - $this->serviceName, - 'dataSources', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/dataSources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/dataSources/{dataSourceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/dataSources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataTypeName' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'patch' => array( - 'path' => '{userId}/dataSources/{dataSourceId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/dataSources/{dataSourceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_dataSources_datasets = new Postman_Google_Service_Fitness_UsersDataSourcesDatasets_Resource( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'modifiedTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_sessions = new Postman_Google_Service_Fitness_UsersSessions_Resource( - $this, - $this->serviceName, - 'sessions', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/sessions/{sessionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sessionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/sessions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{userId}/sessions/{sessionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sessionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "users" collection of methods. - * Typical usage is: - *
- * $fitnessService = new Postman_Google_Service_Fitness(...);
- * $users = $fitnessService->users;
- *
- */
-class Postman_Google_Service_Fitness_Users_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "dataSources" collection of methods.
- * Typical usage is:
- *
- * $fitnessService = new Postman_Google_Service_Fitness(...);
- * $dataSources = $fitnessService->dataSources;
- *
- */
-class Postman_Google_Service_Fitness_UsersDataSources_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a new data source that is unique across all data sources belonging to
- * this user. The data stream ID field can be omitted and will be generated by
- * the server with the correct format. The data stream ID is an ordered
- * combination of some fields from the data source. In addition to the data
- * source fields reflected into the data source ID, the developer project number
- * that is authenticated when creating the data source is included. This
- * developer project number is obfuscated when read by any other developer
- * reading public data types. (dataSources.create)
- *
- * @param string $userId Create the data source for the person identified. Use
- * me to indicate the authenticated user. Only me is supported at this time.
- * @param Postman_Google_DataSource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fitness_DataSource
- */
- public function create($userId, Postman_Google_Service_Fitness_DataSource $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Fitness_DataSource");
- }
-
- /**
- * Returns a data source identified by a data stream ID. (dataSources.get)
- *
- * @param string $userId Retrieve a data source for the person identified. Use
- * me to indicate the authenticated user. Only me is supported at this time.
- * @param string $dataSourceId The data stream ID of the data source to
- * retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fitness_DataSource
- */
- public function get($userId, $dataSourceId, $optParams = array())
- {
- $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fitness_DataSource");
- }
-
- /**
- * Lists all data sources that are visible to the developer, using the OAuth
- * scopes provided. The list is not exhaustive: the user may have private data
- * sources that are only visible to other developers or calls using other
- * scopes. (dataSources.listUsersDataSources)
- *
- * @param string $userId List data sources for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string dataTypeName The names of data types to include in the
- * list. If not specified, all data sources will be returned.
- * @return Postman_Google_Service_Fitness_ListDataSourcesResponse
- */
- public function listUsersDataSources($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fitness_ListDataSourcesResponse");
- }
-
- /**
- * Updates a given data source. It is an error to modify the data source's data
- * stream ID, data type, type, stream name or device information apart from the
- * device version. Changing these fields would require a new unique data stream
- * ID and separate data source.
- *
- * Data sources are identified by their data stream ID. This method supports
- * patch semantics. (dataSources.patch)
- *
- * @param string $userId Update the data source for the person identified. Use
- * me to indicate the authenticated user. Only me is supported at this time.
- * @param string $dataSourceId The data stream ID of the data source to update.
- * @param Postman_Google_DataSource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fitness_DataSource
- */
- public function patch($userId, $dataSourceId, Postman_Google_Service_Fitness_DataSource $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Fitness_DataSource");
- }
-
- /**
- * Updates a given data source. It is an error to modify the data source's data
- * stream ID, data type, type, stream name or device information apart from the
- * device version. Changing these fields would require a new unique data stream
- * ID and separate data source.
- *
- * Data sources are identified by their data stream ID. (dataSources.update)
- *
- * @param string $userId Update the data source for the person identified. Use
- * me to indicate the authenticated user. Only me is supported at this time.
- * @param string $dataSourceId The data stream ID of the data source to update.
- * @param Postman_Google_DataSource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fitness_DataSource
- */
- public function update($userId, $dataSourceId, Postman_Google_Service_Fitness_DataSource $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Fitness_DataSource");
- }
-}
-
-/**
- * The "datasets" collection of methods.
- * Typical usage is:
- *
- * $fitnessService = new Postman_Google_Service_Fitness(...);
- * $datasets = $fitnessService->datasets;
- *
- */
-class Postman_Google_Service_Fitness_UsersDataSourcesDatasets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Performs an inclusive delete of all data points whose start and end times
- * have any overlap with the time range specified by the dataset ID. For most
- * data types, the entire data point will be deleted. For data types where the
- * time span represents a consistent value (such as
- * com.google.activity.segment), and a data point straddles either end point of
- * the dataset, only the overlapping portion of the data point will be deleted.
- * (datasets.delete)
- *
- * @param string $userId Delete a dataset for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param string $dataSourceId The data stream ID of the data source that
- * created the dataset.
- * @param string $datasetId Dataset identifier that is a composite of the
- * minimum data point start time and maximum data point end time represented as
- * nanoseconds from the epoch. The ID is formatted like: "startTime-endTime"
- * where startTime and endTime are 64 bit integers.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedTimeMillis When the operation was performed on the
- * client.
- * @opt_param string currentTimeMillis The client's current time in milliseconds
- * since epoch.
- */
- public function delete($userId, $dataSourceId, $datasetId, $optParams = array())
- {
- $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns a dataset containing all data points whose start and end times
- * overlap with the specified range of the dataset minimum start time and
- * maximum end time. Specifically, any data point whose start time is less than
- * or equal to the dataset end time and whose end time is greater than or equal
- * to the dataset start time. (datasets.get)
- *
- * @param string $userId Retrieve a dataset for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param string $dataSourceId The data stream ID of the data source that
- * created the dataset.
- * @param string $datasetId Dataset identifier that is a composite of the
- * minimum data point start time and maximum data point end time represented as
- * nanoseconds from the epoch. The ID is formatted like: "startTime-endTime"
- * where startTime and endTime are 64 bit integers.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int limit If specified, no more than this many data points will be
- * included in the dataset. If the there are more data points in the dataset,
- * nextPageToken will be set in the dataset response.
- * @opt_param string pageToken The continuation token, which is used to page
- * through large datasets. To get the next page of a dataset, set this parameter
- * to the value of nextPageToken from the previous response. Each subsequent
- * call will yield a partial dataset with data point end timestamps that are
- * strictly smaller than those in the previous partial response.
- * @return Postman_Google_Service_Fitness_Dataset
- */
- public function get($userId, $dataSourceId, $datasetId, $optParams = array())
- {
- $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fitness_Dataset");
- }
-
- /**
- * Adds data points to a dataset. The dataset need not be previously created.
- * All points within the given dataset will be returned with subsquent calls to
- * retrieve this dataset. Data points can belong to more than one dataset. This
- * method does not use patch semantics. (datasets.patch)
- *
- * @param string $userId Patch a dataset for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param string $dataSourceId The data stream ID of the data source that
- * created the dataset.
- * @param string $datasetId Dataset identifier that is a composite of the
- * minimum data point start time and maximum data point end time represented as
- * nanoseconds from the epoch. The ID is formatted like: "startTime-endTime"
- * where startTime and endTime are 64 bit integers.
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string currentTimeMillis The client's current time in milliseconds
- * since epoch. Note that the minStartTimeNs and maxEndTimeNs properties in the
- * request body are in nanoseconds instead of milliseconds.
- * @return Postman_Google_Service_Fitness_Dataset
- */
- public function patch($userId, $dataSourceId, $datasetId, Postman_Google_Service_Fitness_Dataset $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Fitness_Dataset");
- }
-}
-/**
- * The "sessions" collection of methods.
- * Typical usage is:
- *
- * $fitnessService = new Postman_Google_Service_Fitness(...);
- * $sessions = $fitnessService->sessions;
- *
- */
-class Postman_Google_Service_Fitness_UsersSessions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a session specified by the given session ID. (sessions.delete)
- *
- * @param string $userId Delete a session for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param string $sessionId The ID of the session to be deleted.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string currentTimeMillis The client's current time in milliseconds
- * since epoch.
- */
- public function delete($userId, $sessionId, $optParams = array())
- {
- $params = array('userId' => $userId, 'sessionId' => $sessionId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Lists sessions previously created. (sessions.listUsersSessions)
- *
- * @param string $userId List sessions for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of nextPageToken from the previous response.
- * @opt_param string endTime An RFC3339 timestamp. Only sessions ending between
- * the start and end times will be included in the response.
- * @opt_param bool includeDeleted If true, deleted sessions will be returned.
- * When set to true, sessions returned in this response will only have an ID and
- * will not have any other fields.
- * @opt_param string startTime An RFC3339 timestamp. Only sessions ending
- * between the start and end times will be included in the response.
- * @return Postman_Google_Service_Fitness_ListSessionsResponse
- */
- public function listUsersSessions($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fitness_ListSessionsResponse");
- }
-
- /**
- * Updates or insert a given session. (sessions.update)
- *
- * @param string $userId Create sessions for the person identified. Use me to
- * indicate the authenticated user. Only me is supported at this time.
- * @param string $sessionId The ID of the session to be created.
- * @param Postman_Google_Session $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string currentTimeMillis The client's current time in milliseconds
- * since epoch.
- * @return Postman_Google_Service_Fitness_Session
- */
- public function update($userId, $sessionId, Postman_Google_Service_Fitness_Session $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'sessionId' => $sessionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Fitness_Session");
- }
-}
-
-
-
-
-class Postman_Google_Service_Fitness_Application extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $detailsUrl;
- public $name;
- public $packageName;
- public $version;
-
-
- public function setDetailsUrl($detailsUrl)
- {
- $this->detailsUrl = $detailsUrl;
- }
- public function getDetailsUrl()
- {
- return $this->detailsUrl;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPackageName($packageName)
- {
- $this->packageName = $packageName;
- }
- public function getPackageName()
- {
- return $this->packageName;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Fitness_DataPoint extends Postman_Google_Collection
-{
- protected $collection_key = 'value';
- protected $internal_gapi_mappings = array(
- );
- public $computationTimeMillis;
- public $dataTypeName;
- public $endTimeNanos;
- public $modifiedTimeMillis;
- public $originDataSourceId;
- public $rawTimestampNanos;
- public $startTimeNanos;
- protected $valueType = 'Postman_Google_Service_Fitness_Value';
- protected $valueDataType = 'array';
-
-
- public function setComputationTimeMillis($computationTimeMillis)
- {
- $this->computationTimeMillis = $computationTimeMillis;
- }
- public function getComputationTimeMillis()
- {
- return $this->computationTimeMillis;
- }
- public function setDataTypeName($dataTypeName)
- {
- $this->dataTypeName = $dataTypeName;
- }
- public function getDataTypeName()
- {
- return $this->dataTypeName;
- }
- public function setEndTimeNanos($endTimeNanos)
- {
- $this->endTimeNanos = $endTimeNanos;
- }
- public function getEndTimeNanos()
- {
- return $this->endTimeNanos;
- }
- public function setModifiedTimeMillis($modifiedTimeMillis)
- {
- $this->modifiedTimeMillis = $modifiedTimeMillis;
- }
- public function getModifiedTimeMillis()
- {
- return $this->modifiedTimeMillis;
- }
- public function setOriginDataSourceId($originDataSourceId)
- {
- $this->originDataSourceId = $originDataSourceId;
- }
- public function getOriginDataSourceId()
- {
- return $this->originDataSourceId;
- }
- public function setRawTimestampNanos($rawTimestampNanos)
- {
- $this->rawTimestampNanos = $rawTimestampNanos;
- }
- public function getRawTimestampNanos()
- {
- return $this->rawTimestampNanos;
- }
- public function setStartTimeNanos($startTimeNanos)
- {
- $this->startTimeNanos = $startTimeNanos;
- }
- public function getStartTimeNanos()
- {
- return $this->startTimeNanos;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Fitness_DataSource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $applicationType = 'Postman_Google_Service_Fitness_Application';
- protected $applicationDataType = '';
- public $dataStreamId;
- public $dataStreamName;
- protected $dataTypeType = 'Postman_Google_Service_Fitness_DataType';
- protected $dataTypeDataType = '';
- protected $deviceType = 'Postman_Google_Service_Fitness_Device';
- protected $deviceDataType = '';
- public $name;
- public $type;
-
-
- public function setApplication(Postman_Google_Service_Fitness_Application $application)
- {
- $this->application = $application;
- }
- public function getApplication()
- {
- return $this->application;
- }
- public function setDataStreamId($dataStreamId)
- {
- $this->dataStreamId = $dataStreamId;
- }
- public function getDataStreamId()
- {
- return $this->dataStreamId;
- }
- public function setDataStreamName($dataStreamName)
- {
- $this->dataStreamName = $dataStreamName;
- }
- public function getDataStreamName()
- {
- return $this->dataStreamName;
- }
- public function setDataType(Postman_Google_Service_Fitness_DataType $dataType)
- {
- $this->dataType = $dataType;
- }
- public function getDataType()
- {
- return $this->dataType;
- }
- public function setDevice(Postman_Google_Service_Fitness_Device $device)
- {
- $this->device = $device;
- }
- public function getDevice()
- {
- return $this->device;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Fitness_DataType extends Postman_Google_Collection
-{
- protected $collection_key = 'field';
- protected $internal_gapi_mappings = array(
- );
- protected $fieldType = 'Postman_Google_Service_Fitness_DataTypeField';
- protected $fieldDataType = 'array';
- public $name;
-
-
- public function setField($field)
- {
- $this->field = $field;
- }
- public function getField()
- {
- return $this->field;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Fitness_DataTypeField extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $format;
- public $name;
-
-
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Fitness_Dataset extends Postman_Google_Collection
-{
- protected $collection_key = 'point';
- protected $internal_gapi_mappings = array(
- );
- public $dataSourceId;
- public $maxEndTimeNs;
- public $minStartTimeNs;
- public $nextPageToken;
- protected $pointType = 'Postman_Google_Service_Fitness_DataPoint';
- protected $pointDataType = 'array';
-
-
- public function setDataSourceId($dataSourceId)
- {
- $this->dataSourceId = $dataSourceId;
- }
- public function getDataSourceId()
- {
- return $this->dataSourceId;
- }
- public function setMaxEndTimeNs($maxEndTimeNs)
- {
- $this->maxEndTimeNs = $maxEndTimeNs;
- }
- public function getMaxEndTimeNs()
- {
- return $this->maxEndTimeNs;
- }
- public function setMinStartTimeNs($minStartTimeNs)
- {
- $this->minStartTimeNs = $minStartTimeNs;
- }
- public function getMinStartTimeNs()
- {
- return $this->minStartTimeNs;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setPoint($point)
- {
- $this->point = $point;
- }
- public function getPoint()
- {
- return $this->point;
- }
-}
-
-class Postman_Google_Service_Fitness_Device extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $manufacturer;
- public $model;
- public $type;
- public $uid;
- public $version;
-
-
- public function setManufacturer($manufacturer)
- {
- $this->manufacturer = $manufacturer;
- }
- public function getManufacturer()
- {
- return $this->manufacturer;
- }
- public function setModel($model)
- {
- $this->model = $model;
- }
- public function getModel()
- {
- return $this->model;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUid($uid)
- {
- $this->uid = $uid;
- }
- public function getUid()
- {
- return $this->uid;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Fitness_ListDataSourcesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'dataSource';
- protected $internal_gapi_mappings = array(
- );
- protected $dataSourceType = 'Postman_Google_Service_Fitness_DataSource';
- protected $dataSourceDataType = 'array';
-
-
- public function setDataSource($dataSource)
- {
- $this->dataSource = $dataSource;
- }
- public function getDataSource()
- {
- return $this->dataSource;
- }
-}
-
-class Postman_Google_Service_Fitness_ListSessionsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'session';
- protected $internal_gapi_mappings = array(
- );
- protected $deletedSessionType = 'Postman_Google_Service_Fitness_Session';
- protected $deletedSessionDataType = 'array';
- public $nextPageToken;
- protected $sessionType = 'Postman_Google_Service_Fitness_Session';
- protected $sessionDataType = 'array';
-
-
- public function setDeletedSession($deletedSession)
- {
- $this->deletedSession = $deletedSession;
- }
- public function getDeletedSession()
- {
- return $this->deletedSession;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSession($session)
- {
- $this->session = $session;
- }
- public function getSession()
- {
- return $this->session;
- }
-}
-
-class Postman_Google_Service_Fitness_Session extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $activityType;
- protected $applicationType = 'Postman_Google_Service_Fitness_Application';
- protected $applicationDataType = '';
- public $description;
- public $endTimeMillis;
- public $id;
- public $modifiedTimeMillis;
- public $name;
- public $startTimeMillis;
-
-
- public function setActivityType($activityType)
- {
- $this->activityType = $activityType;
- }
- public function getActivityType()
- {
- return $this->activityType;
- }
- public function setApplication(Postman_Google_Service_Fitness_Application $application)
- {
- $this->application = $application;
- }
- public function getApplication()
- {
- return $this->application;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndTimeMillis($endTimeMillis)
- {
- $this->endTimeMillis = $endTimeMillis;
- }
- public function getEndTimeMillis()
- {
- return $this->endTimeMillis;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setModifiedTimeMillis($modifiedTimeMillis)
- {
- $this->modifiedTimeMillis = $modifiedTimeMillis;
- }
- public function getModifiedTimeMillis()
- {
- return $this->modifiedTimeMillis;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setStartTimeMillis($startTimeMillis)
- {
- $this->startTimeMillis = $startTimeMillis;
- }
- public function getStartTimeMillis()
- {
- return $this->startTimeMillis;
- }
-}
-
-class Postman_Google_Service_Fitness_Value extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $fpVal;
- public $intVal;
-
-
- public function setFpVal($fpVal)
- {
- $this->fpVal = $fpVal;
- }
- public function getFpVal()
- {
- return $this->fpVal;
- }
- public function setIntVal($intVal)
- {
- $this->intVal = $intVal;
- }
- public function getIntVal()
- {
- return $this->intVal;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Freebase.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Freebase.php
deleted file mode 100644
index d123210..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Freebase.php
+++ /dev/null
@@ -1,452 +0,0 @@
-
- * Find Freebase entities using textual queries and other constraints.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Freebase extends Postman_Google_Service -{ - - - - private $base_methods; - - /** - * Constructs the internal representation of the Freebase service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'freebase/v1/'; - $this->version = 'v1'; - $this->serviceName = 'freebase'; - - $this->base_methods = new Postman_Google_Service_Resource( - $this, - $this->serviceName, - '', - array( - 'methods' => array( - 'reconcile' => array( - 'path' => 'reconcile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'lang' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'confidence' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'prop' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'search' => array( - 'path' => 'search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'help' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scoring' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cursor' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'prefixed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'exact' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'mid' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'encode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'as_of_time' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'stemmed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'spell' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'with' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'lang' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'indent' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'callback' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'without' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'output' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mql_output' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } - /** - * Reconcile entities to Freebase open data. (reconcile) - * - * @param array $optParams Optional parameters. - * - * @opt_param string lang Languages for names and values. First language is used - * for display. Default is 'en'. - * @opt_param float confidence Required confidence for a candidate to match. - * Must be between .5 and 1.0 - * @opt_param string name Name of entity. - * @opt_param string kind Classifications of entity e.g. type, category, title. - * @opt_param string prop Property values for entity formatted as : - * @opt_param int limit Maximum number of candidates to return. - * @return Postman_Google_Service_Freebase_ReconcileGet - */ - public function reconcile($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('reconcile', array($params), "Postman_Google_Service_Freebase_ReconcileGet"); - } - /** - * Search Freebase open data. (search) - * - * @param array $optParams Optional parameters. - * - * @opt_param string domain Restrict to topics with this Freebase domain id. - * @opt_param string help The keyword to request help on. - * @opt_param string query Query term to search for. - * @opt_param string scoring Relevance scoring algorithm to use. - * @opt_param int cursor The cursor value to use for the next page of results. - * @opt_param bool prefixed Prefix match against names and aliases. - * @opt_param bool exact Query on exact name and keys only. - * @opt_param string mid A mid to use instead of a query. - * @opt_param string encode The encoding of the response. You can use this - * parameter to enable html encoding. - * @opt_param string type Restrict to topics with this Freebase type id. - * @opt_param string as_of_time A mql as_of_time value to use with mql_output - * queries. - * @opt_param bool stemmed Query on stemmed names and aliases. May not be used - * with prefixed. - * @opt_param string format Structural format of the json response. - * @opt_param string spell Request 'did you mean' suggestions - * @opt_param string with A rule to match against. - * @opt_param string lang The code of the language to run the query with. - * Default is 'en'. - * @opt_param bool indent Whether to indent the json results or not. - * @opt_param string filter A filter to apply to the query. - * @opt_param string callback JS method name for JSONP callbacks. - * @opt_param string without A rule to not match against. - * @opt_param int limit Maximum number of results to return. - * @opt_param string output An output expression to request data from matches. - * @opt_param string mql_output The MQL query to run againist the results to - * extract more data. - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('search', array($params)); - } -} - - - - - -class Postman_Google_Service_Freebase_ReconcileCandidate extends Postman_Google_Model -{ - protected $internal_gapi_mappings = array( - ); - public $confidence; - public $lang; - public $mid; - public $name; - protected $notableType = 'Postman_Google_Service_Freebase_ReconcileCandidateNotable'; - protected $notableDataType = ''; - - - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLang($lang) - { - $this->lang = $lang; - } - public function getLang() - { - return $this->lang; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotable(Postman_Google_Service_Freebase_ReconcileCandidateNotable $notable) - { - $this->notable = $notable; - } - public function getNotable() - { - return $this->notable; - } -} - -class Postman_Google_Service_Freebase_ReconcileCandidateNotable extends Postman_Google_Model -{ - protected $internal_gapi_mappings = array( - ); - public $id; - public $name; - - - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} - -class Postman_Google_Service_Freebase_ReconcileGet extends Postman_Google_Collection -{ - protected $collection_key = 'warning'; - protected $internal_gapi_mappings = array( - ); - protected $candidateType = 'Postman_Google_Service_Freebase_ReconcileCandidate'; - protected $candidateDataType = 'array'; - protected $costsType = 'Postman_Google_Service_Freebase_ReconcileGetCosts'; - protected $costsDataType = ''; - protected $matchType = 'Postman_Google_Service_Freebase_ReconcileCandidate'; - protected $matchDataType = ''; - protected $warningType = 'Postman_Google_Service_Freebase_ReconcileGetWarning'; - protected $warningDataType = 'array'; - - - public function setCandidate($candidate) - { - $this->candidate = $candidate; - } - public function getCandidate() - { - return $this->candidate; - } - public function setCosts(Postman_Google_Service_Freebase_ReconcileGetCosts $costs) - { - $this->costs = $costs; - } - public function getCosts() - { - return $this->costs; - } - public function setMatch(Postman_Google_Service_Freebase_ReconcileCandidate $match) - { - $this->match = $match; - } - public function getMatch() - { - return $this->match; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} - -class Postman_Google_Service_Freebase_ReconcileGetCosts extends Postman_Google_Model -{ - protected $internal_gapi_mappings = array( - ); - public $hits; - public $ms; - - - public function setHits($hits) - { - $this->hits = $hits; - } - public function getHits() - { - return $this->hits; - } - public function setMs($ms) - { - $this->ms = $ms; - } - public function getMs() - { - return $this->ms; - } -} - -class Postman_Google_Service_Freebase_ReconcileGetWarning extends Postman_Google_Model -{ - protected $internal_gapi_mappings = array( - ); - public $location; - public $message; - public $reason; - - - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Fusiontables.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Fusiontables.php deleted file mode 100644 index 85f5065..0000000 --- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Fusiontables.php +++ /dev/null @@ -1,2485 +0,0 @@ - - * API for working with Fusion Tables data. - * - *- * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Fusiontables extends Postman_Google_Service -{ - /** Manage your Fusion Tables. */ - const FUSIONTABLES = - "https://www.googleapis.com/auth/fusiontables"; - /** View your Fusion Tables. */ - const FUSIONTABLES_READONLY = - "https://www.googleapis.com/auth/fusiontables.readonly"; - - public $column; - public $query; - public $style; - public $table; - public $task; - public $template; - - - /** - * Constructs the internal representation of the Fusiontables service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'fusiontables/v2/'; - $this->version = 'v2'; - $this->serviceName = 'fusiontables'; - - $this->column = new Postman_Google_Service_Fusiontables_Column_Resource( - $this, - $this->serviceName, - 'column', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'tables/{tableId}/columns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/columns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->query = new Postman_Google_Service_Fusiontables_Query_Resource( - $this, - $this->serviceName, - 'query', - array( - 'methods' => array( - 'sql' => array( - 'path' => 'query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sql' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'typed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'hdrs' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'sqlGet' => array( - 'path' => 'query', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sql' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'typed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'hdrs' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->style = new Postman_Google_Service_Fusiontables_Style_Resource( - $this, - $this->serviceName, - 'style', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'tables/{tableId}/styles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/styles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->table = new Postman_Google_Service_Fusiontables_Table_Resource( - $this, - $this->serviceName, - 'table', - array( - 'methods' => array( - 'copy' => array( - 'path' => 'tables/{tableId}/copy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'copyPresentation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'importRows' => array( - 'path' => 'tables/{tableId}/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'isStrict' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'encoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'importTable' => array( - 'path' => 'tables/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'encoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'tables', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'tables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replaceViewDefinition' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'replaceRows' => array( - 'path' => 'tables/{tableId}/replace', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'isStrict' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'encoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replaceViewDefinition' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->task = new Postman_Google_Service_Fusiontables_Task_Resource( - $this, - $this->serviceName, - 'task', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/tasks/{taskId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/tasks/{taskId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->template = new Postman_Google_Service_Fusiontables_Template_Resource( - $this, - $this->serviceName, - 'template', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'tables/{tableId}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/templates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "column" collection of methods. - * Typical usage is: - *
- * $fusiontablesService = new Postman_Google_Service_Fusiontables(...);
- * $column = $fusiontablesService->column;
- *
- */
-class Postman_Google_Service_Fusiontables_Column_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the column. (column.delete)
- *
- * @param string $tableId Table from which the column is being deleted.
- * @param string $columnId Name or identifier for the column being deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($tableId, $columnId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'columnId' => $columnId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a specific column by its id. (column.get)
- *
- * @param string $tableId Table to which the column belongs.
- * @param string $columnId Name or identifier for the column that is being
- * requested.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Column
- */
- public function get($tableId, $columnId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'columnId' => $columnId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fusiontables_Column");
- }
-
- /**
- * Adds a new column to the table. (column.insert)
- *
- * @param string $tableId Table for which a new column is being added.
- * @param Postman_Google_Column $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Column
- */
- public function insert($tableId, Postman_Google_Service_Fusiontables_Column $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Fusiontables_Column");
- }
-
- /**
- * Retrieves a list of columns. (column.listColumn)
- *
- * @param string $tableId Table whose columns are being listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Continuation token specifying which result page
- * to return.
- * @opt_param string maxResults Maximum number of columns to return. Default is
- * 5.
- * @return Postman_Google_Service_Fusiontables_ColumnList
- */
- public function listColumn($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fusiontables_ColumnList");
- }
-
- /**
- * Updates the name or type of an existing column. This method supports patch
- * semantics. (column.patch)
- *
- * @param string $tableId Table for which the column is being updated.
- * @param string $columnId Name or identifier for the column that is being
- * updated.
- * @param Postman_Google_Column $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Column
- */
- public function patch($tableId, $columnId, Postman_Google_Service_Fusiontables_Column $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Fusiontables_Column");
- }
-
- /**
- * Updates the name or type of an existing column. (column.update)
- *
- * @param string $tableId Table for which the column is being updated.
- * @param string $columnId Name or identifier for the column that is being
- * updated.
- * @param Postman_Google_Column $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Column
- */
- public function update($tableId, $columnId, Postman_Google_Service_Fusiontables_Column $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Fusiontables_Column");
- }
-}
-
-/**
- * The "query" collection of methods.
- * Typical usage is:
- *
- * $fusiontablesService = new Postman_Google_Service_Fusiontables(...);
- * $query = $fusiontablesService->query;
- *
- */
-class Postman_Google_Service_Fusiontables_Query_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Executes an SQL SELECT/INSERT/UPDATE/DELETE/SHOW/DESCRIBE/CREATE statement.
- * (query.sql)
- *
- * @param string $sql An SQL SELECT/SHOW/DESCRIBE/INSERT/UPDATE/DELETE/CREATE
- * statement.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool typed Should typed values be returned in the (JSON) response
- * -- numbers for numeric values and parsed geometries for KML values? Default
- * is true.
- * @opt_param bool hdrs Should column names be included (in the first row)?.
- * Default is true.
- * @return Postman_Google_Service_Fusiontables_Sqlresponse
- */
- public function sql($sql, $optParams = array())
- {
- $params = array('sql' => $sql);
- $params = array_merge($params, $optParams);
- return $this->call('sql', array($params), "Postman_Google_Service_Fusiontables_Sqlresponse");
- }
-
- /**
- * Executes an SQL SELECT/SHOW/DESCRIBE statement. (query.sqlGet)
- *
- * @param string $sql An SQL SELECT/SHOW/DESCRIBE statement.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool typed Should typed values be returned in the (JSON) response
- * -- numbers for numeric values and parsed geometries for KML values? Default
- * is true.
- * @opt_param bool hdrs Should column names be included (in the first row)?.
- * Default is true.
- * @return Postman_Google_Service_Fusiontables_Sqlresponse
- */
- public function sqlGet($sql, $optParams = array())
- {
- $params = array('sql' => $sql);
- $params = array_merge($params, $optParams);
- return $this->call('sqlGet', array($params), "Postman_Google_Service_Fusiontables_Sqlresponse");
- }
-}
-
-/**
- * The "style" collection of methods.
- * Typical usage is:
- *
- * $fusiontablesService = new Postman_Google_Service_Fusiontables(...);
- * $style = $fusiontablesService->style;
- *
- */
-class Postman_Google_Service_Fusiontables_Style_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a style. (style.delete)
- *
- * @param string $tableId Table from which the style is being deleted
- * @param int $styleId Identifier (within a table) for the style being deleted
- * @param array $optParams Optional parameters.
- */
- public function delete($tableId, $styleId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'styleId' => $styleId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a specific style. (style.get)
- *
- * @param string $tableId Table to which the requested style belongs
- * @param int $styleId Identifier (integer) for a specific style in a table
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_StyleSetting
- */
- public function get($tableId, $styleId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'styleId' => $styleId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fusiontables_StyleSetting");
- }
-
- /**
- * Adds a new style for the table. (style.insert)
- *
- * @param string $tableId Table for which a new style is being added
- * @param Postman_Google_StyleSetting $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_StyleSetting
- */
- public function insert($tableId, Postman_Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Fusiontables_StyleSetting");
- }
-
- /**
- * Retrieves a list of styles. (style.listStyle)
- *
- * @param string $tableId Table whose styles are being listed
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Continuation token specifying which result page
- * to return. Optional.
- * @opt_param string maxResults Maximum number of styles to return. Optional.
- * Default is 5.
- * @return Postman_Google_Service_Fusiontables_StyleSettingList
- */
- public function listStyle($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fusiontables_StyleSettingList");
- }
-
- /**
- * Updates an existing style. This method supports patch semantics.
- * (style.patch)
- *
- * @param string $tableId Table whose style is being updated.
- * @param int $styleId Identifier (within a table) for the style being updated.
- * @param Postman_Google_StyleSetting $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_StyleSetting
- */
- public function patch($tableId, $styleId, Postman_Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'styleId' => $styleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Fusiontables_StyleSetting");
- }
-
- /**
- * Updates an existing style. (style.update)
- *
- * @param string $tableId Table whose style is being updated.
- * @param int $styleId Identifier (within a table) for the style being updated.
- * @param Postman_Google_StyleSetting $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_StyleSetting
- */
- public function update($tableId, $styleId, Postman_Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'styleId' => $styleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Fusiontables_StyleSetting");
- }
-}
-
-/**
- * The "table" collection of methods.
- * Typical usage is:
- *
- * $fusiontablesService = new Postman_Google_Service_Fusiontables(...);
- * $table = $fusiontablesService->table;
- *
- */
-class Postman_Google_Service_Fusiontables_Table_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Copies a table. (table.copy)
- *
- * @param string $tableId ID of the table that is being copied.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool copyPresentation Whether to also copy tabs, styles, and
- * templates. Default is false.
- * @return Postman_Google_Service_Fusiontables_Table
- */
- public function copy($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('copy', array($params), "Postman_Google_Service_Fusiontables_Table");
- }
-
- /**
- * Deletes a table. (table.delete)
- *
- * @param string $tableId ID of the table that is being deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a specific table by its id. (table.get)
- *
- * @param string $tableId Identifier(ID) for the table being requested.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Table
- */
- public function get($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fusiontables_Table");
- }
-
- /**
- * Import more rows into a table. (table.importRows)
- *
- * @param string $tableId The table into which new rows are being imported.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int startLine The index of the first line from which to start
- * importing, inclusive. Default is 0.
- * @opt_param bool isStrict Whether the CSV must have the same number of values
- * for each row. If false, rows with fewer values will be padded with empty
- * values. Default is true.
- * @opt_param string encoding The encoding of the content. Default is UTF-8. Use
- * 'auto-detect' if you are unsure of the encoding.
- * @opt_param string delimiter The delimiter used to separate cell values. This
- * can only consist of a single character. Default is ','.
- * @opt_param int endLine The index of the last line from which to start
- * importing, exclusive. Thus, the number of imported lines is endLine -
- * startLine. If this parameter is not provided, the file will be imported until
- * the last line of the file. If endLine is negative, then the imported content
- * will exclude the last endLine lines. That is, if endline is negative, no line
- * will be imported whose index is greater than N + endLine where N is the
- * number of lines in the file, and the number of imported lines will be N +
- * endLine - startLine.
- * @return Postman_Google_Service_Fusiontables_Import
- */
- public function importRows($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('importRows', array($params), "Postman_Google_Service_Fusiontables_Import");
- }
-
- /**
- * Import a new table. (table.importTable)
- *
- * @param string $name The name to be assigned to the new table.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string delimiter The delimiter used to separate cell values. This
- * can only consist of a single character. Default is ','.
- * @opt_param string encoding The encoding of the content. Default is UTF-8. Use
- * 'auto-detect' if you are unsure of the encoding.
- * @return Postman_Google_Service_Fusiontables_Table
- */
- public function importTable($name, $optParams = array())
- {
- $params = array('name' => $name);
- $params = array_merge($params, $optParams);
- return $this->call('importTable', array($params), "Postman_Google_Service_Fusiontables_Table");
- }
-
- /**
- * Creates a new table. (table.insert)
- *
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Table
- */
- public function insert(Postman_Google_Service_Fusiontables_Table $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Fusiontables_Table");
- }
-
- /**
- * Retrieves a list of tables a user owns. (table.listTable)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Continuation token specifying which result page
- * to return. Optional.
- * @opt_param string maxResults Maximum number of styles to return. Optional.
- * Default is 5.
- * @return Postman_Google_Service_Fusiontables_TableList
- */
- public function listTable($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fusiontables_TableList");
- }
-
- /**
- * Updates an existing table. Unless explicitly requested, only the name,
- * description, and attribution will be updated. This method supports patch
- * semantics. (table.patch)
- *
- * @param string $tableId ID of the table that is being updated.
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool replaceViewDefinition Should the view definition also be
- * updated? The specified view definition replaces the existing one. Only a view
- * can be updated with a new definition.
- * @return Postman_Google_Service_Fusiontables_Table
- */
- public function patch($tableId, Postman_Google_Service_Fusiontables_Table $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Fusiontables_Table");
- }
-
- /**
- * Replaces rows of an existing table. Current rows remain visible until all
- * replacement rows are ready. (table.replaceRows)
- *
- * @param string $tableId Table whose rows will be replaced.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int startLine The index of the first line from which to start
- * importing, inclusive. Default is 0.
- * @opt_param bool isStrict Whether the CSV must have the same number of column
- * values for each row. If true, throws an exception if the CSV does not not
- * have the same number of columns. If false, rows with fewer column values will
- * be padded with empty values. Default is true.
- * @opt_param string encoding The encoding of the content. Default is UTF-8. Use
- * 'auto-detect' if you are unsure of the encoding.
- * @opt_param string delimiter The delimiter used to separate cell values. This
- * can only consist of a single character. Default is ','.
- * @opt_param int endLine The index of the last line to import, exclusive.
- * 'endLine - startLine' rows will be imported. Default is to import through the
- * end of the file. If endLine is negative, it is an offset from the end of the
- * file; the imported content will exclude the last endLine lines.
- * @return Postman_Google_Service_Fusiontables_Task
- */
- public function replaceRows($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('replaceRows', array($params), "Postman_Google_Service_Fusiontables_Task");
- }
-
- /**
- * Updates an existing table. Unless explicitly requested, only the name,
- * description, and attribution will be updated. (table.update)
- *
- * @param string $tableId ID of the table that is being updated.
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool replaceViewDefinition Should the view definition also be
- * updated? The specified view definition replaces the existing one. Only a view
- * can be updated with a new definition.
- * @return Postman_Google_Service_Fusiontables_Table
- */
- public function update($tableId, Postman_Google_Service_Fusiontables_Table $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Fusiontables_Table");
- }
-}
-
-/**
- * The "task" collection of methods.
- * Typical usage is:
- *
- * $fusiontablesService = new Postman_Google_Service_Fusiontables(...);
- * $task = $fusiontablesService->task;
- *
- */
-class Postman_Google_Service_Fusiontables_Task_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the task, unless already started. (task.delete)
- *
- * @param string $tableId Table from which the task is being deleted.
- * @param string $taskId
- * @param array $optParams Optional parameters.
- */
- public function delete($tableId, $taskId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'taskId' => $taskId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a specific task by its id. (task.get)
- *
- * @param string $tableId Table to which the task belongs.
- * @param string $taskId
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Task
- */
- public function get($tableId, $taskId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'taskId' => $taskId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fusiontables_Task");
- }
-
- /**
- * Retrieves a list of tasks. (task.listTask)
- *
- * @param string $tableId Table whose tasks are being listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Continuation token specifying which result page
- * to return.
- * @opt_param string startIndex Index of the first result returned in the
- * current page.
- * @opt_param string maxResults Maximum number of tasks to return. Default is 5.
- * @return Postman_Google_Service_Fusiontables_TaskList
- */
- public function listTask($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fusiontables_TaskList");
- }
-}
-
-/**
- * The "template" collection of methods.
- * Typical usage is:
- *
- * $fusiontablesService = new Postman_Google_Service_Fusiontables(...);
- * $template = $fusiontablesService->template;
- *
- */
-class Postman_Google_Service_Fusiontables_Template_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a template (template.delete)
- *
- * @param string $tableId Table from which the template is being deleted
- * @param int $templateId Identifier for the template which is being deleted
- * @param array $optParams Optional parameters.
- */
- public function delete($tableId, $templateId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'templateId' => $templateId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a specific template by its id (template.get)
- *
- * @param string $tableId Table to which the template belongs
- * @param int $templateId Identifier for the template that is being requested
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Template
- */
- public function get($tableId, $templateId, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'templateId' => $templateId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Fusiontables_Template");
- }
-
- /**
- * Creates a new template for the table. (template.insert)
- *
- * @param string $tableId Table for which a new template is being created
- * @param Postman_Google_Template $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Template
- */
- public function insert($tableId, Postman_Google_Service_Fusiontables_Template $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Fusiontables_Template");
- }
-
- /**
- * Retrieves a list of templates. (template.listTemplate)
- *
- * @param string $tableId Identifier for the table whose templates are being
- * requested
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Continuation token specifying which results page
- * to return. Optional.
- * @opt_param string maxResults Maximum number of templates to return. Optional.
- * Default is 5.
- * @return Postman_Google_Service_Fusiontables_TemplateList
- */
- public function listTemplate($tableId, $optParams = array())
- {
- $params = array('tableId' => $tableId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Fusiontables_TemplateList");
- }
-
- /**
- * Updates an existing template. This method supports patch semantics.
- * (template.patch)
- *
- * @param string $tableId Table to which the updated template belongs
- * @param int $templateId Identifier for the template that is being updated
- * @param Postman_Google_Template $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Template
- */
- public function patch($tableId, $templateId, Postman_Google_Service_Fusiontables_Template $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'templateId' => $templateId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Fusiontables_Template");
- }
-
- /**
- * Updates an existing template (template.update)
- *
- * @param string $tableId Table to which the updated template belongs
- * @param int $templateId Identifier for the template that is being updated
- * @param Postman_Google_Template $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Fusiontables_Template
- */
- public function update($tableId, $templateId, Postman_Google_Service_Fusiontables_Template $postBody, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'templateId' => $templateId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Fusiontables_Template");
- }
-}
-
-
-
-
-class Postman_Google_Service_Fusiontables_Bucket extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $icon;
- public $max;
- public $min;
- public $opacity;
- public $weight;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setIcon($icon)
- {
- $this->icon = $icon;
- }
- public function getIcon()
- {
- return $this->icon;
- }
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
- public function setOpacity($opacity)
- {
- $this->opacity = $opacity;
- }
- public function getOpacity()
- {
- return $this->opacity;
- }
- public function setWeight($weight)
- {
- $this->weight = $weight;
- }
- public function getWeight()
- {
- return $this->weight;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Column extends Postman_Google_Collection
-{
- protected $collection_key = 'validValues';
- protected $internal_gapi_mappings = array(
- );
- protected $baseColumnType = 'Postman_Google_Service_Fusiontables_ColumnBaseColumn';
- protected $baseColumnDataType = '';
- public $columnId;
- public $columnJsonSchema;
- public $columnPropertiesJson;
- public $description;
- public $formatPattern;
- public $graphPredicate;
- public $kind;
- public $name;
- public $type;
- public $validValues;
- public $validateData;
-
-
- public function setBaseColumn(Postman_Google_Service_Fusiontables_ColumnBaseColumn $baseColumn)
- {
- $this->baseColumn = $baseColumn;
- }
- public function getBaseColumn()
- {
- return $this->baseColumn;
- }
- public function setColumnId($columnId)
- {
- $this->columnId = $columnId;
- }
- public function getColumnId()
- {
- return $this->columnId;
- }
- public function setColumnJsonSchema($columnJsonSchema)
- {
- $this->columnJsonSchema = $columnJsonSchema;
- }
- public function getColumnJsonSchema()
- {
- return $this->columnJsonSchema;
- }
- public function setColumnPropertiesJson($columnPropertiesJson)
- {
- $this->columnPropertiesJson = $columnPropertiesJson;
- }
- public function getColumnPropertiesJson()
- {
- return $this->columnPropertiesJson;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFormatPattern($formatPattern)
- {
- $this->formatPattern = $formatPattern;
- }
- public function getFormatPattern()
- {
- return $this->formatPattern;
- }
- public function setGraphPredicate($graphPredicate)
- {
- $this->graphPredicate = $graphPredicate;
- }
- public function getGraphPredicate()
- {
- return $this->graphPredicate;
- }
- 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 setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValidValues($validValues)
- {
- $this->validValues = $validValues;
- }
- public function getValidValues()
- {
- return $this->validValues;
- }
- public function setValidateData($validateData)
- {
- $this->validateData = $validateData;
- }
- public function getValidateData()
- {
- return $this->validateData;
- }
-}
-
-class Postman_Google_Service_Fusiontables_ColumnBaseColumn extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnId;
- public $tableIndex;
-
-
- public function setColumnId($columnId)
- {
- $this->columnId = $columnId;
- }
- public function getColumnId()
- {
- return $this->columnId;
- }
- public function setTableIndex($tableIndex)
- {
- $this->tableIndex = $tableIndex;
- }
- public function getTableIndex()
- {
- return $this->tableIndex;
- }
-}
-
-class Postman_Google_Service_Fusiontables_ColumnList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Fusiontables_Column';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Geometry extends Postman_Google_Collection
-{
- protected $collection_key = 'geometries';
- protected $internal_gapi_mappings = array(
- );
- public $geometries;
- public $geometry;
- public $type;
-
-
- public function setGeometries($geometries)
- {
- $this->geometries = $geometries;
- }
- public function getGeometries()
- {
- return $this->geometries;
- }
- public function setGeometry($geometry)
- {
- $this->geometry = $geometry;
- }
- public function getGeometry()
- {
- return $this->geometry;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Import extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $numRowsReceived;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNumRowsReceived($numRowsReceived)
- {
- $this->numRowsReceived = $numRowsReceived;
- }
- public function getNumRowsReceived()
- {
- return $this->numRowsReceived;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Line extends Postman_Google_Collection
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- public $type;
-
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Fusiontables_LineStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $strokeColor;
- protected $strokeColorStylerType = 'Postman_Google_Service_Fusiontables_StyleFunction';
- protected $strokeColorStylerDataType = '';
- public $strokeOpacity;
- public $strokeWeight;
- protected $strokeWeightStylerType = 'Postman_Google_Service_Fusiontables_StyleFunction';
- protected $strokeWeightStylerDataType = '';
-
-
- public function setStrokeColor($strokeColor)
- {
- $this->strokeColor = $strokeColor;
- }
- public function getStrokeColor()
- {
- return $this->strokeColor;
- }
- public function setStrokeColorStyler(Postman_Google_Service_Fusiontables_StyleFunction $strokeColorStyler)
- {
- $this->strokeColorStyler = $strokeColorStyler;
- }
- public function getStrokeColorStyler()
- {
- return $this->strokeColorStyler;
- }
- public function setStrokeOpacity($strokeOpacity)
- {
- $this->strokeOpacity = $strokeOpacity;
- }
- public function getStrokeOpacity()
- {
- return $this->strokeOpacity;
- }
- public function setStrokeWeight($strokeWeight)
- {
- $this->strokeWeight = $strokeWeight;
- }
- public function getStrokeWeight()
- {
- return $this->strokeWeight;
- }
- public function setStrokeWeightStyler(Postman_Google_Service_Fusiontables_StyleFunction $strokeWeightStyler)
- {
- $this->strokeWeightStyler = $strokeWeightStyler;
- }
- public function getStrokeWeightStyler()
- {
- return $this->strokeWeightStyler;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Point extends Postman_Google_Collection
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- public $type;
-
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Fusiontables_PointStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $iconName;
- protected $iconStylerType = 'Postman_Google_Service_Fusiontables_StyleFunction';
- protected $iconStylerDataType = '';
-
-
- public function setIconName($iconName)
- {
- $this->iconName = $iconName;
- }
- public function getIconName()
- {
- return $this->iconName;
- }
- public function setIconStyler(Postman_Google_Service_Fusiontables_StyleFunction $iconStyler)
- {
- $this->iconStyler = $iconStyler;
- }
- public function getIconStyler()
- {
- return $this->iconStyler;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Polygon extends Postman_Google_Collection
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- public $type;
-
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Fusiontables_PolygonStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $fillColor;
- protected $fillColorStylerType = 'Postman_Google_Service_Fusiontables_StyleFunction';
- protected $fillColorStylerDataType = '';
- public $fillOpacity;
- public $strokeColor;
- protected $strokeColorStylerType = 'Postman_Google_Service_Fusiontables_StyleFunction';
- protected $strokeColorStylerDataType = '';
- public $strokeOpacity;
- public $strokeWeight;
- protected $strokeWeightStylerType = 'Postman_Google_Service_Fusiontables_StyleFunction';
- protected $strokeWeightStylerDataType = '';
-
-
- public function setFillColor($fillColor)
- {
- $this->fillColor = $fillColor;
- }
- public function getFillColor()
- {
- return $this->fillColor;
- }
- public function setFillColorStyler(Postman_Google_Service_Fusiontables_StyleFunction $fillColorStyler)
- {
- $this->fillColorStyler = $fillColorStyler;
- }
- public function getFillColorStyler()
- {
- return $this->fillColorStyler;
- }
- public function setFillOpacity($fillOpacity)
- {
- $this->fillOpacity = $fillOpacity;
- }
- public function getFillOpacity()
- {
- return $this->fillOpacity;
- }
- public function setStrokeColor($strokeColor)
- {
- $this->strokeColor = $strokeColor;
- }
- public function getStrokeColor()
- {
- return $this->strokeColor;
- }
- public function setStrokeColorStyler(Postman_Google_Service_Fusiontables_StyleFunction $strokeColorStyler)
- {
- $this->strokeColorStyler = $strokeColorStyler;
- }
- public function getStrokeColorStyler()
- {
- return $this->strokeColorStyler;
- }
- public function setStrokeOpacity($strokeOpacity)
- {
- $this->strokeOpacity = $strokeOpacity;
- }
- public function getStrokeOpacity()
- {
- return $this->strokeOpacity;
- }
- public function setStrokeWeight($strokeWeight)
- {
- $this->strokeWeight = $strokeWeight;
- }
- public function getStrokeWeight()
- {
- return $this->strokeWeight;
- }
- public function setStrokeWeightStyler(Postman_Google_Service_Fusiontables_StyleFunction $strokeWeightStyler)
- {
- $this->strokeWeightStyler = $strokeWeightStyler;
- }
- public function getStrokeWeightStyler()
- {
- return $this->strokeWeightStyler;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Sqlresponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- public $columns;
- public $kind;
- public $rows;
-
-
- public function setColumns($columns)
- {
- $this->columns = $columns;
- }
- public function getColumns()
- {
- return $this->columns;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
-}
-
-class Postman_Google_Service_Fusiontables_StyleFunction extends Postman_Google_Collection
-{
- protected $collection_key = 'buckets';
- protected $internal_gapi_mappings = array(
- );
- protected $bucketsType = 'Postman_Google_Service_Fusiontables_Bucket';
- protected $bucketsDataType = 'array';
- public $columnName;
- protected $gradientType = 'Postman_Google_Service_Fusiontables_StyleFunctionGradient';
- protected $gradientDataType = '';
- public $kind;
-
-
- public function setBuckets($buckets)
- {
- $this->buckets = $buckets;
- }
- public function getBuckets()
- {
- return $this->buckets;
- }
- public function setColumnName($columnName)
- {
- $this->columnName = $columnName;
- }
- public function getColumnName()
- {
- return $this->columnName;
- }
- public function setGradient(Postman_Google_Service_Fusiontables_StyleFunctionGradient $gradient)
- {
- $this->gradient = $gradient;
- }
- public function getGradient()
- {
- return $this->gradient;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Fusiontables_StyleFunctionGradient extends Postman_Google_Collection
-{
- protected $collection_key = 'colors';
- protected $internal_gapi_mappings = array(
- );
- protected $colorsType = 'Postman_Google_Service_Fusiontables_StyleFunctionGradientColors';
- protected $colorsDataType = 'array';
- public $max;
- public $min;
-
-
- public function setColors($colors)
- {
- $this->colors = $colors;
- }
- public function getColors()
- {
- return $this->colors;
- }
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
-}
-
-class Postman_Google_Service_Fusiontables_StyleFunctionGradientColors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $opacity;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setOpacity($opacity)
- {
- $this->opacity = $opacity;
- }
- public function getOpacity()
- {
- return $this->opacity;
- }
-}
-
-class Postman_Google_Service_Fusiontables_StyleSetting extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $markerOptionsType = 'Postman_Google_Service_Fusiontables_PointStyle';
- protected $markerOptionsDataType = '';
- public $name;
- protected $polygonOptionsType = 'Postman_Google_Service_Fusiontables_PolygonStyle';
- protected $polygonOptionsDataType = '';
- protected $polylineOptionsType = 'Postman_Google_Service_Fusiontables_LineStyle';
- protected $polylineOptionsDataType = '';
- public $styleId;
- public $tableId;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMarkerOptions(Postman_Google_Service_Fusiontables_PointStyle $markerOptions)
- {
- $this->markerOptions = $markerOptions;
- }
- public function getMarkerOptions()
- {
- return $this->markerOptions;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPolygonOptions(Postman_Google_Service_Fusiontables_PolygonStyle $polygonOptions)
- {
- $this->polygonOptions = $polygonOptions;
- }
- public function getPolygonOptions()
- {
- return $this->polygonOptions;
- }
- public function setPolylineOptions(Postman_Google_Service_Fusiontables_LineStyle $polylineOptions)
- {
- $this->polylineOptions = $polylineOptions;
- }
- public function getPolylineOptions()
- {
- return $this->polylineOptions;
- }
- public function setStyleId($styleId)
- {
- $this->styleId = $styleId;
- }
- public function getStyleId()
- {
- return $this->styleId;
- }
- public function setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
-}
-
-class Postman_Google_Service_Fusiontables_StyleSettingList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Fusiontables_StyleSetting';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Table extends Postman_Google_Collection
-{
- protected $collection_key = 'columns';
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $attributionLink;
- public $baseTableIds;
- public $columnPropertiesJsonSchema;
- protected $columnsType = 'Postman_Google_Service_Fusiontables_Column';
- protected $columnsDataType = 'array';
- public $description;
- public $isExportable;
- public $kind;
- public $name;
- public $sql;
- public $tableId;
- public $tablePropertiesJson;
- public $tablePropertiesJsonSchema;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setAttributionLink($attributionLink)
- {
- $this->attributionLink = $attributionLink;
- }
- public function getAttributionLink()
- {
- return $this->attributionLink;
- }
- public function setBaseTableIds($baseTableIds)
- {
- $this->baseTableIds = $baseTableIds;
- }
- public function getBaseTableIds()
- {
- return $this->baseTableIds;
- }
- public function setColumnPropertiesJsonSchema($columnPropertiesJsonSchema)
- {
- $this->columnPropertiesJsonSchema = $columnPropertiesJsonSchema;
- }
- public function getColumnPropertiesJsonSchema()
- {
- return $this->columnPropertiesJsonSchema;
- }
- public function setColumns($columns)
- {
- $this->columns = $columns;
- }
- public function getColumns()
- {
- return $this->columns;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setIsExportable($isExportable)
- {
- $this->isExportable = $isExportable;
- }
- public function getIsExportable()
- {
- return $this->isExportable;
- }
- 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 setSql($sql)
- {
- $this->sql = $sql;
- }
- public function getSql()
- {
- return $this->sql;
- }
- public function setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
- public function setTablePropertiesJson($tablePropertiesJson)
- {
- $this->tablePropertiesJson = $tablePropertiesJson;
- }
- public function getTablePropertiesJson()
- {
- return $this->tablePropertiesJson;
- }
- public function setTablePropertiesJsonSchema($tablePropertiesJsonSchema)
- {
- $this->tablePropertiesJsonSchema = $tablePropertiesJsonSchema;
- }
- public function getTablePropertiesJsonSchema()
- {
- return $this->tablePropertiesJsonSchema;
- }
-}
-
-class Postman_Google_Service_Fusiontables_TableList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Fusiontables_Table';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Task extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $progress;
- public $started;
- public $taskId;
- public $type;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProgress($progress)
- {
- $this->progress = $progress;
- }
- public function getProgress()
- {
- return $this->progress;
- }
- public function setStarted($started)
- {
- $this->started = $started;
- }
- public function getStarted()
- {
- return $this->started;
- }
- public function setTaskId($taskId)
- {
- $this->taskId = $taskId;
- }
- public function getTaskId()
- {
- return $this->taskId;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Fusiontables_TaskList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Fusiontables_Task';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Fusiontables_Template extends Postman_Google_Collection
-{
- protected $collection_key = 'automaticColumnNames';
- protected $internal_gapi_mappings = array(
- );
- public $automaticColumnNames;
- public $body;
- public $kind;
- public $name;
- public $tableId;
- public $templateId;
-
-
- public function setAutomaticColumnNames($automaticColumnNames)
- {
- $this->automaticColumnNames = $automaticColumnNames;
- }
- public function getAutomaticColumnNames()
- {
- return $this->automaticColumnNames;
- }
- public function setBody($body)
- {
- $this->body = $body;
- }
- public function getBody()
- {
- return $this->body;
- }
- 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 setTableId($tableId)
- {
- $this->tableId = $tableId;
- }
- public function getTableId()
- {
- return $this->tableId;
- }
- public function setTemplateId($templateId)
- {
- $this->templateId = $templateId;
- }
- public function getTemplateId()
- {
- return $this->templateId;
- }
-}
-
-class Postman_Google_Service_Fusiontables_TemplateList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Fusiontables_Template';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Games.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Games.php
deleted file mode 100644
index b8bcb53..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Games.php
+++ /dev/null
@@ -1,7421 +0,0 @@
-
- * The API for Google Play Game Services.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Games extends Postman_Google_Service -{ - /** View and manage its own configuration data in your Google Drive. */ - const DRIVE_APPDATA = - "https://www.googleapis.com/auth/drive.appdata"; - /** Share your Google+ profile information and view and manage your game activity. */ - const GAMES = - "https://www.googleapis.com/auth/games"; - /** Know your basic profile info and list of people in your circles.. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - - public $achievementDefinitions; - public $achievements; - public $applications; - public $events; - public $leaderboards; - public $metagame; - public $players; - public $pushtokens; - public $questMilestones; - public $quests; - public $revisions; - public $rooms; - public $scores; - public $snapshots; - public $turnBasedMatches; - - - /** - * Constructs the internal representation of the Games service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'games/v1/'; - $this->version = 'v1'; - $this->serviceName = 'games'; - - $this->achievementDefinitions = new Postman_Google_Service_Games_AchievementDefinitions_Resource( - $this, - $this->serviceName, - 'achievementDefinitions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'achievements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->achievements = new Postman_Google_Service_Games_Achievements_Resource( - $this, - $this->serviceName, - 'achievements', - array( - 'methods' => array( - 'increment' => array( - 'path' => 'achievements/{achievementId}/increment', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'stepsToIncrement' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/{playerId}/achievements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'state' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reveal' => array( - 'path' => 'achievements/{achievementId}/reveal', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setStepsAtLeast' => array( - 'path' => 'achievements/{achievementId}/setStepsAtLeast', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'steps' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'unlock' => array( - 'path' => 'achievements/{achievementId}/unlock', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateMultiple' => array( - 'path' => 'achievements/updateMultiple', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->applications = new Postman_Google_Service_Games_Applications_Resource( - $this, - $this->serviceName, - 'applications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'applications/{applicationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'platformType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'played' => array( - 'path' => 'applications/played', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->events = new Postman_Google_Service_Games_Events_Resource( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'listByPlayer' => array( - 'path' => 'events', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listDefinitions' => array( - 'path' => 'eventDefinitions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'record' => array( - 'path' => 'events', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->leaderboards = new Postman_Google_Service_Games_Leaderboards_Resource( - $this, - $this->serviceName, - 'leaderboards', - array( - 'methods' => array( - 'get' => array( - 'path' => 'leaderboards/{leaderboardId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'leaderboards', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->metagame = new Postman_Google_Service_Games_Metagame_Resource( - $this, - $this->serviceName, - 'metagame', - array( - 'methods' => array( - 'getMetagameConfig' => array( - 'path' => 'metagameConfig', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'listCategoriesByPlayer' => array( - 'path' => 'players/{playerId}/categories/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->players = new Postman_Google_Service_Games_Players_Resource( - $this, - $this->serviceName, - 'players', - array( - 'methods' => array( - 'get' => array( - 'path' => 'players/{playerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/me/players/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->pushtokens = new Postman_Google_Service_Games_Pushtokens_Resource( - $this, - $this->serviceName, - 'pushtokens', - array( - 'methods' => array( - 'remove' => array( - 'path' => 'pushtokens/remove', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'pushtokens', - 'httpMethod' => 'PUT', - 'parameters' => array(), - ), - ) - ) - ); - $this->questMilestones = new Postman_Google_Service_Games_QuestMilestones_Resource( - $this, - $this->serviceName, - 'questMilestones', - array( - 'methods' => array( - 'claim' => array( - 'path' => 'quests/{questId}/milestones/{milestoneId}/claim', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'questId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'milestoneId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->quests = new Postman_Google_Service_Games_Quests_Resource( - $this, - $this->serviceName, - 'quests', - array( - 'methods' => array( - 'accept' => array( - 'path' => 'quests/{questId}/accept', - 'httpMethod' => 'POST', - 'parameters' => array( - 'questId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/{playerId}/quests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->revisions = new Postman_Google_Service_Games_Revisions_Resource( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'check' => array( - 'path' => 'revisions/check', - 'httpMethod' => 'GET', - 'parameters' => array( - 'clientRevision' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->rooms = new Postman_Google_Service_Games_Rooms_Resource( - $this, - $this->serviceName, - 'rooms', - array( - 'methods' => array( - 'create' => array( - 'path' => 'rooms/create', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'decline' => array( - 'path' => 'rooms/{roomId}/decline', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'dismiss' => array( - 'path' => 'rooms/{roomId}/dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'rooms/{roomId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'join' => array( - 'path' => 'rooms/{roomId}/join', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'leave' => array( - 'path' => 'rooms/{roomId}/leave', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'rooms', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reportStatus' => array( - 'path' => 'rooms/{roomId}/reportstatus', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->scores = new Postman_Google_Service_Games_Scores_Resource( - $this, - $this->serviceName, - 'scores', - array( - 'methods' => array( - 'get' => array( - 'path' => 'players/{playerId}/leaderboards/{leaderboardId}/scores/{timeSpan}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeSpan' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeRankType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'leaderboards/{leaderboardId}/scores/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeSpan' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listWindow' => array( - 'path' => 'leaderboards/{leaderboardId}/window/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeSpan' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'returnTopIfAbsent' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'resultsAbove' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'submit' => array( - 'path' => 'leaderboards/{leaderboardId}/scores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'score' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scoreTag' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'submitMultiple' => array( - 'path' => 'leaderboards/scores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->snapshots = new Postman_Google_Service_Games_Snapshots_Resource( - $this, - $this->serviceName, - 'snapshots', - array( - 'methods' => array( - 'get' => array( - 'path' => 'snapshots/{snapshotId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'snapshotId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/{playerId}/snapshots', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->turnBasedMatches = new Postman_Google_Service_Games_TurnBasedMatches_Resource( - $this, - $this->serviceName, - 'turnBasedMatches', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'turnbasedmatches/{matchId}/cancel', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'turnbasedmatches/create', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'decline' => array( - 'path' => 'turnbasedmatches/{matchId}/decline', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'dismiss' => array( - 'path' => 'turnbasedmatches/{matchId}/dismiss', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'finish' => array( - 'path' => 'turnbasedmatches/{matchId}/finish', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'turnbasedmatches/{matchId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeMatchData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'join' => array( - 'path' => 'turnbasedmatches/{matchId}/join', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'leave' => array( - 'path' => 'turnbasedmatches/{matchId}/leave', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'leaveTurn' => array( - 'path' => 'turnbasedmatches/{matchId}/leaveTurn', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'matchVersion' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pendingParticipantId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'turnbasedmatches', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxCompletedMatches' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeMatchData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'rematch' => array( - 'path' => 'turnbasedmatches/{matchId}/rematch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'sync' => array( - 'path' => 'turnbasedmatches/sync', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxCompletedMatches' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeMatchData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'takeTurn' => array( - 'path' => 'turnbasedmatches/{matchId}/turn', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "achievementDefinitions" collection of methods. - * Typical usage is: - *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $achievementDefinitions = $gamesService->achievementDefinitions;
- *
- */
-class Postman_Google_Service_Games_AchievementDefinitions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists all the achievement definitions for your application.
- * (achievementDefinitions.listAchievementDefinitions)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of achievement resources to
- * return in the response, used for paging. For any response, the actual number
- * of achievement resources returned may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_AchievementDefinitionsListResponse
- */
- public function listAchievementDefinitions($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_AchievementDefinitionsListResponse");
- }
-}
-
-/**
- * The "achievements" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $achievements = $gamesService->achievements;
- *
- */
-class Postman_Google_Service_Games_Achievements_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Increments the steps of the achievement with the given ID for the currently
- * authenticated player. (achievements.increment)
- *
- * @param string $achievementId The ID of the achievement used by this method.
- * @param int $stepsToIncrement The number of steps to increment.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string requestId A randomly generated numeric ID for each request
- * specified by the caller. This number is used at the server to ensure that the
- * request is handled correctly across retries.
- * @return Postman_Google_Service_Games_AchievementIncrementResponse
- */
- public function increment($achievementId, $stepsToIncrement, $optParams = array())
- {
- $params = array('achievementId' => $achievementId, 'stepsToIncrement' => $stepsToIncrement);
- $params = array_merge($params, $optParams);
- return $this->call('increment', array($params), "Postman_Google_Service_Games_AchievementIncrementResponse");
- }
-
- /**
- * Lists the progress for all your application's achievements for the currently
- * authenticated player. (achievements.listAchievements)
- *
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string state Tells the server to return only achievements with the
- * specified state. If this parameter isn't specified, all achievements are
- * returned.
- * @opt_param int maxResults The maximum number of achievement resources to
- * return in the response, used for paging. For any response, the actual number
- * of achievement resources returned may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_PlayerAchievementListResponse
- */
- public function listAchievements($playerId, $optParams = array())
- {
- $params = array('playerId' => $playerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_PlayerAchievementListResponse");
- }
-
- /**
- * Sets the state of the achievement with the given ID to REVEALED for the
- * currently authenticated player. (achievements.reveal)
- *
- * @param string $achievementId The ID of the achievement used by this method.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Games_AchievementRevealResponse
- */
- public function reveal($achievementId, $optParams = array())
- {
- $params = array('achievementId' => $achievementId);
- $params = array_merge($params, $optParams);
- return $this->call('reveal', array($params), "Postman_Google_Service_Games_AchievementRevealResponse");
- }
-
- /**
- * Sets the steps for the currently authenticated player towards unlocking an
- * achievement. If the steps parameter is less than the current number of steps
- * that the player already gained for the achievement, the achievement is not
- * modified. (achievements.setStepsAtLeast)
- *
- * @param string $achievementId The ID of the achievement used by this method.
- * @param int $steps The minimum value to set the steps to.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Games_AchievementSetStepsAtLeastResponse
- */
- public function setStepsAtLeast($achievementId, $steps, $optParams = array())
- {
- $params = array('achievementId' => $achievementId, 'steps' => $steps);
- $params = array_merge($params, $optParams);
- return $this->call('setStepsAtLeast', array($params), "Postman_Google_Service_Games_AchievementSetStepsAtLeastResponse");
- }
-
- /**
- * Unlocks this achievement for the currently authenticated player.
- * (achievements.unlock)
- *
- * @param string $achievementId The ID of the achievement used by this method.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Games_AchievementUnlockResponse
- */
- public function unlock($achievementId, $optParams = array())
- {
- $params = array('achievementId' => $achievementId);
- $params = array_merge($params, $optParams);
- return $this->call('unlock', array($params), "Postman_Google_Service_Games_AchievementUnlockResponse");
- }
-
- /**
- * Updates multiple achievements for the currently authenticated player.
- * (achievements.updateMultiple)
- *
- * @param Postman_Google_AchievementUpdateMultipleRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Games_AchievementUpdateMultipleResponse
- */
- public function updateMultiple(Postman_Google_Service_Games_AchievementUpdateMultipleRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('updateMultiple', array($params), "Postman_Google_Service_Games_AchievementUpdateMultipleResponse");
- }
-}
-
-/**
- * The "applications" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $applications = $gamesService->applications;
- *
- */
-class Postman_Google_Service_Games_Applications_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the metadata of the application with the given ID. If the requested
- * application is not available for the specified platformType, the returned
- * response will not include any instance data. (applications.get)
- *
- * @param string $applicationId The application ID from the Google Play
- * developer console.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string platformType Restrict application details returned to the
- * specific platform.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Application
- */
- public function get($applicationId, $optParams = array())
- {
- $params = array('applicationId' => $applicationId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_Application");
- }
-
- /**
- * Indicate that the the currently authenticated user is playing your
- * application. (applications.played)
- *
- * @param array $optParams Optional parameters.
- */
- public function played($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('played', array($params));
- }
-}
-
-/**
- * The "events" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $events = $gamesService->events;
- *
- */
-class Postman_Google_Service_Games_Events_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list showing the current progress on events in this application for
- * the currently authenticated user. (events.listByPlayer)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of events to return in the
- * response, used for paging. For any response, the actual number of events to
- * return may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_PlayerEventListResponse
- */
- public function listByPlayer($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('listByPlayer', array($params), "Postman_Google_Service_Games_PlayerEventListResponse");
- }
-
- /**
- * Returns a list of the event definitions in this application.
- * (events.listDefinitions)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of event definitions to return
- * in the response, used for paging. For any response, the actual number of
- * event definitions to return may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_EventDefinitionListResponse
- */
- public function listDefinitions($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('listDefinitions', array($params), "Postman_Google_Service_Games_EventDefinitionListResponse");
- }
-
- /**
- * Records a batch of changes to the number of times events have occurred for
- * the currently authenticated user of this application. (events.record)
- *
- * @param Postman_Google_EventRecordRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_EventUpdateResponse
- */
- public function record(Postman_Google_Service_Games_EventRecordRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('record', array($params), "Postman_Google_Service_Games_EventUpdateResponse");
- }
-}
-
-/**
- * The "leaderboards" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $leaderboards = $gamesService->leaderboards;
- *
- */
-class Postman_Google_Service_Games_Leaderboards_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the metadata of the leaderboard with the given ID.
- * (leaderboards.get)
- *
- * @param string $leaderboardId The ID of the leaderboard.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Leaderboard
- */
- public function get($leaderboardId, $optParams = array())
- {
- $params = array('leaderboardId' => $leaderboardId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_Leaderboard");
- }
-
- /**
- * Lists all the leaderboard metadata for your application.
- * (leaderboards.listLeaderboards)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of leaderboards to return in the
- * response. For any response, the actual number of leaderboards returned may be
- * less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_LeaderboardListResponse
- */
- public function listLeaderboards($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_LeaderboardListResponse");
- }
-}
-
-/**
- * The "metagame" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $metagame = $gamesService->metagame;
- *
- */
-class Postman_Google_Service_Games_Metagame_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return the metagame configuration data for the calling application.
- * (metagame.getMetagameConfig)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Games_MetagameConfig
- */
- public function getMetagameConfig($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('getMetagameConfig', array($params), "Postman_Google_Service_Games_MetagameConfig");
- }
-
- /**
- * List play data aggregated per category for the player corresponding to
- * playerId. (metagame.listCategoriesByPlayer)
- *
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param string $collection The collection of categories for which data will be
- * returned.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of category resources to return
- * in the response, used for paging. For any response, the actual number of
- * category resources returned may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_CategoryListResponse
- */
- public function listCategoriesByPlayer($playerId, $collection, $optParams = array())
- {
- $params = array('playerId' => $playerId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('listCategoriesByPlayer', array($params), "Postman_Google_Service_Games_CategoryListResponse");
- }
-}
-
-/**
- * The "players" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $players = $gamesService->players;
- *
- */
-class Postman_Google_Service_Games_Players_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the Player resource with the given ID. To retrieve the player for
- * the currently authenticated user, set playerId to me. (players.get)
- *
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Player
- */
- public function get($playerId, $optParams = array())
- {
- $params = array('playerId' => $playerId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_Player");
- }
-
- /**
- * Get the collection of players for the currently authenticated user.
- * (players.listPlayers)
- *
- * @param string $collection Collection of players being retrieved
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of player resources to return in
- * the response, used for paging. For any response, the actual number of player
- * resources returned may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_PlayerListResponse
- */
- public function listPlayers($collection, $optParams = array())
- {
- $params = array('collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_PlayerListResponse");
- }
-}
-
-/**
- * The "pushtokens" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $pushtokens = $gamesService->pushtokens;
- *
- */
-class Postman_Google_Service_Games_Pushtokens_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes a push token for the current user and application. Removing a non-
- * existent push token will report success. (pushtokens.remove)
- *
- * @param Postman_Google_PushTokenId $postBody
- * @param array $optParams Optional parameters.
- */
- public function remove(Postman_Google_Service_Games_PushTokenId $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('remove', array($params));
- }
-
- /**
- * Registers a push token for the current user and application.
- * (pushtokens.update)
- *
- * @param Postman_Google_PushToken $postBody
- * @param array $optParams Optional parameters.
- */
- public function update(Postman_Google_Service_Games_PushToken $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params));
- }
-}
-
-/**
- * The "questMilestones" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $questMilestones = $gamesService->questMilestones;
- *
- */
-class Postman_Google_Service_Games_QuestMilestones_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Report that a reward for the milestone corresponding to milestoneId for the
- * quest corresponding to questId has been claimed by the currently authorized
- * user. (questMilestones.claim)
- *
- * @param string $questId The ID of the quest.
- * @param string $milestoneId The ID of the milestone.
- * @param string $requestId A numeric ID to ensure that the request is handled
- * correctly across retries. Your client application must generate this ID
- * randomly.
- * @param array $optParams Optional parameters.
- */
- public function claim($questId, $milestoneId, $requestId, $optParams = array())
- {
- $params = array('questId' => $questId, 'milestoneId' => $milestoneId, 'requestId' => $requestId);
- $params = array_merge($params, $optParams);
- return $this->call('claim', array($params));
- }
-}
-
-/**
- * The "quests" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $quests = $gamesService->quests;
- *
- */
-class Postman_Google_Service_Games_Quests_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Indicates that the currently authorized user will participate in the quest.
- * (quests.accept)
- *
- * @param string $questId The ID of the quest.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Quest
- */
- public function accept($questId, $optParams = array())
- {
- $params = array('questId' => $questId);
- $params = array_merge($params, $optParams);
- return $this->call('accept', array($params), "Postman_Google_Service_Games_Quest");
- }
-
- /**
- * Get a list of quests for your application and the currently authenticated
- * player. (quests.listQuests)
- *
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of quest resources to return in
- * the response, used for paging. For any response, the actual number of quest
- * resources returned may be less than the specified maxResults. Acceptable
- * values are 1 to 50, inclusive. (Default: 50).
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_QuestListResponse
- */
- public function listQuests($playerId, $optParams = array())
- {
- $params = array('playerId' => $playerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_QuestListResponse");
- }
-}
-
-/**
- * The "revisions" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $revisions = $gamesService->revisions;
- *
- */
-class Postman_Google_Service_Games_Revisions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Checks whether the games client is out of date. (revisions.check)
- *
- * @param string $clientRevision The revision of the client SDK used by your
- * application. Format: [PLATFORM_TYPE]:[VERSION_NUMBER]. Possible values of
- * PLATFORM_TYPE are: - "ANDROID" - Client is running the Android SDK. -
- * "IOS" - Client is running the iOS SDK. - "WEB_APP" - Client is running as a
- * Web App.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Games_RevisionCheckResponse
- */
- public function check($clientRevision, $optParams = array())
- {
- $params = array('clientRevision' => $clientRevision);
- $params = array_merge($params, $optParams);
- return $this->call('check', array($params), "Postman_Google_Service_Games_RevisionCheckResponse");
- }
-}
-
-/**
- * The "rooms" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $rooms = $gamesService->rooms;
- *
- */
-class Postman_Google_Service_Games_Rooms_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Create a room. For internal use by the Games SDK only. Calling this method
- * directly is unsupported. (rooms.create)
- *
- * @param Postman_Google_RoomCreateRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Room
- */
- public function create(Postman_Google_Service_Games_RoomCreateRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Games_Room");
- }
-
- /**
- * Decline an invitation to join a room. For internal use by the Games SDK only.
- * Calling this method directly is unsupported. (rooms.decline)
- *
- * @param string $roomId The ID of the room.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Room
- */
- public function decline($roomId, $optParams = array())
- {
- $params = array('roomId' => $roomId);
- $params = array_merge($params, $optParams);
- return $this->call('decline', array($params), "Postman_Google_Service_Games_Room");
- }
-
- /**
- * Dismiss an invitation to join a room. For internal use by the Games SDK only.
- * Calling this method directly is unsupported. (rooms.dismiss)
- *
- * @param string $roomId The ID of the room.
- * @param array $optParams Optional parameters.
- */
- public function dismiss($roomId, $optParams = array())
- {
- $params = array('roomId' => $roomId);
- $params = array_merge($params, $optParams);
- return $this->call('dismiss', array($params));
- }
-
- /**
- * Get the data for a room. (rooms.get)
- *
- * @param string $roomId The ID of the room.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Room
- */
- public function get($roomId, $optParams = array())
- {
- $params = array('roomId' => $roomId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_Room");
- }
-
- /**
- * Join a room. For internal use by the Games SDK only. Calling this method
- * directly is unsupported. (rooms.join)
- *
- * @param string $roomId The ID of the room.
- * @param Postman_Google_RoomJoinRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Room
- */
- public function join($roomId, Postman_Google_Service_Games_RoomJoinRequest $postBody, $optParams = array())
- {
- $params = array('roomId' => $roomId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('join', array($params), "Postman_Google_Service_Games_Room");
- }
-
- /**
- * Leave a room. For internal use by the Games SDK only. Calling this method
- * directly is unsupported. (rooms.leave)
- *
- * @param string $roomId The ID of the room.
- * @param Postman_Google_RoomLeaveRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Room
- */
- public function leave($roomId, Postman_Google_Service_Games_RoomLeaveRequest $postBody, $optParams = array())
- {
- $params = array('roomId' => $roomId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('leave', array($params), "Postman_Google_Service_Games_Room");
- }
-
- /**
- * Returns invitations to join rooms. (rooms.listRooms)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of rooms to return in the
- * response, used for paging. For any response, the actual number of rooms to
- * return may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_RoomList
- */
- public function listRooms($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_RoomList");
- }
-
- /**
- * Updates sent by a client reporting the status of peers in a room. For
- * internal use by the Games SDK only. Calling this method directly is
- * unsupported. (rooms.reportStatus)
- *
- * @param string $roomId The ID of the room.
- * @param Postman_Google_RoomP2PStatuses $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_RoomStatus
- */
- public function reportStatus($roomId, Postman_Google_Service_Games_RoomP2PStatuses $postBody, $optParams = array())
- {
- $params = array('roomId' => $roomId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('reportStatus', array($params), "Postman_Google_Service_Games_RoomStatus");
- }
-}
-
-/**
- * The "scores" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $scores = $gamesService->scores;
- *
- */
-class Postman_Google_Service_Games_Scores_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get high scores, and optionally ranks, in leaderboards for the currently
- * authenticated player. For a specific time span, leaderboardId can be set to
- * ALL to retrieve data for all leaderboards in a given time span. NOTE: You
- * cannot ask for 'ALL' leaderboards and 'ALL' timeSpans in the same request;
- * only one parameter may be set to 'ALL'. (scores.get)
- *
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param string $leaderboardId The ID of the leaderboard. Can be set to 'ALL'
- * to retrieve data for all leaderboards for this application.
- * @param string $timeSpan The time span for the scores and ranks you're
- * requesting.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string includeRankType The types of ranks to return. If the
- * parameter is omitted, no ranks will be returned.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param int maxResults The maximum number of leaderboard scores to return
- * in the response. For any response, the actual number of leaderboard scores
- * returned may be less than the specified maxResults.
- * @opt_param string pageToken The token returned by the previous request.
- * @return Postman_Google_Service_Games_PlayerLeaderboardScoreListResponse
- */
- public function get($playerId, $leaderboardId, $timeSpan, $optParams = array())
- {
- $params = array('playerId' => $playerId, 'leaderboardId' => $leaderboardId, 'timeSpan' => $timeSpan);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_PlayerLeaderboardScoreListResponse");
- }
-
- /**
- * Lists the scores in a leaderboard, starting from the top. (scores.listScores)
- *
- * @param string $leaderboardId The ID of the leaderboard.
- * @param string $collection The collection of scores you're requesting.
- * @param string $timeSpan The time span for the scores and ranks you're
- * requesting.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param int maxResults The maximum number of leaderboard scores to return
- * in the response. For any response, the actual number of leaderboard scores
- * returned may be less than the specified maxResults.
- * @opt_param string pageToken The token returned by the previous request.
- * @return Postman_Google_Service_Games_LeaderboardScores
- */
- public function listScores($leaderboardId, $collection, $timeSpan, $optParams = array())
- {
- $params = array('leaderboardId' => $leaderboardId, 'collection' => $collection, 'timeSpan' => $timeSpan);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_LeaderboardScores");
- }
-
- /**
- * Lists the scores in a leaderboard around (and including) a player's score.
- * (scores.listWindow)
- *
- * @param string $leaderboardId The ID of the leaderboard.
- * @param string $collection The collection of scores you're requesting.
- * @param string $timeSpan The time span for the scores and ranks you're
- * requesting.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param bool returnTopIfAbsent True if the top scores should be returned
- * when the player is not in the leaderboard. Defaults to true.
- * @opt_param int resultsAbove The preferred number of scores to return above
- * the player's score. More scores may be returned if the player is at the
- * bottom of the leaderboard; fewer may be returned if the player is at the top.
- * Must be less than or equal to maxResults.
- * @opt_param int maxResults The maximum number of leaderboard scores to return
- * in the response. For any response, the actual number of leaderboard scores
- * returned may be less than the specified maxResults.
- * @opt_param string pageToken The token returned by the previous request.
- * @return Postman_Google_Service_Games_LeaderboardScores
- */
- public function listWindow($leaderboardId, $collection, $timeSpan, $optParams = array())
- {
- $params = array('leaderboardId' => $leaderboardId, 'collection' => $collection, 'timeSpan' => $timeSpan);
- $params = array_merge($params, $optParams);
- return $this->call('listWindow', array($params), "Postman_Google_Service_Games_LeaderboardScores");
- }
-
- /**
- * Submits a score to the specified leaderboard. (scores.submit)
- *
- * @param string $leaderboardId The ID of the leaderboard.
- * @param string $score The score you're submitting. The submitted score is
- * ignored if it is worse than a previously submitted score, where worse depends
- * on the leaderboard sort order. The meaning of the score value depends on the
- * leaderboard format type. For fixed-point, the score represents the raw value.
- * For time, the score represents elapsed time in milliseconds. For currency,
- * the score represents a value in micro units.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param string scoreTag Additional information about the score you're
- * submitting. Values must contain no more than 64 URI-safe characters as
- * defined by section 2.3 of RFC 3986.
- * @return Postman_Google_Service_Games_PlayerScoreResponse
- */
- public function submit($leaderboardId, $score, $optParams = array())
- {
- $params = array('leaderboardId' => $leaderboardId, 'score' => $score);
- $params = array_merge($params, $optParams);
- return $this->call('submit', array($params), "Postman_Google_Service_Games_PlayerScoreResponse");
- }
-
- /**
- * Submits multiple scores to leaderboards. (scores.submitMultiple)
- *
- * @param Postman_Google_PlayerScoreSubmissionList $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_PlayerScoreListResponse
- */
- public function submitMultiple(Postman_Google_Service_Games_PlayerScoreSubmissionList $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('submitMultiple', array($params), "Postman_Google_Service_Games_PlayerScoreListResponse");
- }
-}
-
-/**
- * The "snapshots" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $snapshots = $gamesService->snapshots;
- *
- */
-class Postman_Google_Service_Games_Snapshots_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the metadata for a given snapshot ID. (snapshots.get)
- *
- * @param string $snapshotId The ID of the snapshot.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_Snapshot
- */
- public function get($snapshotId, $optParams = array())
- {
- $params = array('snapshotId' => $snapshotId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_Snapshot");
- }
-
- /**
- * Retrieves a list of snapshots created by your application for the player
- * corresponding to the player ID. (snapshots.listSnapshots)
- *
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of snapshot resources to return
- * in the response, used for paging. For any response, the actual number of
- * snapshot resources returned may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_SnapshotListResponse
- */
- public function listSnapshots($playerId, $optParams = array())
- {
- $params = array('playerId' => $playerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_SnapshotListResponse");
- }
-}
-
-/**
- * The "turnBasedMatches" collection of methods.
- * Typical usage is:
- *
- * $gamesService = new Postman_Google_Service_Games(...);
- * $turnBasedMatches = $gamesService->turnBasedMatches;
- *
- */
-class Postman_Google_Service_Games_TurnBasedMatches_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Cancel a turn-based match. (turnBasedMatches.cancel)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- */
- public function cancel($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('cancel', array($params));
- }
-
- /**
- * Create a turn-based match. (turnBasedMatches.create)
- *
- * @param Postman_Google_TurnBasedMatchCreateRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function create(Postman_Google_Service_Games_TurnBasedMatchCreateRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Decline an invitation to play a turn-based match. (turnBasedMatches.decline)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function decline($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('decline', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Dismiss a turn-based match from the match list. The match will no longer show
- * up in the list and will not generate notifications.
- * (turnBasedMatches.dismiss)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- */
- public function dismiss($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('dismiss', array($params));
- }
-
- /**
- * Finish a turn-based match. Each player should make this call once, after all
- * results are in. Only the player whose turn it is may make the first call to
- * Finish, and can pass in the final match state. (turnBasedMatches.finish)
- *
- * @param string $matchId The ID of the match.
- * @param Postman_Google_TurnBasedMatchResults $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function finish($matchId, Postman_Google_Service_Games_TurnBasedMatchResults $postBody, $optParams = array())
- {
- $params = array('matchId' => $matchId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('finish', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Get the data for a turn-based match. (turnBasedMatches.get)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param bool includeMatchData Get match data along with metadata.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function get($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Join a turn-based match. (turnBasedMatches.join)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function join($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('join', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Leave a turn-based match when it is not the current player's turn, without
- * canceling the match. (turnBasedMatches.leave)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function leave($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('leave', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Leave a turn-based match during the current player's turn, without canceling
- * the match. (turnBasedMatches.leaveTurn)
- *
- * @param string $matchId The ID of the match.
- * @param int $matchVersion The version of the match being updated.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param string pendingParticipantId The ID of another participant who
- * should take their turn next. If not set, the match will wait for other
- * player(s) to join via automatching; this is only valid if automatch criteria
- * is set on the match with remaining slots for automatched players.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function leaveTurn($matchId, $matchVersion, $optParams = array())
- {
- $params = array('matchId' => $matchId, 'matchVersion' => $matchVersion);
- $params = array_merge($params, $optParams);
- return $this->call('leaveTurn', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-
- /**
- * Returns turn-based matches the player is or was involved in.
- * (turnBasedMatches.listTurnBasedMatches)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxCompletedMatches The maximum number of completed or
- * canceled matches to return in the response. If not set, all matches returned
- * could be completed or canceled.
- * @opt_param int maxResults The maximum number of matches to return in the
- * response, used for paging. For any response, the actual number of matches to
- * return may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param bool includeMatchData True if match data should be returned in the
- * response. Note that not all data will necessarily be returned if
- * include_match_data is true; the server may decide to only return data for
- * some of the matches to limit download size for the client. The remainder of
- * the data for these matches will be retrievable on request.
- * @return Postman_Google_Service_Games_TurnBasedMatchList
- */
- public function listTurnBasedMatches($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Games_TurnBasedMatchList");
- }
-
- /**
- * Create a rematch of a match that was previously completed, with the same
- * participants. This can be called by only one player on a match still in their
- * list; the player must have called Finish first. Returns the newly created
- * match; it will be the caller's turn. (turnBasedMatches.rematch)
- *
- * @param string $matchId The ID of the match.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string requestId A randomly generated numeric ID for each request
- * specified by the caller. This number is used at the server to ensure that the
- * request is handled correctly across retries.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatchRematch
- */
- public function rematch($matchId, $optParams = array())
- {
- $params = array('matchId' => $matchId);
- $params = array_merge($params, $optParams);
- return $this->call('rematch', array($params), "Postman_Google_Service_Games_TurnBasedMatchRematch");
- }
-
- /**
- * Returns turn-based matches the player is or was involved in that changed
- * since the last sync call, with the least recent changes coming first. Matches
- * that should be removed from the local cache will have a status of
- * MATCH_DELETED. (turnBasedMatches.sync)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxCompletedMatches The maximum number of completed or
- * canceled matches to return in the response. If not set, all matches returned
- * could be completed or canceled.
- * @opt_param int maxResults The maximum number of matches to return in the
- * response, used for paging. For any response, the actual number of matches to
- * return may be less than the specified maxResults.
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @opt_param bool includeMatchData True if match data should be returned in the
- * response. Note that not all data will necessarily be returned if
- * include_match_data is true; the server may decide to only return data for
- * some of the matches to limit download size for the client. The remainder of
- * the data for these matches will be retrievable on request.
- * @return Postman_Google_Service_Games_TurnBasedMatchSync
- */
- public function sync($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('sync', array($params), "Postman_Google_Service_Games_TurnBasedMatchSync");
- }
-
- /**
- * Commit the results of a player turn. (turnBasedMatches.takeTurn)
- *
- * @param string $matchId The ID of the match.
- * @param Postman_Google_TurnBasedMatchTurn $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string language The preferred language to use for strings returned
- * by this method.
- * @return Postman_Google_Service_Games_TurnBasedMatch
- */
- public function takeTurn($matchId, Postman_Google_Service_Games_TurnBasedMatchTurn $postBody, $optParams = array())
- {
- $params = array('matchId' => $matchId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('takeTurn', array($params), "Postman_Google_Service_Games_TurnBasedMatch");
- }
-}
-
-
-
-
-class Postman_Google_Service_Games_AchievementDefinition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $achievementType;
- public $description;
- public $experiencePoints;
- public $formattedTotalSteps;
- public $id;
- public $initialState;
- public $isRevealedIconUrlDefault;
- public $isUnlockedIconUrlDefault;
- public $kind;
- public $name;
- public $revealedIconUrl;
- public $totalSteps;
- public $unlockedIconUrl;
-
-
- public function setAchievementType($achievementType)
- {
- $this->achievementType = $achievementType;
- }
- public function getAchievementType()
- {
- return $this->achievementType;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setExperiencePoints($experiencePoints)
- {
- $this->experiencePoints = $experiencePoints;
- }
- public function getExperiencePoints()
- {
- return $this->experiencePoints;
- }
- public function setFormattedTotalSteps($formattedTotalSteps)
- {
- $this->formattedTotalSteps = $formattedTotalSteps;
- }
- public function getFormattedTotalSteps()
- {
- return $this->formattedTotalSteps;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInitialState($initialState)
- {
- $this->initialState = $initialState;
- }
- public function getInitialState()
- {
- return $this->initialState;
- }
- public function setIsRevealedIconUrlDefault($isRevealedIconUrlDefault)
- {
- $this->isRevealedIconUrlDefault = $isRevealedIconUrlDefault;
- }
- public function getIsRevealedIconUrlDefault()
- {
- return $this->isRevealedIconUrlDefault;
- }
- public function setIsUnlockedIconUrlDefault($isUnlockedIconUrlDefault)
- {
- $this->isUnlockedIconUrlDefault = $isUnlockedIconUrlDefault;
- }
- public function getIsUnlockedIconUrlDefault()
- {
- return $this->isUnlockedIconUrlDefault;
- }
- 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 setRevealedIconUrl($revealedIconUrl)
- {
- $this->revealedIconUrl = $revealedIconUrl;
- }
- public function getRevealedIconUrl()
- {
- return $this->revealedIconUrl;
- }
- public function setTotalSteps($totalSteps)
- {
- $this->totalSteps = $totalSteps;
- }
- public function getTotalSteps()
- {
- return $this->totalSteps;
- }
- public function setUnlockedIconUrl($unlockedIconUrl)
- {
- $this->unlockedIconUrl = $unlockedIconUrl;
- }
- public function getUnlockedIconUrl()
- {
- return $this->unlockedIconUrl;
- }
-}
-
-class Postman_Google_Service_Games_AchievementDefinitionsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_AchievementDefinition';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_AchievementIncrementResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentSteps;
- public $kind;
- public $newlyUnlocked;
-
-
- public function setCurrentSteps($currentSteps)
- {
- $this->currentSteps = $currentSteps;
- }
- public function getCurrentSteps()
- {
- return $this->currentSteps;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNewlyUnlocked($newlyUnlocked)
- {
- $this->newlyUnlocked = $newlyUnlocked;
- }
- public function getNewlyUnlocked()
- {
- return $this->newlyUnlocked;
- }
-}
-
-class Postman_Google_Service_Games_AchievementRevealResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentState;
- public $kind;
-
-
- public function setCurrentState($currentState)
- {
- $this->currentState = $currentState;
- }
- public function getCurrentState()
- {
- return $this->currentState;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_AchievementSetStepsAtLeastResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentSteps;
- public $kind;
- public $newlyUnlocked;
-
-
- public function setCurrentSteps($currentSteps)
- {
- $this->currentSteps = $currentSteps;
- }
- public function getCurrentSteps()
- {
- return $this->currentSteps;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNewlyUnlocked($newlyUnlocked)
- {
- $this->newlyUnlocked = $newlyUnlocked;
- }
- public function getNewlyUnlocked()
- {
- return $this->newlyUnlocked;
- }
-}
-
-class Postman_Google_Service_Games_AchievementUnlockResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $newlyUnlocked;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNewlyUnlocked($newlyUnlocked)
- {
- $this->newlyUnlocked = $newlyUnlocked;
- }
- public function getNewlyUnlocked()
- {
- return $this->newlyUnlocked;
- }
-}
-
-class Postman_Google_Service_Games_AchievementUpdateMultipleRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'updates';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $updatesType = 'Postman_Google_Service_Games_AchievementUpdateRequest';
- protected $updatesDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUpdates($updates)
- {
- $this->updates = $updates;
- }
- public function getUpdates()
- {
- return $this->updates;
- }
-}
-
-class Postman_Google_Service_Games_AchievementUpdateMultipleResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'updatedAchievements';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $updatedAchievementsType = 'Postman_Google_Service_Games_AchievementUpdateResponse';
- protected $updatedAchievementsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUpdatedAchievements($updatedAchievements)
- {
- $this->updatedAchievements = $updatedAchievements;
- }
- public function getUpdatedAchievements()
- {
- return $this->updatedAchievements;
- }
-}
-
-class Postman_Google_Service_Games_AchievementUpdateRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $achievementId;
- protected $incrementPayloadType = 'Postman_Google_Service_Games_GamesAchievementIncrement';
- protected $incrementPayloadDataType = '';
- public $kind;
- protected $setStepsAtLeastPayloadType = 'Postman_Google_Service_Games_GamesAchievementSetStepsAtLeast';
- protected $setStepsAtLeastPayloadDataType = '';
- public $updateType;
-
-
- public function setAchievementId($achievementId)
- {
- $this->achievementId = $achievementId;
- }
- public function getAchievementId()
- {
- return $this->achievementId;
- }
- public function setIncrementPayload(Postman_Google_Service_Games_GamesAchievementIncrement $incrementPayload)
- {
- $this->incrementPayload = $incrementPayload;
- }
- public function getIncrementPayload()
- {
- return $this->incrementPayload;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSetStepsAtLeastPayload(Postman_Google_Service_Games_GamesAchievementSetStepsAtLeast $setStepsAtLeastPayload)
- {
- $this->setStepsAtLeastPayload = $setStepsAtLeastPayload;
- }
- public function getSetStepsAtLeastPayload()
- {
- return $this->setStepsAtLeastPayload;
- }
- public function setUpdateType($updateType)
- {
- $this->updateType = $updateType;
- }
- public function getUpdateType()
- {
- return $this->updateType;
- }
-}
-
-class Postman_Google_Service_Games_AchievementUpdateResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $achievementId;
- public $currentState;
- public $currentSteps;
- public $kind;
- public $newlyUnlocked;
- public $updateOccurred;
-
-
- public function setAchievementId($achievementId)
- {
- $this->achievementId = $achievementId;
- }
- public function getAchievementId()
- {
- return $this->achievementId;
- }
- public function setCurrentState($currentState)
- {
- $this->currentState = $currentState;
- }
- public function getCurrentState()
- {
- return $this->currentState;
- }
- public function setCurrentSteps($currentSteps)
- {
- $this->currentSteps = $currentSteps;
- }
- public function getCurrentSteps()
- {
- return $this->currentSteps;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNewlyUnlocked($newlyUnlocked)
- {
- $this->newlyUnlocked = $newlyUnlocked;
- }
- public function getNewlyUnlocked()
- {
- return $this->newlyUnlocked;
- }
- public function setUpdateOccurred($updateOccurred)
- {
- $this->updateOccurred = $updateOccurred;
- }
- public function getUpdateOccurred()
- {
- return $this->updateOccurred;
- }
-}
-
-class Postman_Google_Service_Games_AggregateStats extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $kind;
- public $max;
- public $min;
- public $sum;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
- public function setSum($sum)
- {
- $this->sum = $sum;
- }
- public function getSum()
- {
- return $this->sum;
- }
-}
-
-class Postman_Google_Service_Games_AnonymousPlayer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $avatarImageUrl;
- public $displayName;
- public $kind;
-
-
- public function setAvatarImageUrl($avatarImageUrl)
- {
- $this->avatarImageUrl = $avatarImageUrl;
- }
- public function getAvatarImageUrl()
- {
- return $this->avatarImageUrl;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_Application extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- "achievementCount" => "achievement_count",
- "leaderboardCount" => "leaderboard_count",
- );
- public $achievementCount;
- protected $assetsType = 'Postman_Google_Service_Games_ImageAsset';
- protected $assetsDataType = 'array';
- public $author;
- protected $categoryType = 'Postman_Google_Service_Games_ApplicationCategory';
- protected $categoryDataType = '';
- public $description;
- public $enabledFeatures;
- public $id;
- protected $instancesType = 'Postman_Google_Service_Games_Instance';
- protected $instancesDataType = 'array';
- public $kind;
- public $lastUpdatedTimestamp;
- public $leaderboardCount;
- public $name;
- public $themeColor;
-
-
- public function setAchievementCount($achievementCount)
- {
- $this->achievementCount = $achievementCount;
- }
- public function getAchievementCount()
- {
- return $this->achievementCount;
- }
- public function setAssets($assets)
- {
- $this->assets = $assets;
- }
- public function getAssets()
- {
- return $this->assets;
- }
- public function setAuthor($author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setCategory(Postman_Google_Service_Games_ApplicationCategory $category)
- {
- $this->category = $category;
- }
- public function getCategory()
- {
- return $this->category;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEnabledFeatures($enabledFeatures)
- {
- $this->enabledFeatures = $enabledFeatures;
- }
- public function getEnabledFeatures()
- {
- return $this->enabledFeatures;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastUpdatedTimestamp($lastUpdatedTimestamp)
- {
- $this->lastUpdatedTimestamp = $lastUpdatedTimestamp;
- }
- public function getLastUpdatedTimestamp()
- {
- return $this->lastUpdatedTimestamp;
- }
- public function setLeaderboardCount($leaderboardCount)
- {
- $this->leaderboardCount = $leaderboardCount;
- }
- public function getLeaderboardCount()
- {
- return $this->leaderboardCount;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setThemeColor($themeColor)
- {
- $this->themeColor = $themeColor;
- }
- public function getThemeColor()
- {
- return $this->themeColor;
- }
-}
-
-class Postman_Google_Service_Games_ApplicationCategory extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $primary;
- public $secondary;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setSecondary($secondary)
- {
- $this->secondary = $secondary;
- }
- public function getSecondary()
- {
- return $this->secondary;
- }
-}
-
-class Postman_Google_Service_Games_Category extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $category;
- public $experiencePoints;
- public $kind;
-
-
- public function setCategory($category)
- {
- $this->category = $category;
- }
- public function getCategory()
- {
- return $this->category;
- }
- public function setExperiencePoints($experiencePoints)
- {
- $this->experiencePoints = $experiencePoints;
- }
- public function getExperiencePoints()
- {
- return $this->experiencePoints;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_CategoryListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_Category';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_EventBatchRecordFailure extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $failureCause;
- public $kind;
- protected $rangeType = 'Postman_Google_Service_Games_EventPeriodRange';
- protected $rangeDataType = '';
-
-
- public function setFailureCause($failureCause)
- {
- $this->failureCause = $failureCause;
- }
- public function getFailureCause()
- {
- return $this->failureCause;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRange(Postman_Google_Service_Games_EventPeriodRange $range)
- {
- $this->range = $range;
- }
- public function getRange()
- {
- return $this->range;
- }
-}
-
-class Postman_Google_Service_Games_EventChild extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $childId;
- public $kind;
-
-
- public function setChildId($childId)
- {
- $this->childId = $childId;
- }
- public function getChildId()
- {
- return $this->childId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_EventDefinition extends Postman_Google_Collection
-{
- protected $collection_key = 'childEvents';
- protected $internal_gapi_mappings = array(
- );
- protected $childEventsType = 'Postman_Google_Service_Games_EventChild';
- protected $childEventsDataType = 'array';
- public $description;
- public $displayName;
- public $id;
- public $imageUrl;
- public $isDefaultImageUrl;
- public $kind;
- public $visibility;
-
-
- public function setChildEvents($childEvents)
- {
- $this->childEvents = $childEvents;
- }
- public function getChildEvents()
- {
- return $this->childEvents;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImageUrl($imageUrl)
- {
- $this->imageUrl = $imageUrl;
- }
- public function getImageUrl()
- {
- return $this->imageUrl;
- }
- public function setIsDefaultImageUrl($isDefaultImageUrl)
- {
- $this->isDefaultImageUrl = $isDefaultImageUrl;
- }
- public function getIsDefaultImageUrl()
- {
- return $this->isDefaultImageUrl;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_Games_EventDefinitionListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_EventDefinition';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_EventPeriodRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $periodEndMillis;
- public $periodStartMillis;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPeriodEndMillis($periodEndMillis)
- {
- $this->periodEndMillis = $periodEndMillis;
- }
- public function getPeriodEndMillis()
- {
- return $this->periodEndMillis;
- }
- public function setPeriodStartMillis($periodStartMillis)
- {
- $this->periodStartMillis = $periodStartMillis;
- }
- public function getPeriodStartMillis()
- {
- return $this->periodStartMillis;
- }
-}
-
-class Postman_Google_Service_Games_EventPeriodUpdate extends Postman_Google_Collection
-{
- protected $collection_key = 'updates';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $timePeriodType = 'Postman_Google_Service_Games_EventPeriodRange';
- protected $timePeriodDataType = '';
- protected $updatesType = 'Postman_Google_Service_Games_EventUpdateRequest';
- protected $updatesDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTimePeriod(Postman_Google_Service_Games_EventPeriodRange $timePeriod)
- {
- $this->timePeriod = $timePeriod;
- }
- public function getTimePeriod()
- {
- return $this->timePeriod;
- }
- public function setUpdates($updates)
- {
- $this->updates = $updates;
- }
- public function getUpdates()
- {
- return $this->updates;
- }
-}
-
-class Postman_Google_Service_Games_EventRecordFailure extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $eventId;
- public $failureCause;
- public $kind;
-
-
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setFailureCause($failureCause)
- {
- $this->failureCause = $failureCause;
- }
- public function getFailureCause()
- {
- return $this->failureCause;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_EventRecordRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'timePeriods';
- protected $internal_gapi_mappings = array(
- );
- public $currentTimeMillis;
- public $kind;
- public $requestId;
- protected $timePeriodsType = 'Postman_Google_Service_Games_EventPeriodUpdate';
- protected $timePeriodsDataType = 'array';
-
-
- public function setCurrentTimeMillis($currentTimeMillis)
- {
- $this->currentTimeMillis = $currentTimeMillis;
- }
- public function getCurrentTimeMillis()
- {
- return $this->currentTimeMillis;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRequestId($requestId)
- {
- $this->requestId = $requestId;
- }
- public function getRequestId()
- {
- return $this->requestId;
- }
- public function setTimePeriods($timePeriods)
- {
- $this->timePeriods = $timePeriods;
- }
- public function getTimePeriods()
- {
- return $this->timePeriods;
- }
-}
-
-class Postman_Google_Service_Games_EventUpdateRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $definitionId;
- public $kind;
- public $updateCount;
-
-
- public function setDefinitionId($definitionId)
- {
- $this->definitionId = $definitionId;
- }
- public function getDefinitionId()
- {
- return $this->definitionId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUpdateCount($updateCount)
- {
- $this->updateCount = $updateCount;
- }
- public function getUpdateCount()
- {
- return $this->updateCount;
- }
-}
-
-class Postman_Google_Service_Games_EventUpdateResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'playerEvents';
- protected $internal_gapi_mappings = array(
- );
- protected $batchFailuresType = 'Postman_Google_Service_Games_EventBatchRecordFailure';
- protected $batchFailuresDataType = 'array';
- protected $eventFailuresType = 'Postman_Google_Service_Games_EventRecordFailure';
- protected $eventFailuresDataType = 'array';
- public $kind;
- protected $playerEventsType = 'Postman_Google_Service_Games_PlayerEvent';
- protected $playerEventsDataType = 'array';
-
-
- public function setBatchFailures($batchFailures)
- {
- $this->batchFailures = $batchFailures;
- }
- public function getBatchFailures()
- {
- return $this->batchFailures;
- }
- public function setEventFailures($eventFailures)
- {
- $this->eventFailures = $eventFailures;
- }
- public function getEventFailures()
- {
- return $this->eventFailures;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlayerEvents($playerEvents)
- {
- $this->playerEvents = $playerEvents;
- }
- public function getPlayerEvents()
- {
- return $this->playerEvents;
- }
-}
-
-class Postman_Google_Service_Games_GamesAchievementIncrement extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $requestId;
- public $steps;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRequestId($requestId)
- {
- $this->requestId = $requestId;
- }
- public function getRequestId()
- {
- return $this->requestId;
- }
- public function setSteps($steps)
- {
- $this->steps = $steps;
- }
- public function getSteps()
- {
- return $this->steps;
- }
-}
-
-class Postman_Google_Service_Games_GamesAchievementSetStepsAtLeast extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $steps;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSteps($steps)
- {
- $this->steps = $steps;
- }
- public function getSteps()
- {
- return $this->steps;
- }
-}
-
-class Postman_Google_Service_Games_ImageAsset extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $kind;
- public $name;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- 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 setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Games_Instance extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $acquisitionUri;
- protected $androidInstanceType = 'Postman_Google_Service_Games_InstanceAndroidDetails';
- protected $androidInstanceDataType = '';
- protected $iosInstanceType = 'Postman_Google_Service_Games_InstanceIosDetails';
- protected $iosInstanceDataType = '';
- public $kind;
- public $name;
- public $platformType;
- public $realtimePlay;
- public $turnBasedPlay;
- protected $webInstanceType = 'Postman_Google_Service_Games_InstanceWebDetails';
- protected $webInstanceDataType = '';
-
-
- public function setAcquisitionUri($acquisitionUri)
- {
- $this->acquisitionUri = $acquisitionUri;
- }
- public function getAcquisitionUri()
- {
- return $this->acquisitionUri;
- }
- public function setAndroidInstance(Postman_Google_Service_Games_InstanceAndroidDetails $androidInstance)
- {
- $this->androidInstance = $androidInstance;
- }
- public function getAndroidInstance()
- {
- return $this->androidInstance;
- }
- public function setIosInstance(Postman_Google_Service_Games_InstanceIosDetails $iosInstance)
- {
- $this->iosInstance = $iosInstance;
- }
- public function getIosInstance()
- {
- return $this->iosInstance;
- }
- 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 setPlatformType($platformType)
- {
- $this->platformType = $platformType;
- }
- public function getPlatformType()
- {
- return $this->platformType;
- }
- public function setRealtimePlay($realtimePlay)
- {
- $this->realtimePlay = $realtimePlay;
- }
- public function getRealtimePlay()
- {
- return $this->realtimePlay;
- }
- public function setTurnBasedPlay($turnBasedPlay)
- {
- $this->turnBasedPlay = $turnBasedPlay;
- }
- public function getTurnBasedPlay()
- {
- return $this->turnBasedPlay;
- }
- public function setWebInstance(Postman_Google_Service_Games_InstanceWebDetails $webInstance)
- {
- $this->webInstance = $webInstance;
- }
- public function getWebInstance()
- {
- return $this->webInstance;
- }
-}
-
-class Postman_Google_Service_Games_InstanceAndroidDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $enablePiracyCheck;
- public $kind;
- public $packageName;
- public $preferred;
-
-
- public function setEnablePiracyCheck($enablePiracyCheck)
- {
- $this->enablePiracyCheck = $enablePiracyCheck;
- }
- public function getEnablePiracyCheck()
- {
- return $this->enablePiracyCheck;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPackageName($packageName)
- {
- $this->packageName = $packageName;
- }
- public function getPackageName()
- {
- return $this->packageName;
- }
- public function setPreferred($preferred)
- {
- $this->preferred = $preferred;
- }
- public function getPreferred()
- {
- return $this->preferred;
- }
-}
-
-class Postman_Google_Service_Games_InstanceIosDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bundleIdentifier;
- public $itunesAppId;
- public $kind;
- public $preferredForIpad;
- public $preferredForIphone;
- public $supportIpad;
- public $supportIphone;
-
-
- public function setBundleIdentifier($bundleIdentifier)
- {
- $this->bundleIdentifier = $bundleIdentifier;
- }
- public function getBundleIdentifier()
- {
- return $this->bundleIdentifier;
- }
- public function setItunesAppId($itunesAppId)
- {
- $this->itunesAppId = $itunesAppId;
- }
- public function getItunesAppId()
- {
- return $this->itunesAppId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPreferredForIpad($preferredForIpad)
- {
- $this->preferredForIpad = $preferredForIpad;
- }
- public function getPreferredForIpad()
- {
- return $this->preferredForIpad;
- }
- public function setPreferredForIphone($preferredForIphone)
- {
- $this->preferredForIphone = $preferredForIphone;
- }
- public function getPreferredForIphone()
- {
- return $this->preferredForIphone;
- }
- public function setSupportIpad($supportIpad)
- {
- $this->supportIpad = $supportIpad;
- }
- public function getSupportIpad()
- {
- return $this->supportIpad;
- }
- public function setSupportIphone($supportIphone)
- {
- $this->supportIphone = $supportIphone;
- }
- public function getSupportIphone()
- {
- return $this->supportIphone;
- }
-}
-
-class Postman_Google_Service_Games_InstanceWebDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $launchUrl;
- public $preferred;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLaunchUrl($launchUrl)
- {
- $this->launchUrl = $launchUrl;
- }
- public function getLaunchUrl()
- {
- return $this->launchUrl;
- }
- public function setPreferred($preferred)
- {
- $this->preferred = $preferred;
- }
- public function getPreferred()
- {
- return $this->preferred;
- }
-}
-
-class Postman_Google_Service_Games_Leaderboard extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $iconUrl;
- public $id;
- public $isIconUrlDefault;
- public $kind;
- public $name;
- public $order;
-
-
- public function setIconUrl($iconUrl)
- {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl()
- {
- return $this->iconUrl;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsIconUrlDefault($isIconUrlDefault)
- {
- $this->isIconUrlDefault = $isIconUrlDefault;
- }
- public function getIsIconUrlDefault()
- {
- return $this->isIconUrlDefault;
- }
- 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 setOrder($order)
- {
- $this->order = $order;
- }
- public function getOrder()
- {
- return $this->order;
- }
-}
-
-class Postman_Google_Service_Games_LeaderboardEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formattedScore;
- public $formattedScoreRank;
- public $kind;
- protected $playerType = 'Postman_Google_Service_Games_Player';
- protected $playerDataType = '';
- public $scoreRank;
- public $scoreTag;
- public $scoreValue;
- public $timeSpan;
- public $writeTimestampMillis;
-
-
- public function setFormattedScore($formattedScore)
- {
- $this->formattedScore = $formattedScore;
- }
- public function getFormattedScore()
- {
- return $this->formattedScore;
- }
- public function setFormattedScoreRank($formattedScoreRank)
- {
- $this->formattedScoreRank = $formattedScoreRank;
- }
- public function getFormattedScoreRank()
- {
- return $this->formattedScoreRank;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlayer(Postman_Google_Service_Games_Player $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
- public function setScoreRank($scoreRank)
- {
- $this->scoreRank = $scoreRank;
- }
- public function getScoreRank()
- {
- return $this->scoreRank;
- }
- public function setScoreTag($scoreTag)
- {
- $this->scoreTag = $scoreTag;
- }
- public function getScoreTag()
- {
- return $this->scoreTag;
- }
- public function setScoreValue($scoreValue)
- {
- $this->scoreValue = $scoreValue;
- }
- public function getScoreValue()
- {
- return $this->scoreValue;
- }
- public function setTimeSpan($timeSpan)
- {
- $this->timeSpan = $timeSpan;
- }
- public function getTimeSpan()
- {
- return $this->timeSpan;
- }
- public function setWriteTimestampMillis($writeTimestampMillis)
- {
- $this->writeTimestampMillis = $writeTimestampMillis;
- }
- public function getWriteTimestampMillis()
- {
- return $this->writeTimestampMillis;
- }
-}
-
-class Postman_Google_Service_Games_LeaderboardListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_Leaderboard';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_LeaderboardScoreRank extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formattedNumScores;
- public $formattedRank;
- public $kind;
- public $numScores;
- public $rank;
-
-
- public function setFormattedNumScores($formattedNumScores)
- {
- $this->formattedNumScores = $formattedNumScores;
- }
- public function getFormattedNumScores()
- {
- return $this->formattedNumScores;
- }
- public function setFormattedRank($formattedRank)
- {
- $this->formattedRank = $formattedRank;
- }
- public function getFormattedRank()
- {
- return $this->formattedRank;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNumScores($numScores)
- {
- $this->numScores = $numScores;
- }
- public function getNumScores()
- {
- return $this->numScores;
- }
- public function setRank($rank)
- {
- $this->rank = $rank;
- }
- public function getRank()
- {
- return $this->rank;
- }
-}
-
-class Postman_Google_Service_Games_LeaderboardScores extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_LeaderboardEntry';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $numScores;
- protected $playerScoreType = 'Postman_Google_Service_Games_LeaderboardEntry';
- protected $playerScoreDataType = '';
- public $prevPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setNumScores($numScores)
- {
- $this->numScores = $numScores;
- }
- public function getNumScores()
- {
- return $this->numScores;
- }
- public function setPlayerScore(Postman_Google_Service_Games_LeaderboardEntry $playerScore)
- {
- $this->playerScore = $playerScore;
- }
- public function getPlayerScore()
- {
- return $this->playerScore;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
-}
-
-class Postman_Google_Service_Games_MetagameConfig extends Postman_Google_Collection
-{
- protected $collection_key = 'playerLevels';
- protected $internal_gapi_mappings = array(
- );
- public $currentVersion;
- public $kind;
- protected $playerLevelsType = 'Postman_Google_Service_Games_PlayerLevel';
- protected $playerLevelsDataType = 'array';
-
-
- public function setCurrentVersion($currentVersion)
- {
- $this->currentVersion = $currentVersion;
- }
- public function getCurrentVersion()
- {
- return $this->currentVersion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlayerLevels($playerLevels)
- {
- $this->playerLevels = $playerLevels;
- }
- public function getPlayerLevels()
- {
- return $this->playerLevels;
- }
-}
-
-class Postman_Google_Service_Games_NetworkDiagnostics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $androidNetworkSubtype;
- public $androidNetworkType;
- public $iosNetworkType;
- public $kind;
- public $networkOperatorCode;
- public $networkOperatorName;
- public $registrationLatencyMillis;
-
-
- public function setAndroidNetworkSubtype($androidNetworkSubtype)
- {
- $this->androidNetworkSubtype = $androidNetworkSubtype;
- }
- public function getAndroidNetworkSubtype()
- {
- return $this->androidNetworkSubtype;
- }
- public function setAndroidNetworkType($androidNetworkType)
- {
- $this->androidNetworkType = $androidNetworkType;
- }
- public function getAndroidNetworkType()
- {
- return $this->androidNetworkType;
- }
- public function setIosNetworkType($iosNetworkType)
- {
- $this->iosNetworkType = $iosNetworkType;
- }
- public function getIosNetworkType()
- {
- return $this->iosNetworkType;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNetworkOperatorCode($networkOperatorCode)
- {
- $this->networkOperatorCode = $networkOperatorCode;
- }
- public function getNetworkOperatorCode()
- {
- return $this->networkOperatorCode;
- }
- public function setNetworkOperatorName($networkOperatorName)
- {
- $this->networkOperatorName = $networkOperatorName;
- }
- public function getNetworkOperatorName()
- {
- return $this->networkOperatorName;
- }
- public function setRegistrationLatencyMillis($registrationLatencyMillis)
- {
- $this->registrationLatencyMillis = $registrationLatencyMillis;
- }
- public function getRegistrationLatencyMillis()
- {
- return $this->registrationLatencyMillis;
- }
-}
-
-class Postman_Google_Service_Games_ParticipantResult extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $participantId;
- public $placing;
- public $result;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setParticipantId($participantId)
- {
- $this->participantId = $participantId;
- }
- public function getParticipantId()
- {
- return $this->participantId;
- }
- public function setPlacing($placing)
- {
- $this->placing = $placing;
- }
- public function getPlacing()
- {
- return $this->placing;
- }
- public function setResult($result)
- {
- $this->result = $result;
- }
- public function getResult()
- {
- return $this->result;
- }
-}
-
-class Postman_Google_Service_Games_PeerChannelDiagnostics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $bytesReceivedType = 'Postman_Google_Service_Games_AggregateStats';
- protected $bytesReceivedDataType = '';
- protected $bytesSentType = 'Postman_Google_Service_Games_AggregateStats';
- protected $bytesSentDataType = '';
- public $kind;
- public $numMessagesLost;
- public $numMessagesReceived;
- public $numMessagesSent;
- public $numSendFailures;
- protected $roundtripLatencyMillisType = 'Postman_Google_Service_Games_AggregateStats';
- protected $roundtripLatencyMillisDataType = '';
-
-
- public function setBytesReceived(Postman_Google_Service_Games_AggregateStats $bytesReceived)
- {
- $this->bytesReceived = $bytesReceived;
- }
- public function getBytesReceived()
- {
- return $this->bytesReceived;
- }
- public function setBytesSent(Postman_Google_Service_Games_AggregateStats $bytesSent)
- {
- $this->bytesSent = $bytesSent;
- }
- public function getBytesSent()
- {
- return $this->bytesSent;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNumMessagesLost($numMessagesLost)
- {
- $this->numMessagesLost = $numMessagesLost;
- }
- public function getNumMessagesLost()
- {
- return $this->numMessagesLost;
- }
- public function setNumMessagesReceived($numMessagesReceived)
- {
- $this->numMessagesReceived = $numMessagesReceived;
- }
- public function getNumMessagesReceived()
- {
- return $this->numMessagesReceived;
- }
- public function setNumMessagesSent($numMessagesSent)
- {
- $this->numMessagesSent = $numMessagesSent;
- }
- public function getNumMessagesSent()
- {
- return $this->numMessagesSent;
- }
- public function setNumSendFailures($numSendFailures)
- {
- $this->numSendFailures = $numSendFailures;
- }
- public function getNumSendFailures()
- {
- return $this->numSendFailures;
- }
- public function setRoundtripLatencyMillis(Postman_Google_Service_Games_AggregateStats $roundtripLatencyMillis)
- {
- $this->roundtripLatencyMillis = $roundtripLatencyMillis;
- }
- public function getRoundtripLatencyMillis()
- {
- return $this->roundtripLatencyMillis;
- }
-}
-
-class Postman_Google_Service_Games_PeerSessionDiagnostics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $connectedTimestampMillis;
- public $kind;
- public $participantId;
- protected $reliableChannelType = 'Postman_Google_Service_Games_PeerChannelDiagnostics';
- protected $reliableChannelDataType = '';
- protected $unreliableChannelType = 'Postman_Google_Service_Games_PeerChannelDiagnostics';
- protected $unreliableChannelDataType = '';
-
-
- public function setConnectedTimestampMillis($connectedTimestampMillis)
- {
- $this->connectedTimestampMillis = $connectedTimestampMillis;
- }
- public function getConnectedTimestampMillis()
- {
- return $this->connectedTimestampMillis;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setParticipantId($participantId)
- {
- $this->participantId = $participantId;
- }
- public function getParticipantId()
- {
- return $this->participantId;
- }
- public function setReliableChannel(Postman_Google_Service_Games_PeerChannelDiagnostics $reliableChannel)
- {
- $this->reliableChannel = $reliableChannel;
- }
- public function getReliableChannel()
- {
- return $this->reliableChannel;
- }
- public function setUnreliableChannel(Postman_Google_Service_Games_PeerChannelDiagnostics $unreliableChannel)
- {
- $this->unreliableChannel = $unreliableChannel;
- }
- public function getUnreliableChannel()
- {
- return $this->unreliableChannel;
- }
-}
-
-class Postman_Google_Service_Games_Played extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $autoMatched;
- public $kind;
- public $timeMillis;
-
-
- public function setAutoMatched($autoMatched)
- {
- $this->autoMatched = $autoMatched;
- }
- public function getAutoMatched()
- {
- return $this->autoMatched;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTimeMillis($timeMillis)
- {
- $this->timeMillis = $timeMillis;
- }
- public function getTimeMillis()
- {
- return $this->timeMillis;
- }
-}
-
-class Postman_Google_Service_Games_Player extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $avatarImageUrl;
- public $displayName;
- protected $experienceInfoType = 'Postman_Google_Service_Games_PlayerExperienceInfo';
- protected $experienceInfoDataType = '';
- public $kind;
- protected $lastPlayedWithType = 'Postman_Google_Service_Games_Played';
- protected $lastPlayedWithDataType = '';
- protected $nameType = 'Postman_Google_Service_Games_PlayerName';
- protected $nameDataType = '';
- public $playerId;
- public $title;
-
-
- public function setAvatarImageUrl($avatarImageUrl)
- {
- $this->avatarImageUrl = $avatarImageUrl;
- }
- public function getAvatarImageUrl()
- {
- return $this->avatarImageUrl;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setExperienceInfo(Postman_Google_Service_Games_PlayerExperienceInfo $experienceInfo)
- {
- $this->experienceInfo = $experienceInfo;
- }
- public function getExperienceInfo()
- {
- return $this->experienceInfo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastPlayedWith(Postman_Google_Service_Games_Played $lastPlayedWith)
- {
- $this->lastPlayedWith = $lastPlayedWith;
- }
- public function getLastPlayedWith()
- {
- return $this->lastPlayedWith;
- }
- public function setName(Postman_Google_Service_Games_PlayerName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPlayerId($playerId)
- {
- $this->playerId = $playerId;
- }
- public function getPlayerId()
- {
- return $this->playerId;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Games_PlayerAchievement extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $achievementState;
- public $currentSteps;
- public $experiencePoints;
- public $formattedCurrentStepsString;
- public $id;
- public $kind;
- public $lastUpdatedTimestamp;
-
-
- public function setAchievementState($achievementState)
- {
- $this->achievementState = $achievementState;
- }
- public function getAchievementState()
- {
- return $this->achievementState;
- }
- public function setCurrentSteps($currentSteps)
- {
- $this->currentSteps = $currentSteps;
- }
- public function getCurrentSteps()
- {
- return $this->currentSteps;
- }
- public function setExperiencePoints($experiencePoints)
- {
- $this->experiencePoints = $experiencePoints;
- }
- public function getExperiencePoints()
- {
- return $this->experiencePoints;
- }
- public function setFormattedCurrentStepsString($formattedCurrentStepsString)
- {
- $this->formattedCurrentStepsString = $formattedCurrentStepsString;
- }
- public function getFormattedCurrentStepsString()
- {
- return $this->formattedCurrentStepsString;
- }
- 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 setLastUpdatedTimestamp($lastUpdatedTimestamp)
- {
- $this->lastUpdatedTimestamp = $lastUpdatedTimestamp;
- }
- public function getLastUpdatedTimestamp()
- {
- return $this->lastUpdatedTimestamp;
- }
-}
-
-class Postman_Google_Service_Games_PlayerAchievementListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_PlayerAchievement';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_PlayerEvent extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $definitionId;
- public $formattedNumEvents;
- public $kind;
- public $numEvents;
- public $playerId;
-
-
- public function setDefinitionId($definitionId)
- {
- $this->definitionId = $definitionId;
- }
- public function getDefinitionId()
- {
- return $this->definitionId;
- }
- public function setFormattedNumEvents($formattedNumEvents)
- {
- $this->formattedNumEvents = $formattedNumEvents;
- }
- public function getFormattedNumEvents()
- {
- return $this->formattedNumEvents;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNumEvents($numEvents)
- {
- $this->numEvents = $numEvents;
- }
- public function getNumEvents()
- {
- return $this->numEvents;
- }
- public function setPlayerId($playerId)
- {
- $this->playerId = $playerId;
- }
- public function getPlayerId()
- {
- return $this->playerId;
- }
-}
-
-class Postman_Google_Service_Games_PlayerEventListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_PlayerEvent';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_PlayerExperienceInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentExperiencePoints;
- protected $currentLevelType = 'Postman_Google_Service_Games_PlayerLevel';
- protected $currentLevelDataType = '';
- public $kind;
- public $lastLevelUpTimestampMillis;
- protected $nextLevelType = 'Postman_Google_Service_Games_PlayerLevel';
- protected $nextLevelDataType = '';
-
-
- public function setCurrentExperiencePoints($currentExperiencePoints)
- {
- $this->currentExperiencePoints = $currentExperiencePoints;
- }
- public function getCurrentExperiencePoints()
- {
- return $this->currentExperiencePoints;
- }
- public function setCurrentLevel(Postman_Google_Service_Games_PlayerLevel $currentLevel)
- {
- $this->currentLevel = $currentLevel;
- }
- public function getCurrentLevel()
- {
- return $this->currentLevel;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastLevelUpTimestampMillis($lastLevelUpTimestampMillis)
- {
- $this->lastLevelUpTimestampMillis = $lastLevelUpTimestampMillis;
- }
- public function getLastLevelUpTimestampMillis()
- {
- return $this->lastLevelUpTimestampMillis;
- }
- public function setNextLevel(Postman_Google_Service_Games_PlayerLevel $nextLevel)
- {
- $this->nextLevel = $nextLevel;
- }
- public function getNextLevel()
- {
- return $this->nextLevel;
- }
-}
-
-class Postman_Google_Service_Games_PlayerLeaderboardScore extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "leaderboardId" => "leaderboard_id",
- );
- public $kind;
- public $leaderboardId;
- protected $publicRankType = 'Postman_Google_Service_Games_LeaderboardScoreRank';
- protected $publicRankDataType = '';
- public $scoreString;
- public $scoreTag;
- public $scoreValue;
- protected $socialRankType = 'Postman_Google_Service_Games_LeaderboardScoreRank';
- protected $socialRankDataType = '';
- public $timeSpan;
- public $writeTimestamp;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLeaderboardId($leaderboardId)
- {
- $this->leaderboardId = $leaderboardId;
- }
- public function getLeaderboardId()
- {
- return $this->leaderboardId;
- }
- public function setPublicRank(Postman_Google_Service_Games_LeaderboardScoreRank $publicRank)
- {
- $this->publicRank = $publicRank;
- }
- public function getPublicRank()
- {
- return $this->publicRank;
- }
- public function setScoreString($scoreString)
- {
- $this->scoreString = $scoreString;
- }
- public function getScoreString()
- {
- return $this->scoreString;
- }
- public function setScoreTag($scoreTag)
- {
- $this->scoreTag = $scoreTag;
- }
- public function getScoreTag()
- {
- return $this->scoreTag;
- }
- public function setScoreValue($scoreValue)
- {
- $this->scoreValue = $scoreValue;
- }
- public function getScoreValue()
- {
- return $this->scoreValue;
- }
- public function setSocialRank(Postman_Google_Service_Games_LeaderboardScoreRank $socialRank)
- {
- $this->socialRank = $socialRank;
- }
- public function getSocialRank()
- {
- return $this->socialRank;
- }
- public function setTimeSpan($timeSpan)
- {
- $this->timeSpan = $timeSpan;
- }
- public function getTimeSpan()
- {
- return $this->timeSpan;
- }
- public function setWriteTimestamp($writeTimestamp)
- {
- $this->writeTimestamp = $writeTimestamp;
- }
- public function getWriteTimestamp()
- {
- return $this->writeTimestamp;
- }
-}
-
-class Postman_Google_Service_Games_PlayerLeaderboardScoreListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_PlayerLeaderboardScore';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $playerType = 'Postman_Google_Service_Games_Player';
- protected $playerDataType = '';
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setPlayer(Postman_Google_Service_Games_Player $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
-}
-
-class Postman_Google_Service_Games_PlayerLevel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $level;
- public $maxExperiencePoints;
- public $minExperiencePoints;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLevel($level)
- {
- $this->level = $level;
- }
- public function getLevel()
- {
- return $this->level;
- }
- public function setMaxExperiencePoints($maxExperiencePoints)
- {
- $this->maxExperiencePoints = $maxExperiencePoints;
- }
- public function getMaxExperiencePoints()
- {
- return $this->maxExperiencePoints;
- }
- public function setMinExperiencePoints($minExperiencePoints)
- {
- $this->minExperiencePoints = $minExperiencePoints;
- }
- public function getMinExperiencePoints()
- {
- return $this->minExperiencePoints;
- }
-}
-
-class Postman_Google_Service_Games_PlayerListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_Player';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_PlayerName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $givenName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
-}
-
-class Postman_Google_Service_Games_PlayerScore extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formattedScore;
- public $kind;
- public $score;
- public $scoreTag;
- public $timeSpan;
-
-
- public function setFormattedScore($formattedScore)
- {
- $this->formattedScore = $formattedScore;
- }
- public function getFormattedScore()
- {
- return $this->formattedScore;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setScore($score)
- {
- $this->score = $score;
- }
- public function getScore()
- {
- return $this->score;
- }
- public function setScoreTag($scoreTag)
- {
- $this->scoreTag = $scoreTag;
- }
- public function getScoreTag()
- {
- return $this->scoreTag;
- }
- public function setTimeSpan($timeSpan)
- {
- $this->timeSpan = $timeSpan;
- }
- public function getTimeSpan()
- {
- return $this->timeSpan;
- }
-}
-
-class Postman_Google_Service_Games_PlayerScoreListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'submittedScores';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $submittedScoresType = 'Postman_Google_Service_Games_PlayerScoreResponse';
- protected $submittedScoresDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSubmittedScores($submittedScores)
- {
- $this->submittedScores = $submittedScores;
- }
- public function getSubmittedScores()
- {
- return $this->submittedScores;
- }
-}
-
-class Postman_Google_Service_Games_PlayerScoreResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'unbeatenScores';
- protected $internal_gapi_mappings = array(
- );
- public $beatenScoreTimeSpans;
- public $formattedScore;
- public $kind;
- public $leaderboardId;
- public $scoreTag;
- protected $unbeatenScoresType = 'Postman_Google_Service_Games_PlayerScore';
- protected $unbeatenScoresDataType = 'array';
-
-
- public function setBeatenScoreTimeSpans($beatenScoreTimeSpans)
- {
- $this->beatenScoreTimeSpans = $beatenScoreTimeSpans;
- }
- public function getBeatenScoreTimeSpans()
- {
- return $this->beatenScoreTimeSpans;
- }
- public function setFormattedScore($formattedScore)
- {
- $this->formattedScore = $formattedScore;
- }
- public function getFormattedScore()
- {
- return $this->formattedScore;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLeaderboardId($leaderboardId)
- {
- $this->leaderboardId = $leaderboardId;
- }
- public function getLeaderboardId()
- {
- return $this->leaderboardId;
- }
- public function setScoreTag($scoreTag)
- {
- $this->scoreTag = $scoreTag;
- }
- public function getScoreTag()
- {
- return $this->scoreTag;
- }
- public function setUnbeatenScores($unbeatenScores)
- {
- $this->unbeatenScores = $unbeatenScores;
- }
- public function getUnbeatenScores()
- {
- return $this->unbeatenScores;
- }
-}
-
-class Postman_Google_Service_Games_PlayerScoreSubmissionList extends Postman_Google_Collection
-{
- protected $collection_key = 'scores';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $scoresType = 'Postman_Google_Service_Games_ScoreSubmission';
- protected $scoresDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setScores($scores)
- {
- $this->scores = $scores;
- }
- public function getScores()
- {
- return $this->scores;
- }
-}
-
-class Postman_Google_Service_Games_PushToken extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $clientRevision;
- protected $idType = 'Postman_Google_Service_Games_PushTokenId';
- protected $idDataType = '';
- public $kind;
- public $language;
-
-
- public function setClientRevision($clientRevision)
- {
- $this->clientRevision = $clientRevision;
- }
- public function getClientRevision()
- {
- return $this->clientRevision;
- }
- public function setId(Postman_Google_Service_Games_PushTokenId $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 setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
-}
-
-class Postman_Google_Service_Games_PushTokenId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $iosType = 'Postman_Google_Service_Games_PushTokenIdIos';
- protected $iosDataType = '';
- public $kind;
-
-
- public function setIos(Postman_Google_Service_Games_PushTokenIdIos $ios)
- {
- $this->ios = $ios;
- }
- public function getIos()
- {
- return $this->ios;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_PushTokenIdIos extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "apnsDeviceToken" => "apns_device_token",
- "apnsEnvironment" => "apns_environment",
- );
- public $apnsDeviceToken;
- public $apnsEnvironment;
-
-
- public function setApnsDeviceToken($apnsDeviceToken)
- {
- $this->apnsDeviceToken = $apnsDeviceToken;
- }
- public function getApnsDeviceToken()
- {
- return $this->apnsDeviceToken;
- }
- public function setApnsEnvironment($apnsEnvironment)
- {
- $this->apnsEnvironment = $apnsEnvironment;
- }
- public function getApnsEnvironment()
- {
- return $this->apnsEnvironment;
- }
-}
-
-class Postman_Google_Service_Games_Quest extends Postman_Google_Collection
-{
- protected $collection_key = 'milestones';
- protected $internal_gapi_mappings = array(
- );
- public $acceptedTimestampMillis;
- public $applicationId;
- public $bannerUrl;
- public $description;
- public $endTimestampMillis;
- public $iconUrl;
- public $id;
- public $isDefaultBannerUrl;
- public $isDefaultIconUrl;
- public $kind;
- public $lastUpdatedTimestampMillis;
- protected $milestonesType = 'Postman_Google_Service_Games_QuestMilestone';
- protected $milestonesDataType = 'array';
- public $name;
- public $notifyTimestampMillis;
- public $startTimestampMillis;
- public $state;
-
-
- public function setAcceptedTimestampMillis($acceptedTimestampMillis)
- {
- $this->acceptedTimestampMillis = $acceptedTimestampMillis;
- }
- public function getAcceptedTimestampMillis()
- {
- return $this->acceptedTimestampMillis;
- }
- public function setApplicationId($applicationId)
- {
- $this->applicationId = $applicationId;
- }
- public function getApplicationId()
- {
- return $this->applicationId;
- }
- public function setBannerUrl($bannerUrl)
- {
- $this->bannerUrl = $bannerUrl;
- }
- public function getBannerUrl()
- {
- return $this->bannerUrl;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndTimestampMillis($endTimestampMillis)
- {
- $this->endTimestampMillis = $endTimestampMillis;
- }
- public function getEndTimestampMillis()
- {
- return $this->endTimestampMillis;
- }
- public function setIconUrl($iconUrl)
- {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl()
- {
- return $this->iconUrl;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsDefaultBannerUrl($isDefaultBannerUrl)
- {
- $this->isDefaultBannerUrl = $isDefaultBannerUrl;
- }
- public function getIsDefaultBannerUrl()
- {
- return $this->isDefaultBannerUrl;
- }
- public function setIsDefaultIconUrl($isDefaultIconUrl)
- {
- $this->isDefaultIconUrl = $isDefaultIconUrl;
- }
- public function getIsDefaultIconUrl()
- {
- return $this->isDefaultIconUrl;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastUpdatedTimestampMillis($lastUpdatedTimestampMillis)
- {
- $this->lastUpdatedTimestampMillis = $lastUpdatedTimestampMillis;
- }
- public function getLastUpdatedTimestampMillis()
- {
- return $this->lastUpdatedTimestampMillis;
- }
- public function setMilestones($milestones)
- {
- $this->milestones = $milestones;
- }
- public function getMilestones()
- {
- return $this->milestones;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotifyTimestampMillis($notifyTimestampMillis)
- {
- $this->notifyTimestampMillis = $notifyTimestampMillis;
- }
- public function getNotifyTimestampMillis()
- {
- return $this->notifyTimestampMillis;
- }
- public function setStartTimestampMillis($startTimestampMillis)
- {
- $this->startTimestampMillis = $startTimestampMillis;
- }
- public function getStartTimestampMillis()
- {
- return $this->startTimestampMillis;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Games_QuestContribution extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formattedValue;
- public $kind;
- public $value;
-
-
- public function setFormattedValue($formattedValue)
- {
- $this->formattedValue = $formattedValue;
- }
- public function getFormattedValue()
- {
- return $this->formattedValue;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Games_QuestCriterion extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $completionContributionType = 'Postman_Google_Service_Games_QuestContribution';
- protected $completionContributionDataType = '';
- protected $currentContributionType = 'Postman_Google_Service_Games_QuestContribution';
- protected $currentContributionDataType = '';
- public $eventId;
- protected $initialPlayerProgressType = 'Postman_Google_Service_Games_QuestContribution';
- protected $initialPlayerProgressDataType = '';
- public $kind;
-
-
- public function setCompletionContribution(Postman_Google_Service_Games_QuestContribution $completionContribution)
- {
- $this->completionContribution = $completionContribution;
- }
- public function getCompletionContribution()
- {
- return $this->completionContribution;
- }
- public function setCurrentContribution(Postman_Google_Service_Games_QuestContribution $currentContribution)
- {
- $this->currentContribution = $currentContribution;
- }
- public function getCurrentContribution()
- {
- return $this->currentContribution;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setInitialPlayerProgress(Postman_Google_Service_Games_QuestContribution $initialPlayerProgress)
- {
- $this->initialPlayerProgress = $initialPlayerProgress;
- }
- public function getInitialPlayerProgress()
- {
- return $this->initialPlayerProgress;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_QuestListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_Quest';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_QuestMilestone extends Postman_Google_Collection
-{
- protected $collection_key = 'criteria';
- protected $internal_gapi_mappings = array(
- );
- public $completionRewardData;
- protected $criteriaType = 'Postman_Google_Service_Games_QuestCriterion';
- protected $criteriaDataType = 'array';
- public $id;
- public $kind;
- public $state;
-
-
- public function setCompletionRewardData($completionRewardData)
- {
- $this->completionRewardData = $completionRewardData;
- }
- public function getCompletionRewardData()
- {
- return $this->completionRewardData;
- }
- public function setCriteria($criteria)
- {
- $this->criteria = $criteria;
- }
- public function getCriteria()
- {
- return $this->criteria;
- }
- 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 setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Games_RevisionCheckResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $apiVersion;
- public $kind;
- public $revisionStatus;
-
-
- public function setApiVersion($apiVersion)
- {
- $this->apiVersion = $apiVersion;
- }
- public function getApiVersion()
- {
- return $this->apiVersion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRevisionStatus($revisionStatus)
- {
- $this->revisionStatus = $revisionStatus;
- }
- public function getRevisionStatus()
- {
- return $this->revisionStatus;
- }
-}
-
-class Postman_Google_Service_Games_Room extends Postman_Google_Collection
-{
- protected $collection_key = 'participants';
- protected $internal_gapi_mappings = array(
- );
- public $applicationId;
- protected $autoMatchingCriteriaType = 'Postman_Google_Service_Games_RoomAutoMatchingCriteria';
- protected $autoMatchingCriteriaDataType = '';
- protected $autoMatchingStatusType = 'Postman_Google_Service_Games_RoomAutoMatchStatus';
- protected $autoMatchingStatusDataType = '';
- protected $creationDetailsType = 'Postman_Google_Service_Games_RoomModification';
- protected $creationDetailsDataType = '';
- public $description;
- public $inviterId;
- public $kind;
- protected $lastUpdateDetailsType = 'Postman_Google_Service_Games_RoomModification';
- protected $lastUpdateDetailsDataType = '';
- protected $participantsType = 'Postman_Google_Service_Games_RoomParticipant';
- protected $participantsDataType = 'array';
- public $roomId;
- public $roomStatusVersion;
- public $status;
- public $variant;
-
-
- public function setApplicationId($applicationId)
- {
- $this->applicationId = $applicationId;
- }
- public function getApplicationId()
- {
- return $this->applicationId;
- }
- public function setAutoMatchingCriteria(Postman_Google_Service_Games_RoomAutoMatchingCriteria $autoMatchingCriteria)
- {
- $this->autoMatchingCriteria = $autoMatchingCriteria;
- }
- public function getAutoMatchingCriteria()
- {
- return $this->autoMatchingCriteria;
- }
- public function setAutoMatchingStatus(Postman_Google_Service_Games_RoomAutoMatchStatus $autoMatchingStatus)
- {
- $this->autoMatchingStatus = $autoMatchingStatus;
- }
- public function getAutoMatchingStatus()
- {
- return $this->autoMatchingStatus;
- }
- public function setCreationDetails(Postman_Google_Service_Games_RoomModification $creationDetails)
- {
- $this->creationDetails = $creationDetails;
- }
- public function getCreationDetails()
- {
- return $this->creationDetails;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setInviterId($inviterId)
- {
- $this->inviterId = $inviterId;
- }
- public function getInviterId()
- {
- return $this->inviterId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastUpdateDetails(Postman_Google_Service_Games_RoomModification $lastUpdateDetails)
- {
- $this->lastUpdateDetails = $lastUpdateDetails;
- }
- public function getLastUpdateDetails()
- {
- return $this->lastUpdateDetails;
- }
- public function setParticipants($participants)
- {
- $this->participants = $participants;
- }
- public function getParticipants()
- {
- return $this->participants;
- }
- public function setRoomId($roomId)
- {
- $this->roomId = $roomId;
- }
- public function getRoomId()
- {
- return $this->roomId;
- }
- public function setRoomStatusVersion($roomStatusVersion)
- {
- $this->roomStatusVersion = $roomStatusVersion;
- }
- public function getRoomStatusVersion()
- {
- return $this->roomStatusVersion;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setVariant($variant)
- {
- $this->variant = $variant;
- }
- public function getVariant()
- {
- return $this->variant;
- }
-}
-
-class Postman_Google_Service_Games_RoomAutoMatchStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $waitEstimateSeconds;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setWaitEstimateSeconds($waitEstimateSeconds)
- {
- $this->waitEstimateSeconds = $waitEstimateSeconds;
- }
- public function getWaitEstimateSeconds()
- {
- return $this->waitEstimateSeconds;
- }
-}
-
-class Postman_Google_Service_Games_RoomAutoMatchingCriteria extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $exclusiveBitmask;
- public $kind;
- public $maxAutoMatchingPlayers;
- public $minAutoMatchingPlayers;
-
-
- public function setExclusiveBitmask($exclusiveBitmask)
- {
- $this->exclusiveBitmask = $exclusiveBitmask;
- }
- public function getExclusiveBitmask()
- {
- return $this->exclusiveBitmask;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxAutoMatchingPlayers($maxAutoMatchingPlayers)
- {
- $this->maxAutoMatchingPlayers = $maxAutoMatchingPlayers;
- }
- public function getMaxAutoMatchingPlayers()
- {
- return $this->maxAutoMatchingPlayers;
- }
- public function setMinAutoMatchingPlayers($minAutoMatchingPlayers)
- {
- $this->minAutoMatchingPlayers = $minAutoMatchingPlayers;
- }
- public function getMinAutoMatchingPlayers()
- {
- return $this->minAutoMatchingPlayers;
- }
-}
-
-class Postman_Google_Service_Games_RoomClientAddress extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $xmppAddress;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setXmppAddress($xmppAddress)
- {
- $this->xmppAddress = $xmppAddress;
- }
- public function getXmppAddress()
- {
- return $this->xmppAddress;
- }
-}
-
-class Postman_Google_Service_Games_RoomCreateRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'invitedPlayerIds';
- protected $internal_gapi_mappings = array(
- );
- protected $autoMatchingCriteriaType = 'Postman_Google_Service_Games_RoomAutoMatchingCriteria';
- protected $autoMatchingCriteriaDataType = '';
- public $capabilities;
- protected $clientAddressType = 'Postman_Google_Service_Games_RoomClientAddress';
- protected $clientAddressDataType = '';
- public $invitedPlayerIds;
- public $kind;
- protected $networkDiagnosticsType = 'Postman_Google_Service_Games_NetworkDiagnostics';
- protected $networkDiagnosticsDataType = '';
- public $requestId;
- public $variant;
-
-
- public function setAutoMatchingCriteria(Postman_Google_Service_Games_RoomAutoMatchingCriteria $autoMatchingCriteria)
- {
- $this->autoMatchingCriteria = $autoMatchingCriteria;
- }
- public function getAutoMatchingCriteria()
- {
- return $this->autoMatchingCriteria;
- }
- public function setCapabilities($capabilities)
- {
- $this->capabilities = $capabilities;
- }
- public function getCapabilities()
- {
- return $this->capabilities;
- }
- public function setClientAddress(Postman_Google_Service_Games_RoomClientAddress $clientAddress)
- {
- $this->clientAddress = $clientAddress;
- }
- public function getClientAddress()
- {
- return $this->clientAddress;
- }
- public function setInvitedPlayerIds($invitedPlayerIds)
- {
- $this->invitedPlayerIds = $invitedPlayerIds;
- }
- public function getInvitedPlayerIds()
- {
- return $this->invitedPlayerIds;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNetworkDiagnostics(Postman_Google_Service_Games_NetworkDiagnostics $networkDiagnostics)
- {
- $this->networkDiagnostics = $networkDiagnostics;
- }
- public function getNetworkDiagnostics()
- {
- return $this->networkDiagnostics;
- }
- public function setRequestId($requestId)
- {
- $this->requestId = $requestId;
- }
- public function getRequestId()
- {
- return $this->requestId;
- }
- public function setVariant($variant)
- {
- $this->variant = $variant;
- }
- public function getVariant()
- {
- return $this->variant;
- }
-}
-
-class Postman_Google_Service_Games_RoomJoinRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'capabilities';
- protected $internal_gapi_mappings = array(
- );
- public $capabilities;
- protected $clientAddressType = 'Postman_Google_Service_Games_RoomClientAddress';
- protected $clientAddressDataType = '';
- public $kind;
- protected $networkDiagnosticsType = 'Postman_Google_Service_Games_NetworkDiagnostics';
- protected $networkDiagnosticsDataType = '';
-
-
- public function setCapabilities($capabilities)
- {
- $this->capabilities = $capabilities;
- }
- public function getCapabilities()
- {
- return $this->capabilities;
- }
- public function setClientAddress(Postman_Google_Service_Games_RoomClientAddress $clientAddress)
- {
- $this->clientAddress = $clientAddress;
- }
- public function getClientAddress()
- {
- return $this->clientAddress;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNetworkDiagnostics(Postman_Google_Service_Games_NetworkDiagnostics $networkDiagnostics)
- {
- $this->networkDiagnostics = $networkDiagnostics;
- }
- public function getNetworkDiagnostics()
- {
- return $this->networkDiagnostics;
- }
-}
-
-class Postman_Google_Service_Games_RoomLeaveDiagnostics extends Postman_Google_Collection
-{
- protected $collection_key = 'peerSession';
- protected $internal_gapi_mappings = array(
- );
- public $androidNetworkSubtype;
- public $androidNetworkType;
- public $iosNetworkType;
- public $kind;
- public $networkOperatorCode;
- public $networkOperatorName;
- protected $peerSessionType = 'Postman_Google_Service_Games_PeerSessionDiagnostics';
- protected $peerSessionDataType = 'array';
- public $socketsUsed;
-
-
- public function setAndroidNetworkSubtype($androidNetworkSubtype)
- {
- $this->androidNetworkSubtype = $androidNetworkSubtype;
- }
- public function getAndroidNetworkSubtype()
- {
- return $this->androidNetworkSubtype;
- }
- public function setAndroidNetworkType($androidNetworkType)
- {
- $this->androidNetworkType = $androidNetworkType;
- }
- public function getAndroidNetworkType()
- {
- return $this->androidNetworkType;
- }
- public function setIosNetworkType($iosNetworkType)
- {
- $this->iosNetworkType = $iosNetworkType;
- }
- public function getIosNetworkType()
- {
- return $this->iosNetworkType;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNetworkOperatorCode($networkOperatorCode)
- {
- $this->networkOperatorCode = $networkOperatorCode;
- }
- public function getNetworkOperatorCode()
- {
- return $this->networkOperatorCode;
- }
- public function setNetworkOperatorName($networkOperatorName)
- {
- $this->networkOperatorName = $networkOperatorName;
- }
- public function getNetworkOperatorName()
- {
- return $this->networkOperatorName;
- }
- public function setPeerSession($peerSession)
- {
- $this->peerSession = $peerSession;
- }
- public function getPeerSession()
- {
- return $this->peerSession;
- }
- public function setSocketsUsed($socketsUsed)
- {
- $this->socketsUsed = $socketsUsed;
- }
- public function getSocketsUsed()
- {
- return $this->socketsUsed;
- }
-}
-
-class Postman_Google_Service_Games_RoomLeaveRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $leaveDiagnosticsType = 'Postman_Google_Service_Games_RoomLeaveDiagnostics';
- protected $leaveDiagnosticsDataType = '';
- public $reason;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLeaveDiagnostics(Postman_Google_Service_Games_RoomLeaveDiagnostics $leaveDiagnostics)
- {
- $this->leaveDiagnostics = $leaveDiagnostics;
- }
- public function getLeaveDiagnostics()
- {
- return $this->leaveDiagnostics;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_Games_RoomList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_Room';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_RoomModification extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $modifiedTimestampMillis;
- public $participantId;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setModifiedTimestampMillis($modifiedTimestampMillis)
- {
- $this->modifiedTimestampMillis = $modifiedTimestampMillis;
- }
- public function getModifiedTimestampMillis()
- {
- return $this->modifiedTimestampMillis;
- }
- public function setParticipantId($participantId)
- {
- $this->participantId = $participantId;
- }
- public function getParticipantId()
- {
- return $this->participantId;
- }
-}
-
-class Postman_Google_Service_Games_RoomP2PStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "errorReason" => "error_reason",
- );
- public $connectionSetupLatencyMillis;
- public $error;
- public $errorReason;
- public $kind;
- public $participantId;
- public $status;
- public $unreliableRoundtripLatencyMillis;
-
-
- public function setConnectionSetupLatencyMillis($connectionSetupLatencyMillis)
- {
- $this->connectionSetupLatencyMillis = $connectionSetupLatencyMillis;
- }
- public function getConnectionSetupLatencyMillis()
- {
- return $this->connectionSetupLatencyMillis;
- }
- public function setError($error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setErrorReason($errorReason)
- {
- $this->errorReason = $errorReason;
- }
- public function getErrorReason()
- {
- return $this->errorReason;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setParticipantId($participantId)
- {
- $this->participantId = $participantId;
- }
- public function getParticipantId()
- {
- return $this->participantId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUnreliableRoundtripLatencyMillis($unreliableRoundtripLatencyMillis)
- {
- $this->unreliableRoundtripLatencyMillis = $unreliableRoundtripLatencyMillis;
- }
- public function getUnreliableRoundtripLatencyMillis()
- {
- return $this->unreliableRoundtripLatencyMillis;
- }
-}
-
-class Postman_Google_Service_Games_RoomP2PStatuses extends Postman_Google_Collection
-{
- protected $collection_key = 'updates';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $updatesType = 'Postman_Google_Service_Games_RoomP2PStatus';
- protected $updatesDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUpdates($updates)
- {
- $this->updates = $updates;
- }
- public function getUpdates()
- {
- return $this->updates;
- }
-}
-
-class Postman_Google_Service_Games_RoomParticipant extends Postman_Google_Collection
-{
- protected $collection_key = 'capabilities';
- protected $internal_gapi_mappings = array(
- );
- public $autoMatched;
- protected $autoMatchedPlayerType = 'Postman_Google_Service_Games_AnonymousPlayer';
- protected $autoMatchedPlayerDataType = '';
- public $capabilities;
- protected $clientAddressType = 'Postman_Google_Service_Games_RoomClientAddress';
- protected $clientAddressDataType = '';
- public $connected;
- public $id;
- public $kind;
- public $leaveReason;
- protected $playerType = 'Postman_Google_Service_Games_Player';
- protected $playerDataType = '';
- public $status;
-
-
- public function setAutoMatched($autoMatched)
- {
- $this->autoMatched = $autoMatched;
- }
- public function getAutoMatched()
- {
- return $this->autoMatched;
- }
- public function setAutoMatchedPlayer(Postman_Google_Service_Games_AnonymousPlayer $autoMatchedPlayer)
- {
- $this->autoMatchedPlayer = $autoMatchedPlayer;
- }
- public function getAutoMatchedPlayer()
- {
- return $this->autoMatchedPlayer;
- }
- public function setCapabilities($capabilities)
- {
- $this->capabilities = $capabilities;
- }
- public function getCapabilities()
- {
- return $this->capabilities;
- }
- public function setClientAddress(Postman_Google_Service_Games_RoomClientAddress $clientAddress)
- {
- $this->clientAddress = $clientAddress;
- }
- public function getClientAddress()
- {
- return $this->clientAddress;
- }
- public function setConnected($connected)
- {
- $this->connected = $connected;
- }
- public function getConnected()
- {
- return $this->connected;
- }
- 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 setLeaveReason($leaveReason)
- {
- $this->leaveReason = $leaveReason;
- }
- public function getLeaveReason()
- {
- return $this->leaveReason;
- }
- public function setPlayer(Postman_Google_Service_Games_Player $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Games_RoomStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'participants';
- protected $internal_gapi_mappings = array(
- );
- protected $autoMatchingStatusType = 'Postman_Google_Service_Games_RoomAutoMatchStatus';
- protected $autoMatchingStatusDataType = '';
- public $kind;
- protected $participantsType = 'Postman_Google_Service_Games_RoomParticipant';
- protected $participantsDataType = 'array';
- public $roomId;
- public $status;
- public $statusVersion;
-
-
- public function setAutoMatchingStatus(Postman_Google_Service_Games_RoomAutoMatchStatus $autoMatchingStatus)
- {
- $this->autoMatchingStatus = $autoMatchingStatus;
- }
- public function getAutoMatchingStatus()
- {
- return $this->autoMatchingStatus;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setParticipants($participants)
- {
- $this->participants = $participants;
- }
- public function getParticipants()
- {
- return $this->participants;
- }
- public function setRoomId($roomId)
- {
- $this->roomId = $roomId;
- }
- public function getRoomId()
- {
- return $this->roomId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusVersion($statusVersion)
- {
- $this->statusVersion = $statusVersion;
- }
- public function getStatusVersion()
- {
- return $this->statusVersion;
- }
-}
-
-class Postman_Google_Service_Games_ScoreSubmission extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $leaderboardId;
- public $score;
- public $scoreTag;
- public $signature;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLeaderboardId($leaderboardId)
- {
- $this->leaderboardId = $leaderboardId;
- }
- public function getLeaderboardId()
- {
- return $this->leaderboardId;
- }
- public function setScore($score)
- {
- $this->score = $score;
- }
- public function getScore()
- {
- return $this->score;
- }
- public function setScoreTag($scoreTag)
- {
- $this->scoreTag = $scoreTag;
- }
- public function getScoreTag()
- {
- return $this->scoreTag;
- }
- public function setSignature($signature)
- {
- $this->signature = $signature;
- }
- public function getSignature()
- {
- return $this->signature;
- }
-}
-
-class Postman_Google_Service_Games_Snapshot extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $coverImageType = 'Postman_Google_Service_Games_SnapshotImage';
- protected $coverImageDataType = '';
- public $description;
- public $driveId;
- public $durationMillis;
- public $id;
- public $kind;
- public $lastModifiedMillis;
- public $progressValue;
- public $title;
- public $type;
- public $uniqueName;
-
-
- public function setCoverImage(Postman_Google_Service_Games_SnapshotImage $coverImage)
- {
- $this->coverImage = $coverImage;
- }
- public function getCoverImage()
- {
- return $this->coverImage;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDriveId($driveId)
- {
- $this->driveId = $driveId;
- }
- public function getDriveId()
- {
- return $this->driveId;
- }
- public function setDurationMillis($durationMillis)
- {
- $this->durationMillis = $durationMillis;
- }
- public function getDurationMillis()
- {
- return $this->durationMillis;
- }
- 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 setLastModifiedMillis($lastModifiedMillis)
- {
- $this->lastModifiedMillis = $lastModifiedMillis;
- }
- public function getLastModifiedMillis()
- {
- return $this->lastModifiedMillis;
- }
- public function setProgressValue($progressValue)
- {
- $this->progressValue = $progressValue;
- }
- public function getProgressValue()
- {
- return $this->progressValue;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUniqueName($uniqueName)
- {
- $this->uniqueName = $uniqueName;
- }
- public function getUniqueName()
- {
- return $this->uniqueName;
- }
-}
-
-class Postman_Google_Service_Games_SnapshotImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "mimeType" => "mime_type",
- );
- public $height;
- public $kind;
- public $mimeType;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Games_SnapshotListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_Snapshot';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedAutoMatchingCriteria extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $exclusiveBitmask;
- public $kind;
- public $maxAutoMatchingPlayers;
- public $minAutoMatchingPlayers;
-
-
- public function setExclusiveBitmask($exclusiveBitmask)
- {
- $this->exclusiveBitmask = $exclusiveBitmask;
- }
- public function getExclusiveBitmask()
- {
- return $this->exclusiveBitmask;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxAutoMatchingPlayers($maxAutoMatchingPlayers)
- {
- $this->maxAutoMatchingPlayers = $maxAutoMatchingPlayers;
- }
- public function getMaxAutoMatchingPlayers()
- {
- return $this->maxAutoMatchingPlayers;
- }
- public function setMinAutoMatchingPlayers($minAutoMatchingPlayers)
- {
- $this->minAutoMatchingPlayers = $minAutoMatchingPlayers;
- }
- public function getMinAutoMatchingPlayers()
- {
- return $this->minAutoMatchingPlayers;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatch extends Postman_Google_Collection
-{
- protected $collection_key = 'results';
- protected $internal_gapi_mappings = array(
- );
- public $applicationId;
- protected $autoMatchingCriteriaType = 'Postman_Google_Service_Games_TurnBasedAutoMatchingCriteria';
- protected $autoMatchingCriteriaDataType = '';
- protected $creationDetailsType = 'Postman_Google_Service_Games_TurnBasedMatchModification';
- protected $creationDetailsDataType = '';
- protected $dataType = 'Postman_Google_Service_Games_TurnBasedMatchData';
- protected $dataDataType = '';
- public $description;
- public $inviterId;
- public $kind;
- protected $lastUpdateDetailsType = 'Postman_Google_Service_Games_TurnBasedMatchModification';
- protected $lastUpdateDetailsDataType = '';
- public $matchId;
- public $matchNumber;
- public $matchVersion;
- protected $participantsType = 'Postman_Google_Service_Games_TurnBasedMatchParticipant';
- protected $participantsDataType = 'array';
- public $pendingParticipantId;
- protected $previousMatchDataType = 'Postman_Google_Service_Games_TurnBasedMatchData';
- protected $previousMatchDataDataType = '';
- public $rematchId;
- protected $resultsType = 'Postman_Google_Service_Games_ParticipantResult';
- protected $resultsDataType = 'array';
- public $status;
- public $userMatchStatus;
- public $variant;
- public $withParticipantId;
-
-
- public function setApplicationId($applicationId)
- {
- $this->applicationId = $applicationId;
- }
- public function getApplicationId()
- {
- return $this->applicationId;
- }
- public function setAutoMatchingCriteria(Postman_Google_Service_Games_TurnBasedAutoMatchingCriteria $autoMatchingCriteria)
- {
- $this->autoMatchingCriteria = $autoMatchingCriteria;
- }
- public function getAutoMatchingCriteria()
- {
- return $this->autoMatchingCriteria;
- }
- public function setCreationDetails(Postman_Google_Service_Games_TurnBasedMatchModification $creationDetails)
- {
- $this->creationDetails = $creationDetails;
- }
- public function getCreationDetails()
- {
- return $this->creationDetails;
- }
- public function setData(Postman_Google_Service_Games_TurnBasedMatchData $data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setInviterId($inviterId)
- {
- $this->inviterId = $inviterId;
- }
- public function getInviterId()
- {
- return $this->inviterId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastUpdateDetails(Postman_Google_Service_Games_TurnBasedMatchModification $lastUpdateDetails)
- {
- $this->lastUpdateDetails = $lastUpdateDetails;
- }
- public function getLastUpdateDetails()
- {
- return $this->lastUpdateDetails;
- }
- public function setMatchId($matchId)
- {
- $this->matchId = $matchId;
- }
- public function getMatchId()
- {
- return $this->matchId;
- }
- public function setMatchNumber($matchNumber)
- {
- $this->matchNumber = $matchNumber;
- }
- public function getMatchNumber()
- {
- return $this->matchNumber;
- }
- public function setMatchVersion($matchVersion)
- {
- $this->matchVersion = $matchVersion;
- }
- public function getMatchVersion()
- {
- return $this->matchVersion;
- }
- public function setParticipants($participants)
- {
- $this->participants = $participants;
- }
- public function getParticipants()
- {
- return $this->participants;
- }
- public function setPendingParticipantId($pendingParticipantId)
- {
- $this->pendingParticipantId = $pendingParticipantId;
- }
- public function getPendingParticipantId()
- {
- return $this->pendingParticipantId;
- }
- public function setPreviousMatchData(Postman_Google_Service_Games_TurnBasedMatchData $previousMatchData)
- {
- $this->previousMatchData = $previousMatchData;
- }
- public function getPreviousMatchData()
- {
- return $this->previousMatchData;
- }
- public function setRematchId($rematchId)
- {
- $this->rematchId = $rematchId;
- }
- public function getRematchId()
- {
- return $this->rematchId;
- }
- public function setResults($results)
- {
- $this->results = $results;
- }
- public function getResults()
- {
- return $this->results;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setUserMatchStatus($userMatchStatus)
- {
- $this->userMatchStatus = $userMatchStatus;
- }
- public function getUserMatchStatus()
- {
- return $this->userMatchStatus;
- }
- public function setVariant($variant)
- {
- $this->variant = $variant;
- }
- public function getVariant()
- {
- return $this->variant;
- }
- public function setWithParticipantId($withParticipantId)
- {
- $this->withParticipantId = $withParticipantId;
- }
- public function getWithParticipantId()
- {
- return $this->withParticipantId;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchCreateRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'invitedPlayerIds';
- protected $internal_gapi_mappings = array(
- );
- protected $autoMatchingCriteriaType = 'Postman_Google_Service_Games_TurnBasedAutoMatchingCriteria';
- protected $autoMatchingCriteriaDataType = '';
- public $invitedPlayerIds;
- public $kind;
- public $requestId;
- public $variant;
-
-
- public function setAutoMatchingCriteria(Postman_Google_Service_Games_TurnBasedAutoMatchingCriteria $autoMatchingCriteria)
- {
- $this->autoMatchingCriteria = $autoMatchingCriteria;
- }
- public function getAutoMatchingCriteria()
- {
- return $this->autoMatchingCriteria;
- }
- public function setInvitedPlayerIds($invitedPlayerIds)
- {
- $this->invitedPlayerIds = $invitedPlayerIds;
- }
- public function getInvitedPlayerIds()
- {
- return $this->invitedPlayerIds;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRequestId($requestId)
- {
- $this->requestId = $requestId;
- }
- public function getRequestId()
- {
- return $this->requestId;
- }
- public function setVariant($variant)
- {
- $this->variant = $variant;
- }
- public function getVariant()
- {
- return $this->variant;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $data;
- public $dataAvailable;
- public $kind;
-
-
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setDataAvailable($dataAvailable)
- {
- $this->dataAvailable = $dataAvailable;
- }
- public function getDataAvailable()
- {
- return $this->dataAvailable;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchDataRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $data;
- public $kind;
-
-
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_TurnBasedMatch';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchModification extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $modifiedTimestampMillis;
- public $participantId;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setModifiedTimestampMillis($modifiedTimestampMillis)
- {
- $this->modifiedTimestampMillis = $modifiedTimestampMillis;
- }
- public function getModifiedTimestampMillis()
- {
- return $this->modifiedTimestampMillis;
- }
- public function setParticipantId($participantId)
- {
- $this->participantId = $participantId;
- }
- public function getParticipantId()
- {
- return $this->participantId;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchParticipant extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $autoMatched;
- protected $autoMatchedPlayerType = 'Postman_Google_Service_Games_AnonymousPlayer';
- protected $autoMatchedPlayerDataType = '';
- public $id;
- public $kind;
- protected $playerType = 'Postman_Google_Service_Games_Player';
- protected $playerDataType = '';
- public $status;
-
-
- public function setAutoMatched($autoMatched)
- {
- $this->autoMatched = $autoMatched;
- }
- public function getAutoMatched()
- {
- return $this->autoMatched;
- }
- public function setAutoMatchedPlayer(Postman_Google_Service_Games_AnonymousPlayer $autoMatchedPlayer)
- {
- $this->autoMatchedPlayer = $autoMatchedPlayer;
- }
- public function getAutoMatchedPlayer()
- {
- return $this->autoMatchedPlayer;
- }
- 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 setPlayer(Postman_Google_Service_Games_Player $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchRematch extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $previousMatchType = 'Postman_Google_Service_Games_TurnBasedMatch';
- protected $previousMatchDataType = '';
- protected $rematchType = 'Postman_Google_Service_Games_TurnBasedMatch';
- protected $rematchDataType = '';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPreviousMatch(Postman_Google_Service_Games_TurnBasedMatch $previousMatch)
- {
- $this->previousMatch = $previousMatch;
- }
- public function getPreviousMatch()
- {
- return $this->previousMatch;
- }
- public function setRematch(Postman_Google_Service_Games_TurnBasedMatch $rematch)
- {
- $this->rematch = $rematch;
- }
- public function getRematch()
- {
- return $this->rematch;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchResults extends Postman_Google_Collection
-{
- protected $collection_key = 'results';
- protected $internal_gapi_mappings = array(
- );
- protected $dataType = 'Postman_Google_Service_Games_TurnBasedMatchDataRequest';
- protected $dataDataType = '';
- public $kind;
- public $matchVersion;
- protected $resultsType = 'Postman_Google_Service_Games_ParticipantResult';
- protected $resultsDataType = 'array';
-
-
- public function setData(Postman_Google_Service_Games_TurnBasedMatchDataRequest $data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMatchVersion($matchVersion)
- {
- $this->matchVersion = $matchVersion;
- }
- public function getMatchVersion()
- {
- return $this->matchVersion;
- }
- public function setResults($results)
- {
- $this->results = $results;
- }
- public function getResults()
- {
- return $this->results;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchSync extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Games_TurnBasedMatch';
- protected $itemsDataType = 'array';
- public $kind;
- public $moreAvailable;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMoreAvailable($moreAvailable)
- {
- $this->moreAvailable = $moreAvailable;
- }
- public function getMoreAvailable()
- {
- return $this->moreAvailable;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Games_TurnBasedMatchTurn extends Postman_Google_Collection
-{
- protected $collection_key = 'results';
- protected $internal_gapi_mappings = array(
- );
- protected $dataType = 'Postman_Google_Service_Games_TurnBasedMatchDataRequest';
- protected $dataDataType = '';
- public $kind;
- public $matchVersion;
- public $pendingParticipantId;
- protected $resultsType = 'Postman_Google_Service_Games_ParticipantResult';
- protected $resultsDataType = 'array';
-
-
- public function setData(Postman_Google_Service_Games_TurnBasedMatchDataRequest $data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMatchVersion($matchVersion)
- {
- $this->matchVersion = $matchVersion;
- }
- public function getMatchVersion()
- {
- return $this->matchVersion;
- }
- public function setPendingParticipantId($pendingParticipantId)
- {
- $this->pendingParticipantId = $pendingParticipantId;
- }
- public function getPendingParticipantId()
- {
- return $this->pendingParticipantId;
- }
- public function setResults($results)
- {
- $this->results = $results;
- }
- public function getResults()
- {
- return $this->results;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/GamesManagement.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/GamesManagement.php
deleted file mode 100644
index 0ae184d..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/GamesManagement.php
+++ /dev/null
@@ -1,1385 +0,0 @@
-
- * The Management API for Google Play Game Services.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_GamesManagement extends Postman_Google_Service -{ - /** Share your Google+ profile information and view and manage your game activity. */ - const GAMES = - "https://www.googleapis.com/auth/games"; - /** Know your basic profile info and list of people in your circles.. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - - public $achievements; - public $applications; - public $events; - public $players; - public $quests; - public $rooms; - public $scores; - public $turnBasedMatches; - - - /** - * Constructs the internal representation of the GamesManagement service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'games/v1management/'; - $this->version = 'v1management'; - $this->serviceName = 'gamesManagement'; - - $this->achievements = new Postman_Google_Service_GamesManagement_Achievements_Resource( - $this, - $this->serviceName, - 'achievements', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'achievements/{achievementId}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'achievements/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'achievements/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'achievements/{achievementId}/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'achievements/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->applications = new Postman_Google_Service_GamesManagement_Applications_Resource( - $this, - $this->serviceName, - 'applications', - array( - 'methods' => array( - 'listHidden' => array( - 'path' => 'applications/{applicationId}/players/hidden', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->events = new Postman_Google_Service_GamesManagement_Events_Resource( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'events/{eventId}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'events/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'events/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'events/{eventId}/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'events/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->players = new Postman_Google_Service_GamesManagement_Players_Resource( - $this, - $this->serviceName, - 'players', - array( - 'methods' => array( - 'hide' => array( - 'path' => 'applications/{applicationId}/players/hidden/{playerId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unhide' => array( - 'path' => 'applications/{applicationId}/players/hidden/{playerId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->quests = new Postman_Google_Service_GamesManagement_Quests_Resource( - $this, - $this->serviceName, - 'quests', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'quests/{questId}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'questId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'quests/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'quests/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'quests/{questId}/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'questId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'quests/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->rooms = new Postman_Google_Service_GamesManagement_Rooms_Resource( - $this, - $this->serviceName, - 'rooms', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'rooms/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'rooms/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->scores = new Postman_Google_Service_GamesManagement_Scores_Resource( - $this, - $this->serviceName, - 'scores', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'leaderboards/{leaderboardId}/scores/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'scores/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'scores/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'leaderboards/{leaderboardId}/scores/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'scores/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->turnBasedMatches = new Postman_Google_Service_GamesManagement_TurnBasedMatches_Resource( - $this, - $this->serviceName, - 'turnBasedMatches', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'turnbasedmatches/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'turnbasedmatches/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "achievements" collection of methods. - * Typical usage is: - *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $achievements = $gamesManagementService->achievements;
- *
- */
-class Postman_Google_Service_GamesManagement_Achievements_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Resets the achievement with the given ID for the currently authenticated
- * player. This method is only accessible to whitelisted tester accounts for
- * your application. (achievements.reset)
- *
- * @param string $achievementId The ID of the achievement used by this method.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_GamesManagement_AchievementResetResponse
- */
- public function reset($achievementId, $optParams = array())
- {
- $params = array('achievementId' => $achievementId);
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params), "Postman_Google_Service_GamesManagement_AchievementResetResponse");
- }
-
- /**
- * Resets all achievements for the currently authenticated player for your
- * application. This method is only accessible to whitelisted tester accounts
- * for your application. (achievements.resetAll)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_GamesManagement_AchievementResetAllResponse
- */
- public function resetAll($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAll', array($params), "Postman_Google_Service_GamesManagement_AchievementResetAllResponse");
- }
-
- /**
- * Resets all draft achievements for all players. This method is only available
- * to user accounts for your developer console.
- * (achievements.resetAllForAllPlayers)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetAllForAllPlayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAllForAllPlayers', array($params));
- }
-
- /**
- * Resets the achievement with the given ID for all players. This method is only
- * available to user accounts for your developer console. Only draft
- * achievements can be reset. (achievements.resetForAllPlayers)
- *
- * @param string $achievementId The ID of the achievement used by this method.
- * @param array $optParams Optional parameters.
- */
- public function resetForAllPlayers($achievementId, $optParams = array())
- {
- $params = array('achievementId' => $achievementId);
- $params = array_merge($params, $optParams);
- return $this->call('resetForAllPlayers', array($params));
- }
-
- /**
- * Resets achievements with the given IDs for all players. This method is only
- * available to user accounts for your developer console. Only draft
- * achievements may be reset. (achievements.resetMultipleForAllPlayers)
- *
- * @param Postman_Google_AchievementResetMultipleForAllRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function resetMultipleForAllPlayers(Postman_Google_Service_GamesManagement_AchievementResetMultipleForAllRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('resetMultipleForAllPlayers', array($params));
- }
-}
-
-/**
- * The "applications" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $applications = $gamesManagementService->applications;
- *
- */
-class Postman_Google_Service_GamesManagement_Applications_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get the list of players hidden from the given application. This method is
- * only available to user accounts for your developer console.
- * (applications.listHidden)
- *
- * @param string $applicationId The application ID from the Google Play
- * developer console.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param int maxResults The maximum number of player resources to return in
- * the response, used for paging. For any response, the actual number of player
- * resources returned may be less than the specified maxResults.
- * @return Postman_Google_Service_GamesManagement_HiddenPlayerList
- */
- public function listHidden($applicationId, $optParams = array())
- {
- $params = array('applicationId' => $applicationId);
- $params = array_merge($params, $optParams);
- return $this->call('listHidden', array($params), "Postman_Google_Service_GamesManagement_HiddenPlayerList");
- }
-}
-
-/**
- * The "events" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $events = $gamesManagementService->events;
- *
- */
-class Postman_Google_Service_GamesManagement_Events_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Resets all player progress on the event with the given ID for the currently
- * authenticated player. This method is only accessible to whitelisted tester
- * accounts for your application. All quests for this player that use the event
- * will also be reset. (events.reset)
- *
- * @param string $eventId The ID of the event.
- * @param array $optParams Optional parameters.
- */
- public function reset($eventId, $optParams = array())
- {
- $params = array('eventId' => $eventId);
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params));
- }
-
- /**
- * Resets all player progress on all events for the currently authenticated
- * player. This method is only accessible to whitelisted tester accounts for
- * your application. All quests for this player will also be reset.
- * (events.resetAll)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetAll($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAll', array($params));
- }
-
- /**
- * Resets all draft events for all players. This method is only available to
- * user accounts for your developer console. All quests that use any of these
- * events will also be reset. (events.resetAllForAllPlayers)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetAllForAllPlayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAllForAllPlayers', array($params));
- }
-
- /**
- * Resets the event with the given ID for all players. This method is only
- * available to user accounts for your developer console. Only draft events can
- * be reset. All quests that use the event will also be reset.
- * (events.resetForAllPlayers)
- *
- * @param string $eventId The ID of the event.
- * @param array $optParams Optional parameters.
- */
- public function resetForAllPlayers($eventId, $optParams = array())
- {
- $params = array('eventId' => $eventId);
- $params = array_merge($params, $optParams);
- return $this->call('resetForAllPlayers', array($params));
- }
-
- /**
- * Resets events with the given IDs for all players. This method is only
- * available to user accounts for your developer console. Only draft events may
- * be reset. All quests that use any of the events will also be reset.
- * (events.resetMultipleForAllPlayers)
- *
- * @param Postman_Google_EventsResetMultipleForAllRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function resetMultipleForAllPlayers(Postman_Google_Service_GamesManagement_EventsResetMultipleForAllRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('resetMultipleForAllPlayers', array($params));
- }
-}
-
-/**
- * The "players" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $players = $gamesManagementService->players;
- *
- */
-class Postman_Google_Service_GamesManagement_Players_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Hide the given player's leaderboard scores from the given application. This
- * method is only available to user accounts for your developer console.
- * (players.hide)
- *
- * @param string $applicationId The application ID from the Google Play
- * developer console.
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param array $optParams Optional parameters.
- */
- public function hide($applicationId, $playerId, $optParams = array())
- {
- $params = array('applicationId' => $applicationId, 'playerId' => $playerId);
- $params = array_merge($params, $optParams);
- return $this->call('hide', array($params));
- }
-
- /**
- * Unhide the given player's leaderboard scores from the given application. This
- * method is only available to user accounts for your developer console.
- * (players.unhide)
- *
- * @param string $applicationId The application ID from the Google Play
- * developer console.
- * @param string $playerId A player ID. A value of me may be used in place of
- * the authenticated player's ID.
- * @param array $optParams Optional parameters.
- */
- public function unhide($applicationId, $playerId, $optParams = array())
- {
- $params = array('applicationId' => $applicationId, 'playerId' => $playerId);
- $params = array_merge($params, $optParams);
- return $this->call('unhide', array($params));
- }
-}
-
-/**
- * The "quests" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $quests = $gamesManagementService->quests;
- *
- */
-class Postman_Google_Service_GamesManagement_Quests_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Resets all player progress on the quest with the given ID for the currently
- * authenticated player. This method is only accessible to whitelisted tester
- * accounts for your application. (quests.reset)
- *
- * @param string $questId The ID of the quest.
- * @param array $optParams Optional parameters.
- */
- public function reset($questId, $optParams = array())
- {
- $params = array('questId' => $questId);
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params));
- }
-
- /**
- * Resets all player progress on all quests for the currently authenticated
- * player. This method is only accessible to whitelisted tester accounts for
- * your application. (quests.resetAll)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetAll($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAll', array($params));
- }
-
- /**
- * Resets all draft quests for all players. This method is only available to
- * user accounts for your developer console. (quests.resetAllForAllPlayers)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetAllForAllPlayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAllForAllPlayers', array($params));
- }
-
- /**
- * Resets all player progress on the quest with the given ID for all players.
- * This method is only available to user accounts for your developer console.
- * Only draft quests can be reset. (quests.resetForAllPlayers)
- *
- * @param string $questId The ID of the quest.
- * @param array $optParams Optional parameters.
- */
- public function resetForAllPlayers($questId, $optParams = array())
- {
- $params = array('questId' => $questId);
- $params = array_merge($params, $optParams);
- return $this->call('resetForAllPlayers', array($params));
- }
-
- /**
- * Resets quests with the given IDs for all players. This method is only
- * available to user accounts for your developer console. Only draft quests may
- * be reset. (quests.resetMultipleForAllPlayers)
- *
- * @param Postman_Google_QuestsResetMultipleForAllRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function resetMultipleForAllPlayers(Postman_Google_Service_GamesManagement_QuestsResetMultipleForAllRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('resetMultipleForAllPlayers', array($params));
- }
-}
-
-/**
- * The "rooms" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $rooms = $gamesManagementService->rooms;
- *
- */
-class Postman_Google_Service_GamesManagement_Rooms_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Reset all rooms for the currently authenticated player for your application.
- * This method is only accessible to whitelisted tester accounts for your
- * application. (rooms.reset)
- *
- * @param array $optParams Optional parameters.
- */
- public function reset($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params));
- }
-
- /**
- * Deletes rooms where the only room participants are from whitelisted tester
- * accounts for your application. This method is only available to user accounts
- * for your developer console. (rooms.resetForAllPlayers)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetForAllPlayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetForAllPlayers', array($params));
- }
-}
-
-/**
- * The "scores" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $scores = $gamesManagementService->scores;
- *
- */
-class Postman_Google_Service_GamesManagement_Scores_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Resets scores for the leaderboard with the given ID for the currently
- * authenticated player. This method is only accessible to whitelisted tester
- * accounts for your application. (scores.reset)
- *
- * @param string $leaderboardId The ID of the leaderboard.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_GamesManagement_PlayerScoreResetResponse
- */
- public function reset($leaderboardId, $optParams = array())
- {
- $params = array('leaderboardId' => $leaderboardId);
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params), "Postman_Google_Service_GamesManagement_PlayerScoreResetResponse");
- }
-
- /**
- * Resets all scores for all leaderboards for the currently authenticated
- * players. This method is only accessible to whitelisted tester accounts for
- * your application. (scores.resetAll)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_GamesManagement_PlayerScoreResetAllResponse
- */
- public function resetAll($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAll', array($params), "Postman_Google_Service_GamesManagement_PlayerScoreResetAllResponse");
- }
-
- /**
- * Resets scores for all draft leaderboards for all players. This method is only
- * available to user accounts for your developer console.
- * (scores.resetAllForAllPlayers)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetAllForAllPlayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetAllForAllPlayers', array($params));
- }
-
- /**
- * Resets scores for the leaderboard with the given ID for all players. This
- * method is only available to user accounts for your developer console. Only
- * draft leaderboards can be reset. (scores.resetForAllPlayers)
- *
- * @param string $leaderboardId The ID of the leaderboard.
- * @param array $optParams Optional parameters.
- */
- public function resetForAllPlayers($leaderboardId, $optParams = array())
- {
- $params = array('leaderboardId' => $leaderboardId);
- $params = array_merge($params, $optParams);
- return $this->call('resetForAllPlayers', array($params));
- }
-
- /**
- * Resets scores for the leaderboards with the given IDs for all players. This
- * method is only available to user accounts for your developer console. Only
- * draft leaderboards may be reset. (scores.resetMultipleForAllPlayers)
- *
- * @param Postman_Google_ScoresResetMultipleForAllRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function resetMultipleForAllPlayers(Postman_Google_Service_GamesManagement_ScoresResetMultipleForAllRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('resetMultipleForAllPlayers', array($params));
- }
-}
-
-/**
- * The "turnBasedMatches" collection of methods.
- * Typical usage is:
- *
- * $gamesManagementService = new Postman_Google_Service_GamesManagement(...);
- * $turnBasedMatches = $gamesManagementService->turnBasedMatches;
- *
- */
-class Postman_Google_Service_GamesManagement_TurnBasedMatches_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Reset all turn-based match data for a user. This method is only accessible to
- * whitelisted tester accounts for your application. (turnBasedMatches.reset)
- *
- * @param array $optParams Optional parameters.
- */
- public function reset($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('reset', array($params));
- }
-
- /**
- * Deletes turn-based matches where the only match participants are from
- * whitelisted tester accounts for your application. This method is only
- * available to user accounts for your developer console.
- * (turnBasedMatches.resetForAllPlayers)
- *
- * @param array $optParams Optional parameters.
- */
- public function resetForAllPlayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('resetForAllPlayers', array($params));
- }
-}
-
-
-
-
-class Postman_Google_Service_GamesManagement_AchievementResetAllResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'results';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $resultsType = 'Postman_Google_Service_GamesManagement_AchievementResetResponse';
- protected $resultsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setResults($results)
- {
- $this->results = $results;
- }
- public function getResults()
- {
- return $this->results;
- }
-}
-
-class Postman_Google_Service_GamesManagement_AchievementResetMultipleForAllRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'achievement_ids';
- protected $internal_gapi_mappings = array(
- "achievementIds" => "achievement_ids",
- );
- public $achievementIds;
- public $kind;
-
-
- public function setAchievementIds($achievementIds)
- {
- $this->achievementIds = $achievementIds;
- }
- public function getAchievementIds()
- {
- return $this->achievementIds;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_GamesManagement_AchievementResetResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentState;
- public $definitionId;
- public $kind;
- public $updateOccurred;
-
-
- public function setCurrentState($currentState)
- {
- $this->currentState = $currentState;
- }
- public function getCurrentState()
- {
- return $this->currentState;
- }
- public function setDefinitionId($definitionId)
- {
- $this->definitionId = $definitionId;
- }
- public function getDefinitionId()
- {
- return $this->definitionId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUpdateOccurred($updateOccurred)
- {
- $this->updateOccurred = $updateOccurred;
- }
- public function getUpdateOccurred()
- {
- return $this->updateOccurred;
- }
-}
-
-class Postman_Google_Service_GamesManagement_EventsResetMultipleForAllRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'event_ids';
- protected $internal_gapi_mappings = array(
- "eventIds" => "event_ids",
- );
- public $eventIds;
- public $kind;
-
-
- public function setEventIds($eventIds)
- {
- $this->eventIds = $eventIds;
- }
- public function getEventIds()
- {
- return $this->eventIds;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_GamesManagement_GamesPlayedResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $autoMatched;
- public $timeMillis;
-
-
- public function setAutoMatched($autoMatched)
- {
- $this->autoMatched = $autoMatched;
- }
- public function getAutoMatched()
- {
- return $this->autoMatched;
- }
- public function setTimeMillis($timeMillis)
- {
- $this->timeMillis = $timeMillis;
- }
- public function getTimeMillis()
- {
- return $this->timeMillis;
- }
-}
-
-class Postman_Google_Service_GamesManagement_GamesPlayerExperienceInfoResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currentExperiencePoints;
- protected $currentLevelType = 'Postman_Google_Service_GamesManagement_GamesPlayerLevelResource';
- protected $currentLevelDataType = '';
- public $lastLevelUpTimestampMillis;
- protected $nextLevelType = 'Postman_Google_Service_GamesManagement_GamesPlayerLevelResource';
- protected $nextLevelDataType = '';
-
-
- public function setCurrentExperiencePoints($currentExperiencePoints)
- {
- $this->currentExperiencePoints = $currentExperiencePoints;
- }
- public function getCurrentExperiencePoints()
- {
- return $this->currentExperiencePoints;
- }
- public function setCurrentLevel(Postman_Google_Service_GamesManagement_GamesPlayerLevelResource $currentLevel)
- {
- $this->currentLevel = $currentLevel;
- }
- public function getCurrentLevel()
- {
- return $this->currentLevel;
- }
- public function setLastLevelUpTimestampMillis($lastLevelUpTimestampMillis)
- {
- $this->lastLevelUpTimestampMillis = $lastLevelUpTimestampMillis;
- }
- public function getLastLevelUpTimestampMillis()
- {
- return $this->lastLevelUpTimestampMillis;
- }
- public function setNextLevel(Postman_Google_Service_GamesManagement_GamesPlayerLevelResource $nextLevel)
- {
- $this->nextLevel = $nextLevel;
- }
- public function getNextLevel()
- {
- return $this->nextLevel;
- }
-}
-
-class Postman_Google_Service_GamesManagement_GamesPlayerLevelResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $level;
- public $maxExperiencePoints;
- public $minExperiencePoints;
-
-
- public function setLevel($level)
- {
- $this->level = $level;
- }
- public function getLevel()
- {
- return $this->level;
- }
- public function setMaxExperiencePoints($maxExperiencePoints)
- {
- $this->maxExperiencePoints = $maxExperiencePoints;
- }
- public function getMaxExperiencePoints()
- {
- return $this->maxExperiencePoints;
- }
- public function setMinExperiencePoints($minExperiencePoints)
- {
- $this->minExperiencePoints = $minExperiencePoints;
- }
- public function getMinExperiencePoints()
- {
- return $this->minExperiencePoints;
- }
-}
-
-class Postman_Google_Service_GamesManagement_HiddenPlayer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $hiddenTimeMillis;
- public $kind;
- protected $playerType = 'Postman_Google_Service_GamesManagement_Player';
- protected $playerDataType = '';
-
-
- public function setHiddenTimeMillis($hiddenTimeMillis)
- {
- $this->hiddenTimeMillis = $hiddenTimeMillis;
- }
- public function getHiddenTimeMillis()
- {
- return $this->hiddenTimeMillis;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlayer(Postman_Google_Service_GamesManagement_Player $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
-}
-
-class Postman_Google_Service_GamesManagement_HiddenPlayerList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_GamesManagement_HiddenPlayer';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_GamesManagement_Player extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $avatarImageUrl;
- public $displayName;
- protected $experienceInfoType = 'Postman_Google_Service_GamesManagement_GamesPlayerExperienceInfoResource';
- protected $experienceInfoDataType = '';
- public $kind;
- protected $lastPlayedWithType = 'Postman_Google_Service_GamesManagement_GamesPlayedResource';
- protected $lastPlayedWithDataType = '';
- protected $nameType = 'Postman_Google_Service_GamesManagement_PlayerName';
- protected $nameDataType = '';
- public $playerId;
- public $title;
-
-
- public function setAvatarImageUrl($avatarImageUrl)
- {
- $this->avatarImageUrl = $avatarImageUrl;
- }
- public function getAvatarImageUrl()
- {
- return $this->avatarImageUrl;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setExperienceInfo(Postman_Google_Service_GamesManagement_GamesPlayerExperienceInfoResource $experienceInfo)
- {
- $this->experienceInfo = $experienceInfo;
- }
- public function getExperienceInfo()
- {
- return $this->experienceInfo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastPlayedWith(Postman_Google_Service_GamesManagement_GamesPlayedResource $lastPlayedWith)
- {
- $this->lastPlayedWith = $lastPlayedWith;
- }
- public function getLastPlayedWith()
- {
- return $this->lastPlayedWith;
- }
- public function setName(Postman_Google_Service_GamesManagement_PlayerName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPlayerId($playerId)
- {
- $this->playerId = $playerId;
- }
- public function getPlayerId()
- {
- return $this->playerId;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_GamesManagement_PlayerName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $givenName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
-}
-
-class Postman_Google_Service_GamesManagement_PlayerScoreResetAllResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'results';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $resultsType = 'Postman_Google_Service_GamesManagement_PlayerScoreResetResponse';
- protected $resultsDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setResults($results)
- {
- $this->results = $results;
- }
- public function getResults()
- {
- return $this->results;
- }
-}
-
-class Postman_Google_Service_GamesManagement_PlayerScoreResetResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resetScoreTimeSpans';
- protected $internal_gapi_mappings = array(
- );
- public $definitionId;
- public $kind;
- public $resetScoreTimeSpans;
-
-
- public function setDefinitionId($definitionId)
- {
- $this->definitionId = $definitionId;
- }
- public function getDefinitionId()
- {
- return $this->definitionId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setResetScoreTimeSpans($resetScoreTimeSpans)
- {
- $this->resetScoreTimeSpans = $resetScoreTimeSpans;
- }
- public function getResetScoreTimeSpans()
- {
- return $this->resetScoreTimeSpans;
- }
-}
-
-class Postman_Google_Service_GamesManagement_QuestsResetMultipleForAllRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'quest_ids';
- protected $internal_gapi_mappings = array(
- "questIds" => "quest_ids",
- );
- public $kind;
- public $questIds;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setQuestIds($questIds)
- {
- $this->questIds = $questIds;
- }
- public function getQuestIds()
- {
- return $this->questIds;
- }
-}
-
-class Postman_Google_Service_GamesManagement_ScoresResetMultipleForAllRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'leaderboard_ids';
- protected $internal_gapi_mappings = array(
- "leaderboardIds" => "leaderboard_ids",
- );
- public $kind;
- public $leaderboardIds;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLeaderboardIds($leaderboardIds)
- {
- $this->leaderboardIds = $leaderboardIds;
- }
- public function getLeaderboardIds()
- {
- return $this->leaderboardIds;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Genomics.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Genomics.php
deleted file mode 100644
index 76a48a1..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Genomics.php
+++ /dev/null
@@ -1,4227 +0,0 @@
-
- * Provides access to Genomics data.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Genomics extends Postman_Google_Service -{ - /** View and manage your data in Google BigQuery. */ - const BIGQUERY = - "https://www.googleapis.com/auth/bigquery"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - /** View and manage Genomics data. */ - const GENOMICS = - "https://www.googleapis.com/auth/genomics"; - /** View Genomics data. */ - const GENOMICS_READONLY = - "https://www.googleapis.com/auth/genomics.readonly"; - - public $callsets; - public $datasets; - public $experimental_jobs; - public $jobs; - public $readgroupsets; - public $readgroupsets_coveragebuckets; - public $reads; - public $references; - public $references_bases; - public $referencesets; - public $variants; - public $variantsets; - - - /** - * Constructs the internal representation of the Genomics service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'genomics/v1beta2/'; - $this->version = 'v1beta2'; - $this->serviceName = 'genomics'; - - $this->callsets = new Postman_Google_Service_Genomics_Callsets_Resource( - $this, - $this->serviceName, - 'callsets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'callsets', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'callsets/{callSetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'callSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'callsets/{callSetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'callSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'callsets/{callSetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'callSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'callsets/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'callsets/{callSetId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'callSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->datasets = new Postman_Google_Service_Genomics_Datasets_Resource( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'datasets', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'datasets/{datasetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'datasets/{datasetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'datasets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'datasets/{datasetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'datasets/{datasetId}/undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'datasets/{datasetId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->experimental_jobs = new Postman_Google_Service_Genomics_ExperimentalJobs_Resource( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'experimental/jobs/create', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->jobs = new Postman_Google_Service_Genomics_Jobs_Resource( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'jobs/{jobId}/cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'jobs/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->readgroupsets = new Postman_Google_Service_Genomics_Readgroupsets_Resource( - $this, - $this->serviceName, - 'readgroupsets', - array( - 'methods' => array( - 'align' => array( - 'path' => 'readgroupsets/align', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'call' => array( - 'path' => 'readgroupsets/call', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'readgroupsets/{readGroupSetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'readGroupSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'readgroupsets/export', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'readgroupsets/{readGroupSetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'readGroupSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'readgroupsets/import', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'readgroupsets/{readGroupSetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'readGroupSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'readgroupsets/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'readgroupsets/{readGroupSetId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'readGroupSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->readgroupsets_coveragebuckets = new Postman_Google_Service_Genomics_ReadgroupsetsCoveragebuckets_Resource( - $this, - $this->serviceName, - 'coveragebuckets', - array( - 'methods' => array( - 'list' => array( - 'path' => 'readgroupsets/{readGroupSetId}/coveragebuckets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'readGroupSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'range.start' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'range.end' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'range.referenceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'targetBucketWidth' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->reads = new Postman_Google_Service_Genomics_Reads_Resource( - $this, - $this->serviceName, - 'reads', - array( - 'methods' => array( - 'search' => array( - 'path' => 'reads/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->references = new Postman_Google_Service_Genomics_References_Resource( - $this, - $this->serviceName, - 'references', - array( - 'methods' => array( - 'get' => array( - 'path' => 'references/{referenceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'referenceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'references/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->references_bases = new Postman_Google_Service_Genomics_ReferencesBases_Resource( - $this, - $this->serviceName, - 'bases', - array( - 'methods' => array( - 'list' => array( - 'path' => 'references/{referenceId}/bases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'referenceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'end' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->referencesets = new Postman_Google_Service_Genomics_Referencesets_Resource( - $this, - $this->serviceName, - 'referencesets', - array( - 'methods' => array( - 'get' => array( - 'path' => 'referencesets/{referenceSetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'referenceSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'referencesets/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->variants = new Postman_Google_Service_Genomics_Variants_Resource( - $this, - $this->serviceName, - 'variants', - array( - 'methods' => array( - 'create' => array( - 'path' => 'variants', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'variants/{variantId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'variantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'variants/{variantId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'variantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'variants/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'variants/{variantId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'variantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->variantsets = new Postman_Google_Service_Genomics_Variantsets_Resource( - $this, - $this->serviceName, - 'variantsets', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'variantsets/{variantSetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'variantsets/{variantSetId}/export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'variantsets/{variantSetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'importVariants' => array( - 'path' => 'variantsets/{variantSetId}/importVariants', - 'httpMethod' => 'POST', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'mergeVariants' => array( - 'path' => 'variantsets/{variantSetId}/mergeVariants', - 'httpMethod' => 'POST', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'variantsets/{variantSetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'variantsets/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'variantsets/{variantSetId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'variantSetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "callsets" collection of methods. - * Typical usage is: - *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $callsets = $genomicsService->callsets;
- *
- */
-class Postman_Google_Service_Genomics_Callsets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a new call set. (callsets.create)
- *
- * @param Postman_Google_CallSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_CallSet
- */
- public function create(Postman_Google_Service_Genomics_CallSet $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Genomics_CallSet");
- }
-
- /**
- * Deletes a call set. (callsets.delete)
- *
- * @param string $callSetId The ID of the call set to be deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($callSetId, $optParams = array())
- {
- $params = array('callSetId' => $callSetId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a call set by ID. (callsets.get)
- *
- * @param string $callSetId The ID of the call set.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_CallSet
- */
- public function get($callSetId, $optParams = array())
- {
- $params = array('callSetId' => $callSetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_CallSet");
- }
-
- /**
- * Updates a call set. This method supports patch semantics. (callsets.patch)
- *
- * @param string $callSetId The ID of the call set to be updated.
- * @param Postman_Google_CallSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_CallSet
- */
- public function patch($callSetId, Postman_Google_Service_Genomics_CallSet $postBody, $optParams = array())
- {
- $params = array('callSetId' => $callSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Genomics_CallSet");
- }
-
- /**
- * Gets a list of call sets matching the criteria.
- *
- * Implements GlobalAllianceApi.searchCallSets. (callsets.search)
- *
- * @param Postman_Google_SearchCallSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchCallSetsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchCallSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchCallSetsResponse");
- }
-
- /**
- * Updates a call set. (callsets.update)
- *
- * @param string $callSetId The ID of the call set to be updated.
- * @param Postman_Google_CallSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_CallSet
- */
- public function update($callSetId, Postman_Google_Service_Genomics_CallSet $postBody, $optParams = array())
- {
- $params = array('callSetId' => $callSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Genomics_CallSet");
- }
-}
-
-/**
- * The "datasets" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $datasets = $genomicsService->datasets;
- *
- */
-class Postman_Google_Service_Genomics_Datasets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a new dataset. (datasets.create)
- *
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Dataset
- */
- public function create(Postman_Google_Service_Genomics_Dataset $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Genomics_Dataset");
- }
-
- /**
- * Deletes a dataset. (datasets.delete)
- *
- * @param string $datasetId The ID of the dataset to be deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($datasetId, $optParams = array())
- {
- $params = array('datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a dataset by ID. (datasets.get)
- *
- * @param string $datasetId The ID of the dataset.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Dataset
- */
- public function get($datasetId, $optParams = array())
- {
- $params = array('datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_Dataset");
- }
-
- /**
- * Lists all datasets. (datasets.listDatasets)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of nextPageToken from the previous response.
- * @opt_param string projectNumber Only return datasets which belong to this
- * Google Developers Console project. Only accepts project numbers. Returns all
- * public projects if no project number is specified.
- * @opt_param int pageSize The maximum number of results returned by this
- * request.
- * @return Postman_Google_Service_Genomics_ListDatasetsResponse
- */
- public function listDatasets($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Genomics_ListDatasetsResponse");
- }
-
- /**
- * Updates a dataset. This method supports patch semantics. (datasets.patch)
- *
- * @param string $datasetId The ID of the dataset to be updated.
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Dataset
- */
- public function patch($datasetId, Postman_Google_Service_Genomics_Dataset $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Genomics_Dataset");
- }
-
- /**
- * Undeletes a dataset by restoring a dataset which was deleted via this API.
- * This operation is only possible for a week after the deletion occurred.
- * (datasets.undelete)
- *
- * @param string $datasetId The ID of the dataset to be undeleted.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Dataset
- */
- public function undelete($datasetId, $optParams = array())
- {
- $params = array('datasetId' => $datasetId);
- $params = array_merge($params, $optParams);
- return $this->call('undelete', array($params), "Postman_Google_Service_Genomics_Dataset");
- }
-
- /**
- * Updates a dataset. (datasets.update)
- *
- * @param string $datasetId The ID of the dataset to be updated.
- * @param Postman_Google_Dataset $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Dataset
- */
- public function update($datasetId, Postman_Google_Service_Genomics_Dataset $postBody, $optParams = array())
- {
- $params = array('datasetId' => $datasetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Genomics_Dataset");
- }
-}
-
-/**
- * The "experimental" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $experimental = $genomicsService->experimental;
- *
- */
-class Postman_Google_Service_Genomics_Experimental_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "jobs" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $jobs = $genomicsService->jobs;
- *
- */
-class Postman_Google_Service_Genomics_ExperimentalJobs_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates and asynchronously runs an ad-hoc job. This is an experimental call
- * and may be removed or changed at any time. (jobs.create)
- *
- * @param Postman_Google_ExperimentalCreateJobRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ExperimentalCreateJobResponse
- */
- public function create(Postman_Google_Service_Genomics_ExperimentalCreateJobRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Genomics_ExperimentalCreateJobResponse");
- }
-}
-
-/**
- * The "jobs" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $jobs = $genomicsService->jobs;
- *
- */
-class Postman_Google_Service_Genomics_Jobs_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Cancels a job by ID. Note that it is possible for partial results to be
- * generated and stored for cancelled jobs. (jobs.cancel)
- *
- * @param string $jobId Required. The ID of the job.
- * @param array $optParams Optional parameters.
- */
- public function cancel($jobId, $optParams = array())
- {
- $params = array('jobId' => $jobId);
- $params = array_merge($params, $optParams);
- return $this->call('cancel', array($params));
- }
-
- /**
- * Gets a job by ID. (jobs.get)
- *
- * @param string $jobId Required. The ID of the job.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Job
- */
- public function get($jobId, $optParams = array())
- {
- $params = array('jobId' => $jobId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_Job");
- }
-
- /**
- * Gets a list of jobs matching the criteria. (jobs.search)
- *
- * @param Postman_Google_SearchJobsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchJobsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchJobsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchJobsResponse");
- }
-}
-
-/**
- * The "readgroupsets" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $readgroupsets = $genomicsService->readgroupsets;
- *
- */
-class Postman_Google_Service_Genomics_Readgroupsets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Aligns read data from existing read group sets or files from Google Cloud
- * Storage. See the alignment and variant calling documentation for more
- * details. (readgroupsets.align)
- *
- * @param Postman_Google_AlignReadGroupSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_AlignReadGroupSetsResponse
- */
- public function align(Postman_Google_Service_Genomics_AlignReadGroupSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('align', array($params), "Postman_Google_Service_Genomics_AlignReadGroupSetsResponse");
- }
-
- /**
- * Calls variants on read data from existing read group sets or files from
- * Google Cloud Storage. See the alignment and variant calling documentation
- * for more details. (readgroupsets.callReadgroupsets)
- *
- * @param Postman_Google_CallReadGroupSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_CallReadGroupSetsResponse
- */
- public function callReadgroupsets(Postman_Google_Service_Genomics_CallReadGroupSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('call', array($params), "Postman_Google_Service_Genomics_CallReadGroupSetsResponse");
- }
-
- /**
- * Deletes a read group set. (readgroupsets.delete)
- *
- * @param string $readGroupSetId The ID of the read group set to be deleted. The
- * caller must have WRITE permissions to the dataset associated with this read
- * group set.
- * @param array $optParams Optional parameters.
- */
- public function delete($readGroupSetId, $optParams = array())
- {
- $params = array('readGroupSetId' => $readGroupSetId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Exports read group sets to a BAM file in Google Cloud Storage.
- *
- * Note that currently there may be some differences between exported BAM files
- * and the original BAM file at the time of import. In particular, comments in
- * the input file header will not be preserved, and some custom tags will be
- * converted to strings. (readgroupsets.export)
- *
- * @param Postman_Google_ExportReadGroupSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ExportReadGroupSetsResponse
- */
- public function export(Postman_Google_Service_Genomics_ExportReadGroupSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('export', array($params), "Postman_Google_Service_Genomics_ExportReadGroupSetsResponse");
- }
-
- /**
- * Gets a read group set by ID. (readgroupsets.get)
- *
- * @param string $readGroupSetId The ID of the read group set.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ReadGroupSet
- */
- public function get($readGroupSetId, $optParams = array())
- {
- $params = array('readGroupSetId' => $readGroupSetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_ReadGroupSet");
- }
-
- /**
- * Creates read group sets by asynchronously importing the provided information.
- *
- * Note that currently comments in the input file header are not imported and
- * some custom tags will be converted to strings, rather than preserving tag
- * types. The caller must have WRITE permissions to the dataset.
- * (readgroupsets.import)
- *
- * @param Postman_Google_ImportReadGroupSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ImportReadGroupSetsResponse
- */
- public function import(Postman_Google_Service_Genomics_ImportReadGroupSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('import', array($params), "Postman_Google_Service_Genomics_ImportReadGroupSetsResponse");
- }
-
- /**
- * Updates a read group set. This method supports patch semantics.
- * (readgroupsets.patch)
- *
- * @param string $readGroupSetId The ID of the read group set to be updated. The
- * caller must have WRITE permissions to the dataset associated with this read
- * group set.
- * @param Postman_Google_ReadGroupSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ReadGroupSet
- */
- public function patch($readGroupSetId, Postman_Google_Service_Genomics_ReadGroupSet $postBody, $optParams = array())
- {
- $params = array('readGroupSetId' => $readGroupSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Genomics_ReadGroupSet");
- }
-
- /**
- * Searches for read group sets matching the criteria.
- *
- * Implements GlobalAllianceApi.searchReadGroupSets. (readgroupsets.search)
- *
- * @param Postman_Google_SearchReadGroupSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchReadGroupSetsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchReadGroupSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchReadGroupSetsResponse");
- }
-
- /**
- * Updates a read group set. (readgroupsets.update)
- *
- * @param string $readGroupSetId The ID of the read group set to be updated. The
- * caller must have WRITE permissions to the dataset associated with this read
- * group set.
- * @param Postman_Google_ReadGroupSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ReadGroupSet
- */
- public function update($readGroupSetId, Postman_Google_Service_Genomics_ReadGroupSet $postBody, $optParams = array())
- {
- $params = array('readGroupSetId' => $readGroupSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Genomics_ReadGroupSet");
- }
-}
-
-/**
- * The "coveragebuckets" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $coveragebuckets = $genomicsService->coveragebuckets;
- *
- */
-class Postman_Google_Service_Genomics_ReadgroupsetsCoveragebuckets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists fixed width coverage buckets for a read group set, each of which
- * correspond to a range of a reference sequence. Each bucket summarizes
- * coverage information across its corresponding genomic range.
- *
- * Coverage is defined as the number of reads which are aligned to a given base
- * in the reference sequence. Coverage buckets are available at several
- * precomputed bucket widths, enabling retrieval of various coverage 'zoom
- * levels'. The caller must have READ permissions for the target read group set.
- * (coveragebuckets.listReadgroupsetsCoveragebuckets)
- *
- * @param string $readGroupSetId Required. The ID of the read group set over
- * which coverage is requested.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int pageSize The maximum number of results to return in a single
- * page. If unspecified, defaults to 1024. The maximum value is 2048.
- * @opt_param string range.start The start position of the range on the
- * reference, 0-based inclusive. If specified, referenceName must also be
- * specified.
- * @opt_param string range.end The end position of the range on the reference,
- * 0-based exclusive. If specified, referenceName must also be specified.
- * @opt_param string range.referenceName The reference sequence name, for
- * example chr1, 1, or chrX.
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of nextPageToken from the previous response.
- * @opt_param string targetBucketWidth The desired width of each reported
- * coverage bucket in base pairs. This will be rounded down to the nearest
- * precomputed bucket width; the value of which is returned as bucketWidth in
- * the response. Defaults to infinity (each bucket spans an entire reference
- * sequence) or the length of the target range, if specified. The smallest
- * precomputed bucketWidth is currently 2048 base pairs; this is subject to
- * change.
- * @return Postman_Google_Service_Genomics_ListCoverageBucketsResponse
- */
- public function listReadgroupsetsCoveragebuckets($readGroupSetId, $optParams = array())
- {
- $params = array('readGroupSetId' => $readGroupSetId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Genomics_ListCoverageBucketsResponse");
- }
-}
-
-/**
- * The "reads" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $reads = $genomicsService->reads;
- *
- */
-class Postman_Google_Service_Genomics_Reads_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a list of reads for one or more read group sets. Reads search operates
- * over a genomic coordinate space of reference sequence & position defined over
- * the reference sequences to which the requested read group sets are aligned.
- *
- * If a target positional range is specified, search returns all reads whose
- * alignment to the reference genome overlap the range. A query which specifies
- * only read group set IDs yields all reads in those read group sets, including
- * unmapped reads.
- *
- * All reads returned (including reads on subsequent pages) are ordered by
- * genomic coordinate (reference sequence & position). Reads with equivalent
- * genomic coordinates are returned in a deterministic order.
- *
- * Implements GlobalAllianceApi.searchReads. (reads.search)
- *
- * @param Postman_Google_SearchReadsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchReadsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchReadsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchReadsResponse");
- }
-}
-
-/**
- * The "references" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $references = $genomicsService->references;
- *
- */
-class Postman_Google_Service_Genomics_References_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a reference.
- *
- * Implements GlobalAllianceApi.getReference. (references.get)
- *
- * @param string $referenceId The ID of the reference.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Reference
- */
- public function get($referenceId, $optParams = array())
- {
- $params = array('referenceId' => $referenceId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_Reference");
- }
-
- /**
- * Searches for references which match the given criteria.
- *
- * Implements GlobalAllianceApi.searchReferences. (references.search)
- *
- * @param Postman_Google_SearchReferencesRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchReferencesResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchReferencesRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchReferencesResponse");
- }
-}
-
-/**
- * The "bases" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $bases = $genomicsService->bases;
- *
- */
-class Postman_Google_Service_Genomics_ReferencesBases_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists the bases in a reference, optionally restricted to a range.
- *
- * Implements GlobalAllianceApi.getReferenceBases. (bases.listReferencesBases)
- *
- * @param string $referenceId The ID of the reference.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of nextPageToken from the previous response.
- * @opt_param string end The end position (0-based, exclusive) of this query.
- * Defaults to the length of this reference.
- * @opt_param int pageSize Specifies the maximum number of bases to return in a
- * single page.
- * @opt_param string start The start position (0-based) of this query. Defaults
- * to 0.
- * @return Postman_Google_Service_Genomics_ListBasesResponse
- */
- public function listReferencesBases($referenceId, $optParams = array())
- {
- $params = array('referenceId' => $referenceId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Genomics_ListBasesResponse");
- }
-}
-
-/**
- * The "referencesets" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $referencesets = $genomicsService->referencesets;
- *
- */
-class Postman_Google_Service_Genomics_Referencesets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a reference set.
- *
- * Implements GlobalAllianceApi.getReferenceSet. (referencesets.get)
- *
- * @param string $referenceSetId The ID of the reference set.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ReferenceSet
- */
- public function get($referenceSetId, $optParams = array())
- {
- $params = array('referenceSetId' => $referenceSetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_ReferenceSet");
- }
-
- /**
- * Searches for reference sets which match the given criteria.
- *
- * Implements GlobalAllianceApi.searchReferenceSets. (referencesets.search)
- *
- * @param Postman_Google_SearchReferenceSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchReferenceSetsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchReferenceSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchReferenceSetsResponse");
- }
-}
-
-/**
- * The "variants" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $variants = $genomicsService->variants;
- *
- */
-class Postman_Google_Service_Genomics_Variants_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a new variant. (variants.create)
- *
- * @param Postman_Google_Variant $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Variant
- */
- public function create(Postman_Google_Service_Genomics_Variant $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Genomics_Variant");
- }
-
- /**
- * Deletes a variant. (variants.delete)
- *
- * @param string $variantId The ID of the variant to be deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($variantId, $optParams = array())
- {
- $params = array('variantId' => $variantId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a variant by ID. (variants.get)
- *
- * @param string $variantId The ID of the variant.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Variant
- */
- public function get($variantId, $optParams = array())
- {
- $params = array('variantId' => $variantId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_Variant");
- }
-
- /**
- * Gets a list of variants matching the criteria.
- *
- * Implements GlobalAllianceApi.searchVariants. (variants.search)
- *
- * @param Postman_Google_SearchVariantsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchVariantsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchVariantsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchVariantsResponse");
- }
-
- /**
- * Updates a variant's names and info fields. All other modifications are
- * silently ignored. Returns the modified variant without its calls.
- * (variants.update)
- *
- * @param string $variantId The ID of the variant to be updated.
- * @param Postman_Google_Variant $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_Variant
- */
- public function update($variantId, Postman_Google_Service_Genomics_Variant $postBody, $optParams = array())
- {
- $params = array('variantId' => $variantId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Genomics_Variant");
- }
-}
-
-/**
- * The "variantsets" collection of methods.
- * Typical usage is:
- *
- * $genomicsService = new Postman_Google_Service_Genomics(...);
- * $variantsets = $genomicsService->variantsets;
- *
- */
-class Postman_Google_Service_Genomics_Variantsets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the contents of a variant set. The variant set object is not deleted.
- * (variantsets.delete)
- *
- * @param string $variantSetId The ID of the variant set to be deleted.
- * @param array $optParams Optional parameters.
- */
- public function delete($variantSetId, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Exports variant set data to an external destination. (variantsets.export)
- *
- * @param string $variantSetId Required. The ID of the variant set that contains
- * variant data which should be exported. The caller must have READ access to
- * this variant set.
- * @param Postman_Google_ExportVariantSetRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ExportVariantSetResponse
- */
- public function export($variantSetId, Postman_Google_Service_Genomics_ExportVariantSetRequest $postBody, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('export', array($params), "Postman_Google_Service_Genomics_ExportVariantSetResponse");
- }
-
- /**
- * Gets a variant set by ID. (variantsets.get)
- *
- * @param string $variantSetId Required. The ID of the variant set.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_VariantSet
- */
- public function get($variantSetId, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Genomics_VariantSet");
- }
-
- /**
- * Creates variant data by asynchronously importing the provided information.
- *
- * The variants for import will be merged with any existing data and each other
- * according to the behavior of mergeVariants. In particular, this means for
- * merged VCF variants that have conflicting INFO fields, some data will be
- * arbitrarily discarded. As a special case, for single-sample VCF files, QUAL
- * and FILTER fields will be moved to the call level; these are sometimes
- * interpreted in a call-specific context. Imported VCF headers are appended to
- * the metadata already in a variant set. (variantsets.importVariants)
- *
- * @param string $variantSetId Required. The variant set to which variant data
- * should be imported.
- * @param Postman_Google_ImportVariantsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_ImportVariantsResponse
- */
- public function importVariants($variantSetId, Postman_Google_Service_Genomics_ImportVariantsRequest $postBody, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('importVariants', array($params), "Postman_Google_Service_Genomics_ImportVariantsResponse");
- }
-
- /**
- * Merges the given variants with existing variants. Each variant will be merged
- * with an existing variant that matches its reference sequence, start, end,
- * reference bases, and alternative bases. If no such variant exists, a new one
- * will be created.
- *
- * When variants are merged, the call information from the new variant is added
- * to the existing variant, and other fields (such as key/value pairs) are
- * discarded. (variantsets.mergeVariants)
- *
- * @param string $variantSetId The destination variant set.
- * @param Postman_Google_MergeVariantsRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function mergeVariants($variantSetId, Postman_Google_Service_Genomics_MergeVariantsRequest $postBody, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('mergeVariants', array($params));
- }
-
- /**
- * Updates a variant set's metadata. All other modifications are silently
- * ignored. This method supports patch semantics. (variantsets.patch)
- *
- * @param string $variantSetId The ID of the variant to be updated.
- * @param Postman_Google_VariantSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_VariantSet
- */
- public function patch($variantSetId, Postman_Google_Service_Genomics_VariantSet $postBody, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Genomics_VariantSet");
- }
-
- /**
- * Returns a list of all variant sets matching search criteria.
- *
- * Implements GlobalAllianceApi.searchVariantSets. (variantsets.search)
- *
- * @param Postman_Google_SearchVariantSetsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_SearchVariantSetsResponse
- */
- public function search(Postman_Google_Service_Genomics_SearchVariantSetsRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Genomics_SearchVariantSetsResponse");
- }
-
- /**
- * Updates a variant set's metadata. All other modifications are silently
- * ignored. (variantsets.update)
- *
- * @param string $variantSetId The ID of the variant to be updated.
- * @param Postman_Google_VariantSet $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Genomics_VariantSet
- */
- public function update($variantSetId, Postman_Google_Service_Genomics_VariantSet $postBody, $optParams = array())
- {
- $params = array('variantSetId' => $variantSetId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Genomics_VariantSet");
- }
-}
-
-
-
-
-class Postman_Google_Service_Genomics_AlignReadGroupSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'readGroupSetIds';
- protected $internal_gapi_mappings = array(
- );
- public $bamSourceUris;
- public $datasetId;
- protected $interleavedFastqSourceType = 'Postman_Google_Service_Genomics_InterleavedFastqSource';
- protected $interleavedFastqSourceDataType = '';
- protected $pairedFastqSourceType = 'Postman_Google_Service_Genomics_PairedFastqSource';
- protected $pairedFastqSourceDataType = '';
- public $readGroupSetIds;
-
-
- public function setBamSourceUris($bamSourceUris)
- {
- $this->bamSourceUris = $bamSourceUris;
- }
- public function getBamSourceUris()
- {
- return $this->bamSourceUris;
- }
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setInterleavedFastqSource(Postman_Google_Service_Genomics_InterleavedFastqSource $interleavedFastqSource)
- {
- $this->interleavedFastqSource = $interleavedFastqSource;
- }
- public function getInterleavedFastqSource()
- {
- return $this->interleavedFastqSource;
- }
- public function setPairedFastqSource(Postman_Google_Service_Genomics_PairedFastqSource $pairedFastqSource)
- {
- $this->pairedFastqSource = $pairedFastqSource;
- }
- public function getPairedFastqSource()
- {
- return $this->pairedFastqSource;
- }
- public function setReadGroupSetIds($readGroupSetIds)
- {
- $this->readGroupSetIds = $readGroupSetIds;
- }
- public function getReadGroupSetIds()
- {
- return $this->readGroupSetIds;
- }
-}
-
-class Postman_Google_Service_Genomics_AlignReadGroupSetsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_CallReadGroupSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUris';
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $readGroupSetIds;
- public $sourceUris;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setReadGroupSetIds($readGroupSetIds)
- {
- $this->readGroupSetIds = $readGroupSetIds;
- }
- public function getReadGroupSetIds()
- {
- return $this->readGroupSetIds;
- }
- public function setSourceUris($sourceUris)
- {
- $this->sourceUris = $sourceUris;
- }
- public function getSourceUris()
- {
- return $this->sourceUris;
- }
-}
-
-class Postman_Google_Service_Genomics_CallReadGroupSetsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_CallSet extends Postman_Google_Collection
-{
- protected $collection_key = 'variantSetIds';
- protected $internal_gapi_mappings = array(
- );
- public $created;
- public $id;
- public $info;
- public $name;
- public $sampleId;
- public $variantSetIds;
-
-
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInfo($info)
- {
- $this->info = $info;
- }
- public function getInfo()
- {
- return $this->info;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setSampleId($sampleId)
- {
- $this->sampleId = $sampleId;
- }
- public function getSampleId()
- {
- return $this->sampleId;
- }
- public function setVariantSetIds($variantSetIds)
- {
- $this->variantSetIds = $variantSetIds;
- }
- public function getVariantSetIds()
- {
- return $this->variantSetIds;
- }
-}
-
-class Postman_Google_Service_Genomics_CallSetInfo extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Genomics_CigarUnit extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $operation;
- public $operationLength;
- public $referenceSequence;
-
-
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
- public function setOperationLength($operationLength)
- {
- $this->operationLength = $operationLength;
- }
- public function getOperationLength()
- {
- return $this->operationLength;
- }
- public function setReferenceSequence($referenceSequence)
- {
- $this->referenceSequence = $referenceSequence;
- }
- public function getReferenceSequence()
- {
- return $this->referenceSequence;
- }
-}
-
-class Postman_Google_Service_Genomics_CoverageBucket extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $meanCoverage;
- protected $rangeType = 'Postman_Google_Service_Genomics_Range';
- protected $rangeDataType = '';
-
-
- public function setMeanCoverage($meanCoverage)
- {
- $this->meanCoverage = $meanCoverage;
- }
- public function getMeanCoverage()
- {
- return $this->meanCoverage;
- }
- public function setRange(Postman_Google_Service_Genomics_Range $range)
- {
- $this->range = $range;
- }
- public function getRange()
- {
- return $this->range;
- }
-}
-
-class Postman_Google_Service_Genomics_Dataset extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $isPublic;
- public $name;
- public $projectNumber;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsPublic($isPublic)
- {
- $this->isPublic = $isPublic;
- }
- public function getIsPublic()
- {
- return $this->isPublic;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
-}
-
-class Postman_Google_Service_Genomics_ExperimentalCreateJobRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUris';
- protected $internal_gapi_mappings = array(
- );
- public $align;
- public $callVariants;
- public $gcsOutputPath;
- public $pairedSourceUris;
- public $projectNumber;
- public $sourceUris;
-
-
- public function setAlign($align)
- {
- $this->align = $align;
- }
- public function getAlign()
- {
- return $this->align;
- }
- public function setCallVariants($callVariants)
- {
- $this->callVariants = $callVariants;
- }
- public function getCallVariants()
- {
- return $this->callVariants;
- }
- public function setGcsOutputPath($gcsOutputPath)
- {
- $this->gcsOutputPath = $gcsOutputPath;
- }
- public function getGcsOutputPath()
- {
- return $this->gcsOutputPath;
- }
- public function setPairedSourceUris($pairedSourceUris)
- {
- $this->pairedSourceUris = $pairedSourceUris;
- }
- public function getPairedSourceUris()
- {
- return $this->pairedSourceUris;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setSourceUris($sourceUris)
- {
- $this->sourceUris = $sourceUris;
- }
- public function getSourceUris()
- {
- return $this->sourceUris;
- }
-}
-
-class Postman_Google_Service_Genomics_ExperimentalCreateJobResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_ExportReadGroupSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'referenceNames';
- protected $internal_gapi_mappings = array(
- );
- public $exportUri;
- public $projectNumber;
- public $readGroupSetIds;
- public $referenceNames;
-
-
- public function setExportUri($exportUri)
- {
- $this->exportUri = $exportUri;
- }
- public function getExportUri()
- {
- return $this->exportUri;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setReadGroupSetIds($readGroupSetIds)
- {
- $this->readGroupSetIds = $readGroupSetIds;
- }
- public function getReadGroupSetIds()
- {
- return $this->readGroupSetIds;
- }
- public function setReferenceNames($referenceNames)
- {
- $this->referenceNames = $referenceNames;
- }
- public function getReferenceNames()
- {
- return $this->referenceNames;
- }
-}
-
-class Postman_Google_Service_Genomics_ExportReadGroupSetsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_ExportVariantSetRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'callSetIds';
- protected $internal_gapi_mappings = array(
- );
- public $bigqueryDataset;
- public $bigqueryTable;
- public $callSetIds;
- public $format;
- public $projectNumber;
-
-
- public function setBigqueryDataset($bigqueryDataset)
- {
- $this->bigqueryDataset = $bigqueryDataset;
- }
- public function getBigqueryDataset()
- {
- return $this->bigqueryDataset;
- }
- public function setBigqueryTable($bigqueryTable)
- {
- $this->bigqueryTable = $bigqueryTable;
- }
- public function getBigqueryTable()
- {
- return $this->bigqueryTable;
- }
- public function setCallSetIds($callSetIds)
- {
- $this->callSetIds = $callSetIds;
- }
- public function getCallSetIds()
- {
- return $this->callSetIds;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
-}
-
-class Postman_Google_Service_Genomics_ExportVariantSetResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_FastqMetadata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $libraryName;
- public $platformName;
- public $platformUnit;
- public $readGroupName;
- public $sampleName;
-
-
- public function setLibraryName($libraryName)
- {
- $this->libraryName = $libraryName;
- }
- public function getLibraryName()
- {
- return $this->libraryName;
- }
- public function setPlatformName($platformName)
- {
- $this->platformName = $platformName;
- }
- public function getPlatformName()
- {
- return $this->platformName;
- }
- public function setPlatformUnit($platformUnit)
- {
- $this->platformUnit = $platformUnit;
- }
- public function getPlatformUnit()
- {
- return $this->platformUnit;
- }
- public function setReadGroupName($readGroupName)
- {
- $this->readGroupName = $readGroupName;
- }
- public function getReadGroupName()
- {
- return $this->readGroupName;
- }
- public function setSampleName($sampleName)
- {
- $this->sampleName = $sampleName;
- }
- public function getSampleName()
- {
- return $this->sampleName;
- }
-}
-
-class Postman_Google_Service_Genomics_GenomicsCall extends Postman_Google_Collection
-{
- protected $collection_key = 'genotypeLikelihood';
- protected $internal_gapi_mappings = array(
- );
- public $callSetId;
- public $callSetName;
- public $genotype;
- public $genotypeLikelihood;
- public $info;
- public $phaseset;
-
-
- public function setCallSetId($callSetId)
- {
- $this->callSetId = $callSetId;
- }
- public function getCallSetId()
- {
- return $this->callSetId;
- }
- public function setCallSetName($callSetName)
- {
- $this->callSetName = $callSetName;
- }
- public function getCallSetName()
- {
- return $this->callSetName;
- }
- public function setGenotype($genotype)
- {
- $this->genotype = $genotype;
- }
- public function getGenotype()
- {
- return $this->genotype;
- }
- public function setGenotypeLikelihood($genotypeLikelihood)
- {
- $this->genotypeLikelihood = $genotypeLikelihood;
- }
- public function getGenotypeLikelihood()
- {
- return $this->genotypeLikelihood;
- }
- public function setInfo($info)
- {
- $this->info = $info;
- }
- public function getInfo()
- {
- return $this->info;
- }
- public function setPhaseset($phaseset)
- {
- $this->phaseset = $phaseset;
- }
- public function getPhaseset()
- {
- return $this->phaseset;
- }
-}
-
-class Postman_Google_Service_Genomics_GenomicsCallInfo extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Genomics_ImportReadGroupSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUris';
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $referenceSetId;
- public $sourceUris;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setReferenceSetId($referenceSetId)
- {
- $this->referenceSetId = $referenceSetId;
- }
- public function getReferenceSetId()
- {
- return $this->referenceSetId;
- }
- public function setSourceUris($sourceUris)
- {
- $this->sourceUris = $sourceUris;
- }
- public function getSourceUris()
- {
- return $this->sourceUris;
- }
-}
-
-class Postman_Google_Service_Genomics_ImportReadGroupSetsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_ImportVariantsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUris';
- protected $internal_gapi_mappings = array(
- );
- public $format;
- public $sourceUris;
-
-
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setSourceUris($sourceUris)
- {
- $this->sourceUris = $sourceUris;
- }
- public function getSourceUris()
- {
- return $this->sourceUris;
- }
-}
-
-class Postman_Google_Service_Genomics_ImportVariantsResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $jobId;
-
-
- public function setJobId($jobId)
- {
- $this->jobId = $jobId;
- }
- public function getJobId()
- {
- return $this->jobId;
- }
-}
-
-class Postman_Google_Service_Genomics_InterleavedFastqSource extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceUris';
- protected $internal_gapi_mappings = array(
- );
- protected $metadataType = 'Postman_Google_Service_Genomics_FastqMetadata';
- protected $metadataDataType = '';
- public $sourceUris;
-
-
- public function setMetadata(Postman_Google_Service_Genomics_FastqMetadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setSourceUris($sourceUris)
- {
- $this->sourceUris = $sourceUris;
- }
- public function getSourceUris()
- {
- return $this->sourceUris;
- }
-}
-
-class Postman_Google_Service_Genomics_Job extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $created;
- public $detailedStatus;
- public $errors;
- public $id;
- public $importedIds;
- public $projectNumber;
- protected $requestType = 'Postman_Google_Service_Genomics_JobRequest';
- protected $requestDataType = '';
- public $status;
- public $warnings;
-
-
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setDetailedStatus($detailedStatus)
- {
- $this->detailedStatus = $detailedStatus;
- }
- public function getDetailedStatus()
- {
- return $this->detailedStatus;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImportedIds($importedIds)
- {
- $this->importedIds = $importedIds;
- }
- public function getImportedIds()
- {
- return $this->importedIds;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setRequest(Postman_Google_Service_Genomics_JobRequest $request)
- {
- $this->request = $request;
- }
- public function getRequest()
- {
- return $this->request;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_Genomics_JobRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'source';
- protected $internal_gapi_mappings = array(
- );
- public $destination;
- public $source;
- public $type;
-
-
- public function setDestination($destination)
- {
- $this->destination = $destination;
- }
- public function getDestination()
- {
- return $this->destination;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Genomics_LinearAlignment extends Postman_Google_Collection
-{
- protected $collection_key = 'cigar';
- protected $internal_gapi_mappings = array(
- );
- protected $cigarType = 'Postman_Google_Service_Genomics_CigarUnit';
- protected $cigarDataType = 'array';
- public $mappingQuality;
- protected $positionType = 'Postman_Google_Service_Genomics_Position';
- protected $positionDataType = '';
-
-
- public function setCigar($cigar)
- {
- $this->cigar = $cigar;
- }
- public function getCigar()
- {
- return $this->cigar;
- }
- public function setMappingQuality($mappingQuality)
- {
- $this->mappingQuality = $mappingQuality;
- }
- public function getMappingQuality()
- {
- return $this->mappingQuality;
- }
- public function setPosition(Postman_Google_Service_Genomics_Position $position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
-}
-
-class Postman_Google_Service_Genomics_ListBasesResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- public $offset;
- public $sequence;
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setOffset($offset)
- {
- $this->offset = $offset;
- }
- public function getOffset()
- {
- return $this->offset;
- }
- public function setSequence($sequence)
- {
- $this->sequence = $sequence;
- }
- public function getSequence()
- {
- return $this->sequence;
- }
-}
-
-class Postman_Google_Service_Genomics_ListCoverageBucketsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'coverageBuckets';
- protected $internal_gapi_mappings = array(
- );
- public $bucketWidth;
- protected $coverageBucketsType = 'Postman_Google_Service_Genomics_CoverageBucket';
- protected $coverageBucketsDataType = 'array';
- public $nextPageToken;
-
-
- public function setBucketWidth($bucketWidth)
- {
- $this->bucketWidth = $bucketWidth;
- }
- public function getBucketWidth()
- {
- return $this->bucketWidth;
- }
- public function setCoverageBuckets($coverageBuckets)
- {
- $this->coverageBuckets = $coverageBuckets;
- }
- public function getCoverageBuckets()
- {
- return $this->coverageBuckets;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_ListDatasetsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'datasets';
- protected $internal_gapi_mappings = array(
- );
- protected $datasetsType = 'Postman_Google_Service_Genomics_Dataset';
- protected $datasetsDataType = 'array';
- public $nextPageToken;
-
-
- public function setDatasets($datasets)
- {
- $this->datasets = $datasets;
- }
- public function getDatasets()
- {
- return $this->datasets;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_MergeVariantsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'variants';
- protected $internal_gapi_mappings = array(
- );
- protected $variantsType = 'Postman_Google_Service_Genomics_Variant';
- protected $variantsDataType = 'array';
-
-
- public function setVariants($variants)
- {
- $this->variants = $variants;
- }
- public function getVariants()
- {
- return $this->variants;
- }
-}
-
-class Postman_Google_Service_Genomics_Metadata extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $id;
- public $info;
- public $key;
- public $number;
- public $type;
- public $value;
-
-
- 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 setInfo($info)
- {
- $this->info = $info;
- }
- public function getInfo()
- {
- return $this->info;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setNumber($number)
- {
- $this->number = $number;
- }
- public function getNumber()
- {
- return $this->number;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Genomics_MetadataInfo extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Genomics_PairedFastqSource extends Postman_Google_Collection
-{
- protected $collection_key = 'secondSourceUris';
- protected $internal_gapi_mappings = array(
- );
- public $firstSourceUris;
- protected $metadataType = 'Postman_Google_Service_Genomics_FastqMetadata';
- protected $metadataDataType = '';
- public $secondSourceUris;
-
-
- public function setFirstSourceUris($firstSourceUris)
- {
- $this->firstSourceUris = $firstSourceUris;
- }
- public function getFirstSourceUris()
- {
- return $this->firstSourceUris;
- }
- public function setMetadata(Postman_Google_Service_Genomics_FastqMetadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setSecondSourceUris($secondSourceUris)
- {
- $this->secondSourceUris = $secondSourceUris;
- }
- public function getSecondSourceUris()
- {
- return $this->secondSourceUris;
- }
-}
-
-class Postman_Google_Service_Genomics_Position extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $position;
- public $referenceName;
- public $reverseStrand;
-
-
- public function setPosition($position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
- public function setReferenceName($referenceName)
- {
- $this->referenceName = $referenceName;
- }
- public function getReferenceName()
- {
- return $this->referenceName;
- }
- public function setReverseStrand($reverseStrand)
- {
- $this->reverseStrand = $reverseStrand;
- }
- public function getReverseStrand()
- {
- return $this->reverseStrand;
- }
-}
-
-class Postman_Google_Service_Genomics_Range extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $end;
- public $referenceName;
- public $start;
-
-
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setReferenceName($referenceName)
- {
- $this->referenceName = $referenceName;
- }
- public function getReferenceName()
- {
- return $this->referenceName;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
-}
-
-class Postman_Google_Service_Genomics_Read extends Postman_Google_Collection
-{
- protected $collection_key = 'alignedQuality';
- protected $internal_gapi_mappings = array(
- );
- public $alignedQuality;
- public $alignedSequence;
- protected $alignmentType = 'Postman_Google_Service_Genomics_LinearAlignment';
- protected $alignmentDataType = '';
- public $duplicateFragment;
- public $failedVendorQualityChecks;
- public $fragmentLength;
- public $fragmentName;
- public $id;
- public $info;
- protected $nextMatePositionType = 'Postman_Google_Service_Genomics_Position';
- protected $nextMatePositionDataType = '';
- public $numberReads;
- public $properPlacement;
- public $readGroupId;
- public $readGroupSetId;
- public $readNumber;
- public $secondaryAlignment;
- public $supplementaryAlignment;
-
-
- public function setAlignedQuality($alignedQuality)
- {
- $this->alignedQuality = $alignedQuality;
- }
- public function getAlignedQuality()
- {
- return $this->alignedQuality;
- }
- public function setAlignedSequence($alignedSequence)
- {
- $this->alignedSequence = $alignedSequence;
- }
- public function getAlignedSequence()
- {
- return $this->alignedSequence;
- }
- public function setAlignment(Postman_Google_Service_Genomics_LinearAlignment $alignment)
- {
- $this->alignment = $alignment;
- }
- public function getAlignment()
- {
- return $this->alignment;
- }
- public function setDuplicateFragment($duplicateFragment)
- {
- $this->duplicateFragment = $duplicateFragment;
- }
- public function getDuplicateFragment()
- {
- return $this->duplicateFragment;
- }
- public function setFailedVendorQualityChecks($failedVendorQualityChecks)
- {
- $this->failedVendorQualityChecks = $failedVendorQualityChecks;
- }
- public function getFailedVendorQualityChecks()
- {
- return $this->failedVendorQualityChecks;
- }
- public function setFragmentLength($fragmentLength)
- {
- $this->fragmentLength = $fragmentLength;
- }
- public function getFragmentLength()
- {
- return $this->fragmentLength;
- }
- public function setFragmentName($fragmentName)
- {
- $this->fragmentName = $fragmentName;
- }
- public function getFragmentName()
- {
- return $this->fragmentName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInfo($info)
- {
- $this->info = $info;
- }
- public function getInfo()
- {
- return $this->info;
- }
- public function setNextMatePosition(Postman_Google_Service_Genomics_Position $nextMatePosition)
- {
- $this->nextMatePosition = $nextMatePosition;
- }
- public function getNextMatePosition()
- {
- return $this->nextMatePosition;
- }
- public function setNumberReads($numberReads)
- {
- $this->numberReads = $numberReads;
- }
- public function getNumberReads()
- {
- return $this->numberReads;
- }
- public function setProperPlacement($properPlacement)
- {
- $this->properPlacement = $properPlacement;
- }
- public function getProperPlacement()
- {
- return $this->properPlacement;
- }
- public function setReadGroupId($readGroupId)
- {
- $this->readGroupId = $readGroupId;
- }
- public function getReadGroupId()
- {
- return $this->readGroupId;
- }
- public function setReadGroupSetId($readGroupSetId)
- {
- $this->readGroupSetId = $readGroupSetId;
- }
- public function getReadGroupSetId()
- {
- return $this->readGroupSetId;
- }
- public function setReadNumber($readNumber)
- {
- $this->readNumber = $readNumber;
- }
- public function getReadNumber()
- {
- return $this->readNumber;
- }
- public function setSecondaryAlignment($secondaryAlignment)
- {
- $this->secondaryAlignment = $secondaryAlignment;
- }
- public function getSecondaryAlignment()
- {
- return $this->secondaryAlignment;
- }
- public function setSupplementaryAlignment($supplementaryAlignment)
- {
- $this->supplementaryAlignment = $supplementaryAlignment;
- }
- public function getSupplementaryAlignment()
- {
- return $this->supplementaryAlignment;
- }
-}
-
-class Postman_Google_Service_Genomics_ReadGroup extends Postman_Google_Collection
-{
- protected $collection_key = 'programs';
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $description;
- protected $experimentType = 'Postman_Google_Service_Genomics_ReadGroupExperiment';
- protected $experimentDataType = '';
- public $id;
- public $info;
- public $name;
- public $predictedInsertSize;
- protected $programsType = 'Postman_Google_Service_Genomics_ReadGroupProgram';
- protected $programsDataType = 'array';
- public $referenceSetId;
- public $sampleId;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setExperiment(Postman_Google_Service_Genomics_ReadGroupExperiment $experiment)
- {
- $this->experiment = $experiment;
- }
- public function getExperiment()
- {
- return $this->experiment;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInfo($info)
- {
- $this->info = $info;
- }
- public function getInfo()
- {
- return $this->info;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPredictedInsertSize($predictedInsertSize)
- {
- $this->predictedInsertSize = $predictedInsertSize;
- }
- public function getPredictedInsertSize()
- {
- return $this->predictedInsertSize;
- }
- public function setPrograms($programs)
- {
- $this->programs = $programs;
- }
- public function getPrograms()
- {
- return $this->programs;
- }
- public function setReferenceSetId($referenceSetId)
- {
- $this->referenceSetId = $referenceSetId;
- }
- public function getReferenceSetId()
- {
- return $this->referenceSetId;
- }
- public function setSampleId($sampleId)
- {
- $this->sampleId = $sampleId;
- }
- public function getSampleId()
- {
- return $this->sampleId;
- }
-}
-
-class Postman_Google_Service_Genomics_ReadGroupExperiment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $instrumentModel;
- public $libraryId;
- public $platformUnit;
- public $sequencingCenter;
-
-
- public function setInstrumentModel($instrumentModel)
- {
- $this->instrumentModel = $instrumentModel;
- }
- public function getInstrumentModel()
- {
- return $this->instrumentModel;
- }
- public function setLibraryId($libraryId)
- {
- $this->libraryId = $libraryId;
- }
- public function getLibraryId()
- {
- return $this->libraryId;
- }
- public function setPlatformUnit($platformUnit)
- {
- $this->platformUnit = $platformUnit;
- }
- public function getPlatformUnit()
- {
- return $this->platformUnit;
- }
- public function setSequencingCenter($sequencingCenter)
- {
- $this->sequencingCenter = $sequencingCenter;
- }
- public function getSequencingCenter()
- {
- return $this->sequencingCenter;
- }
-}
-
-class Postman_Google_Service_Genomics_ReadGroupInfo extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Genomics_ReadGroupProgram extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $commandLine;
- public $id;
- public $name;
- public $prevProgramId;
- public $version;
-
-
- public function setCommandLine($commandLine)
- {
- $this->commandLine = $commandLine;
- }
- public function getCommandLine()
- {
- return $this->commandLine;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPrevProgramId($prevProgramId)
- {
- $this->prevProgramId = $prevProgramId;
- }
- public function getPrevProgramId()
- {
- return $this->prevProgramId;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Genomics_ReadGroupSet extends Postman_Google_Collection
-{
- protected $collection_key = 'readGroups';
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $filename;
- public $id;
- public $name;
- protected $readGroupsType = 'Postman_Google_Service_Genomics_ReadGroup';
- protected $readGroupsDataType = 'array';
- public $referenceSetId;
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setFilename($filename)
- {
- $this->filename = $filename;
- }
- public function getFilename()
- {
- return $this->filename;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setReadGroups($readGroups)
- {
- $this->readGroups = $readGroups;
- }
- public function getReadGroups()
- {
- return $this->readGroups;
- }
- public function setReferenceSetId($referenceSetId)
- {
- $this->referenceSetId = $referenceSetId;
- }
- public function getReferenceSetId()
- {
- return $this->referenceSetId;
- }
-}
-
-class Postman_Google_Service_Genomics_ReadInfo extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Genomics_Reference extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceAccessions';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $length;
- public $md5checksum;
- public $name;
- public $ncbiTaxonId;
- public $sourceAccessions;
- public $sourceURI;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLength($length)
- {
- $this->length = $length;
- }
- public function getLength()
- {
- return $this->length;
- }
- public function setMd5checksum($md5checksum)
- {
- $this->md5checksum = $md5checksum;
- }
- public function getMd5checksum()
- {
- return $this->md5checksum;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNcbiTaxonId($ncbiTaxonId)
- {
- $this->ncbiTaxonId = $ncbiTaxonId;
- }
- public function getNcbiTaxonId()
- {
- return $this->ncbiTaxonId;
- }
- public function setSourceAccessions($sourceAccessions)
- {
- $this->sourceAccessions = $sourceAccessions;
- }
- public function getSourceAccessions()
- {
- return $this->sourceAccessions;
- }
- public function setSourceURI($sourceURI)
- {
- $this->sourceURI = $sourceURI;
- }
- public function getSourceURI()
- {
- return $this->sourceURI;
- }
-}
-
-class Postman_Google_Service_Genomics_ReferenceBound extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $referenceName;
- public $upperBound;
-
-
- public function setReferenceName($referenceName)
- {
- $this->referenceName = $referenceName;
- }
- public function getReferenceName()
- {
- return $this->referenceName;
- }
- public function setUpperBound($upperBound)
- {
- $this->upperBound = $upperBound;
- }
- public function getUpperBound()
- {
- return $this->upperBound;
- }
-}
-
-class Postman_Google_Service_Genomics_ReferenceSet extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceAccessions';
- protected $internal_gapi_mappings = array(
- );
- public $assemblyId;
- public $description;
- public $id;
- public $md5checksum;
- public $ncbiTaxonId;
- public $referenceIds;
- public $sourceAccessions;
- public $sourceURI;
-
-
- public function setAssemblyId($assemblyId)
- {
- $this->assemblyId = $assemblyId;
- }
- public function getAssemblyId()
- {
- return $this->assemblyId;
- }
- 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 setMd5checksum($md5checksum)
- {
- $this->md5checksum = $md5checksum;
- }
- public function getMd5checksum()
- {
- return $this->md5checksum;
- }
- public function setNcbiTaxonId($ncbiTaxonId)
- {
- $this->ncbiTaxonId = $ncbiTaxonId;
- }
- public function getNcbiTaxonId()
- {
- return $this->ncbiTaxonId;
- }
- public function setReferenceIds($referenceIds)
- {
- $this->referenceIds = $referenceIds;
- }
- public function getReferenceIds()
- {
- return $this->referenceIds;
- }
- public function setSourceAccessions($sourceAccessions)
- {
- $this->sourceAccessions = $sourceAccessions;
- }
- public function getSourceAccessions()
- {
- return $this->sourceAccessions;
- }
- public function setSourceURI($sourceURI)
- {
- $this->sourceURI = $sourceURI;
- }
- public function getSourceURI()
- {
- return $this->sourceURI;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchCallSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'variantSetIds';
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $pageSize;
- public $pageToken;
- public $variantSetIds;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setVariantSetIds($variantSetIds)
- {
- $this->variantSetIds = $variantSetIds;
- }
- public function getVariantSetIds()
- {
- return $this->variantSetIds;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchCallSetsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'callSets';
- protected $internal_gapi_mappings = array(
- );
- protected $callSetsType = 'Postman_Google_Service_Genomics_CallSet';
- protected $callSetsDataType = 'array';
- public $nextPageToken;
-
-
- public function setCallSets($callSets)
- {
- $this->callSets = $callSets;
- }
- public function getCallSets()
- {
- return $this->callSets;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchJobsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'status';
- protected $internal_gapi_mappings = array(
- );
- public $createdAfter;
- public $createdBefore;
- public $pageSize;
- public $pageToken;
- public $projectNumber;
- public $status;
-
-
- public function setCreatedAfter($createdAfter)
- {
- $this->createdAfter = $createdAfter;
- }
- public function getCreatedAfter()
- {
- return $this->createdAfter;
- }
- public function setCreatedBefore($createdBefore)
- {
- $this->createdBefore = $createdBefore;
- }
- public function getCreatedBefore()
- {
- return $this->createdBefore;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchJobsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'jobs';
- protected $internal_gapi_mappings = array(
- );
- protected $jobsType = 'Postman_Google_Service_Genomics_Job';
- protected $jobsDataType = 'array';
- public $nextPageToken;
-
-
- public function setJobs($jobs)
- {
- $this->jobs = $jobs;
- }
- public function getJobs()
- {
- return $this->jobs;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReadGroupSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'datasetIds';
- protected $internal_gapi_mappings = array(
- );
- public $datasetIds;
- public $name;
- public $pageSize;
- public $pageToken;
-
-
- public function setDatasetIds($datasetIds)
- {
- $this->datasetIds = $datasetIds;
- }
- public function getDatasetIds()
- {
- return $this->datasetIds;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReadGroupSetsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'readGroupSets';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $readGroupSetsType = 'Postman_Google_Service_Genomics_ReadGroupSet';
- protected $readGroupSetsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setReadGroupSets($readGroupSets)
- {
- $this->readGroupSets = $readGroupSets;
- }
- public function getReadGroupSets()
- {
- return $this->readGroupSets;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReadsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'readGroupSetIds';
- protected $internal_gapi_mappings = array(
- );
- public $end;
- public $pageSize;
- public $pageToken;
- public $readGroupIds;
- public $readGroupSetIds;
- public $referenceName;
- public $start;
-
-
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setReadGroupIds($readGroupIds)
- {
- $this->readGroupIds = $readGroupIds;
- }
- public function getReadGroupIds()
- {
- return $this->readGroupIds;
- }
- public function setReadGroupSetIds($readGroupSetIds)
- {
- $this->readGroupSetIds = $readGroupSetIds;
- }
- public function getReadGroupSetIds()
- {
- return $this->readGroupSetIds;
- }
- public function setReferenceName($referenceName)
- {
- $this->referenceName = $referenceName;
- }
- public function getReferenceName()
- {
- return $this->referenceName;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReadsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'alignments';
- protected $internal_gapi_mappings = array(
- );
- protected $alignmentsType = 'Postman_Google_Service_Genomics_Read';
- protected $alignmentsDataType = 'array';
- public $nextPageToken;
-
-
- public function setAlignments($alignments)
- {
- $this->alignments = $alignments;
- }
- public function getAlignments()
- {
- return $this->alignments;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReferenceSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'md5checksums';
- protected $internal_gapi_mappings = array(
- );
- public $accessions;
- public $md5checksums;
- public $pageSize;
- public $pageToken;
-
-
- public function setAccessions($accessions)
- {
- $this->accessions = $accessions;
- }
- public function getAccessions()
- {
- return $this->accessions;
- }
- public function setMd5checksums($md5checksums)
- {
- $this->md5checksums = $md5checksums;
- }
- public function getMd5checksums()
- {
- return $this->md5checksums;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReferenceSetsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'referenceSets';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $referenceSetsType = 'Postman_Google_Service_Genomics_ReferenceSet';
- protected $referenceSetsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setReferenceSets($referenceSets)
- {
- $this->referenceSets = $referenceSets;
- }
- public function getReferenceSets()
- {
- return $this->referenceSets;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReferencesRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'md5checksums';
- protected $internal_gapi_mappings = array(
- );
- public $accessions;
- public $md5checksums;
- public $pageSize;
- public $pageToken;
- public $referenceSetId;
-
-
- public function setAccessions($accessions)
- {
- $this->accessions = $accessions;
- }
- public function getAccessions()
- {
- return $this->accessions;
- }
- public function setMd5checksums($md5checksums)
- {
- $this->md5checksums = $md5checksums;
- }
- public function getMd5checksums()
- {
- return $this->md5checksums;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setReferenceSetId($referenceSetId)
- {
- $this->referenceSetId = $referenceSetId;
- }
- public function getReferenceSetId()
- {
- return $this->referenceSetId;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchReferencesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'references';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $referencesType = 'Postman_Google_Service_Genomics_Reference';
- protected $referencesDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setReferences($references)
- {
- $this->references = $references;
- }
- public function getReferences()
- {
- return $this->references;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchVariantSetsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'datasetIds';
- protected $internal_gapi_mappings = array(
- );
- public $datasetIds;
- public $pageSize;
- public $pageToken;
-
-
- public function setDatasetIds($datasetIds)
- {
- $this->datasetIds = $datasetIds;
- }
- public function getDatasetIds()
- {
- return $this->datasetIds;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchVariantSetsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'variantSets';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $variantSetsType = 'Postman_Google_Service_Genomics_VariantSet';
- protected $variantSetsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setVariantSets($variantSets)
- {
- $this->variantSets = $variantSets;
- }
- public function getVariantSets()
- {
- return $this->variantSets;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchVariantsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'variantSetIds';
- protected $internal_gapi_mappings = array(
- );
- public $callSetIds;
- public $end;
- public $maxCalls;
- public $pageSize;
- public $pageToken;
- public $referenceName;
- public $start;
- public $variantName;
- public $variantSetIds;
-
-
- public function setCallSetIds($callSetIds)
- {
- $this->callSetIds = $callSetIds;
- }
- public function getCallSetIds()
- {
- return $this->callSetIds;
- }
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setMaxCalls($maxCalls)
- {
- $this->maxCalls = $maxCalls;
- }
- public function getMaxCalls()
- {
- return $this->maxCalls;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPageToken($pageToken)
- {
- $this->pageToken = $pageToken;
- }
- public function getPageToken()
- {
- return $this->pageToken;
- }
- public function setReferenceName($referenceName)
- {
- $this->referenceName = $referenceName;
- }
- public function getReferenceName()
- {
- return $this->referenceName;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
- public function setVariantName($variantName)
- {
- $this->variantName = $variantName;
- }
- public function getVariantName()
- {
- return $this->variantName;
- }
- public function setVariantSetIds($variantSetIds)
- {
- $this->variantSetIds = $variantSetIds;
- }
- public function getVariantSetIds()
- {
- return $this->variantSetIds;
- }
-}
-
-class Postman_Google_Service_Genomics_SearchVariantsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'variants';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $variantsType = 'Postman_Google_Service_Genomics_Variant';
- protected $variantsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setVariants($variants)
- {
- $this->variants = $variants;
- }
- public function getVariants()
- {
- return $this->variants;
- }
-}
-
-class Postman_Google_Service_Genomics_Variant extends Postman_Google_Collection
-{
- protected $collection_key = 'names';
- protected $internal_gapi_mappings = array(
- );
- public $alternateBases;
- protected $callsType = 'Postman_Google_Service_Genomics_GenomicsCall';
- protected $callsDataType = 'array';
- public $created;
- public $end;
- public $filter;
- public $id;
- public $info;
- public $names;
- public $quality;
- public $referenceBases;
- public $referenceName;
- public $start;
- public $variantSetId;
-
-
- public function setAlternateBases($alternateBases)
- {
- $this->alternateBases = $alternateBases;
- }
- public function getAlternateBases()
- {
- return $this->alternateBases;
- }
- public function setCalls($calls)
- {
- $this->calls = $calls;
- }
- public function getCalls()
- {
- return $this->calls;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setFilter($filter)
- {
- $this->filter = $filter;
- }
- public function getFilter()
- {
- return $this->filter;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInfo($info)
- {
- $this->info = $info;
- }
- public function getInfo()
- {
- return $this->info;
- }
- public function setNames($names)
- {
- $this->names = $names;
- }
- public function getNames()
- {
- return $this->names;
- }
- public function setQuality($quality)
- {
- $this->quality = $quality;
- }
- public function getQuality()
- {
- return $this->quality;
- }
- public function setReferenceBases($referenceBases)
- {
- $this->referenceBases = $referenceBases;
- }
- public function getReferenceBases()
- {
- return $this->referenceBases;
- }
- public function setReferenceName($referenceName)
- {
- $this->referenceName = $referenceName;
- }
- public function getReferenceName()
- {
- return $this->referenceName;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
- public function setVariantSetId($variantSetId)
- {
- $this->variantSetId = $variantSetId;
- }
- public function getVariantSetId()
- {
- return $this->variantSetId;
- }
-}
-
-class Postman_Google_Service_Genomics_VariantInfo extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Genomics_VariantSet extends Postman_Google_Collection
-{
- protected $collection_key = 'referenceBounds';
- protected $internal_gapi_mappings = array(
- );
- public $datasetId;
- public $id;
- protected $metadataType = 'Postman_Google_Service_Genomics_Metadata';
- protected $metadataDataType = 'array';
- protected $referenceBoundsType = 'Postman_Google_Service_Genomics_ReferenceBound';
- protected $referenceBoundsDataType = 'array';
-
-
- public function setDatasetId($datasetId)
- {
- $this->datasetId = $datasetId;
- }
- public function getDatasetId()
- {
- return $this->datasetId;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setMetadata($metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setReferenceBounds($referenceBounds)
- {
- $this->referenceBounds = $referenceBounds;
- }
- public function getReferenceBounds()
- {
- return $this->referenceBounds;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Gmail.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Gmail.php
deleted file mode 100644
index 6008660..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Gmail.php
+++ /dev/null
@@ -1,1924 +0,0 @@
-
- * The Gmail REST API.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Gmail extends Postman_Google_Service -{ - /** View and manage your mail. */ - const MAIL_GOOGLE_COM = - "https://mail.google.com"; - /** Manage drafts and send emails. */ - const GMAIL_COMPOSE = - "https://www.googleapis.com/auth/gmail.compose"; - /** View and modify but not delete your email. */ - const GMAIL_MODIFY = - "https://www.googleapis.com/auth/gmail.modify"; - /** View your emails messages and settings. */ - const GMAIL_READONLY = - "https://www.googleapis.com/auth/gmail.readonly"; - - public $users; - public $users_drafts; - public $users_history; - public $users_labels; - public $users_messages; - public $users_messages_attachments; - public $users_threads; - - - /** - * Constructs the internal representation of the Gmail service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'gmail/v1/users/'; - $this->version = 'v1'; - $this->serviceName = 'gmail'; - - $this->users = new Postman_Google_Service_Gmail_Users_Resource( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'getProfile' => array( - 'path' => '{userId}/profile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_drafts = new Postman_Google_Service_Gmail_UsersDrafts_Resource( - $this, - $this->serviceName, - 'drafts', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/drafts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/drafts/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/drafts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/drafts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'send' => array( - 'path' => '{userId}/drafts/send', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/drafts/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_history = new Postman_Google_Service_Gmail_UsersHistory_Resource( - $this, - $this->serviceName, - 'history', - array( - 'methods' => array( - 'list' => array( - 'path' => '{userId}/history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'labelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startHistoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_labels = new Postman_Google_Service_Gmail_UsersLabels_Resource( - $this, - $this->serviceName, - 'labels', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/labels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/labels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_messages = new Postman_Google_Service_Gmail_UsersMessages_Resource( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/messages/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/messages/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metadataHeaders' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'import' => array( - 'path' => '{userId}/messages/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'internalDateSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => '{userId}/messages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'internalDateSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/messages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeSpamTrash' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'modify' => array( - 'path' => '{userId}/messages/{id}/modify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'send' => array( - 'path' => '{userId}/messages/send', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'trash' => array( - 'path' => '{userId}/messages/{id}/trash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'untrash' => array( - 'path' => '{userId}/messages/{id}/untrash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_messages_attachments = new Postman_Google_Service_Gmail_UsersMessagesAttachments_Resource( - $this, - $this->serviceName, - 'attachments', - array( - 'methods' => array( - 'get' => array( - 'path' => '{userId}/messages/{messageId}/attachments/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'messageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_threads = new Postman_Google_Service_Gmail_UsersThreads_Resource( - $this, - $this->serviceName, - 'threads', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/threads/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/threads/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metadataHeaders' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/threads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeSpamTrash' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'modify' => array( - 'path' => '{userId}/threads/{id}/modify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'trash' => array( - 'path' => '{userId}/threads/{id}/trash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'untrash' => array( - 'path' => '{userId}/threads/{id}/untrash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "users" collection of methods. - * Typical usage is: - *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $users = $gmailService->users;
- *
- */
-class Postman_Google_Service_Gmail_Users_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the current user's Gmail profile. (users.getProfile)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Profile
- */
- public function getProfile($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('getProfile', array($params), "Postman_Google_Service_Gmail_Profile");
- }
-}
-
-/**
- * The "drafts" collection of methods.
- * Typical usage is:
- *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $drafts = $gmailService->drafts;
- *
- */
-class Postman_Google_Service_Gmail_UsersDrafts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a new draft with the DRAFT label. (drafts.create)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param Postman_Google_Draft $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Draft
- */
- public function create($userId, Postman_Google_Service_Gmail_Draft $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Gmail_Draft");
- }
-
- /**
- * Immediately and permanently deletes the specified draft. Does not simply
- * trash it. (drafts.delete)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the draft to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the specified draft. (drafts.get)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the draft to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string format The format to return the draft in.
- * @return Postman_Google_Service_Gmail_Draft
- */
- public function get($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Gmail_Draft");
- }
-
- /**
- * Lists the drafts in the user's mailbox. (drafts.listUsersDrafts)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Page token to retrieve a specific page of results
- * in the list.
- * @opt_param string maxResults Maximum number of drafts to return.
- * @return Postman_Google_Service_Gmail_ListDraftsResponse
- */
- public function listUsersDrafts($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Gmail_ListDraftsResponse");
- }
-
- /**
- * Sends the specified, existing draft to the recipients in the To, Cc, and Bcc
- * headers. (drafts.send)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param Postman_Google_Draft $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function send($userId, Postman_Google_Service_Gmail_Draft $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('send', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Replaces a draft's content. (drafts.update)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the draft to update.
- * @param Postman_Google_Draft $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Draft
- */
- public function update($userId, $id, Postman_Google_Service_Gmail_Draft $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Gmail_Draft");
- }
-}
-/**
- * The "history" collection of methods.
- * Typical usage is:
- *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $history = $gmailService->history;
- *
- */
-class Postman_Google_Service_Gmail_UsersHistory_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists the history of all changes to the given mailbox. History results are
- * returned in chronological order (increasing historyId).
- * (history.listUsersHistory)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Page token to retrieve a specific page of results
- * in the list.
- * @opt_param string maxResults The maximum number of history records to return.
- * @opt_param string labelId Only return messages with a label matching the ID.
- * @opt_param string startHistoryId Required. Returns history records after the
- * specified startHistoryId. The supplied startHistoryId should be obtained from
- * the historyId of a message, thread, or previous list response. History IDs
- * increase chronologically but are not contiguous with random gaps in between
- * valid IDs. Supplying an invalid or out of date startHistoryId typically
- * returns an HTTP 404 error code. A historyId is typically valid for at least a
- * week, but in some circumstances may be valid for only a few hours. If you
- * receive an HTTP 404 error response, your application should perform a full
- * sync. If you receive no nextPageToken in the response, there are no updates
- * to retrieve and you can store the returned historyId for a future request.
- * @return Postman_Google_Service_Gmail_ListHistoryResponse
- */
- public function listUsersHistory($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Gmail_ListHistoryResponse");
- }
-}
-/**
- * The "labels" collection of methods.
- * Typical usage is:
- *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $labels = $gmailService->labels;
- *
- */
-class Postman_Google_Service_Gmail_UsersLabels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a new label. (labels.create)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param Postman_Google_Label $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Label
- */
- public function create($userId, Postman_Google_Service_Gmail_Label $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Gmail_Label");
- }
-
- /**
- * Immediately and permanently deletes the specified label and removes it from
- * any messages and threads that it is applied to. (labels.delete)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the label to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the specified label. (labels.get)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the label to retrieve.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Label
- */
- public function get($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Gmail_Label");
- }
-
- /**
- * Lists all labels in the user's mailbox. (labels.listUsersLabels)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_ListLabelsResponse
- */
- public function listUsersLabels($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Gmail_ListLabelsResponse");
- }
-
- /**
- * Updates the specified label. This method supports patch semantics.
- * (labels.patch)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the label to update.
- * @param Postman_Google_Label $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Label
- */
- public function patch($userId, $id, Postman_Google_Service_Gmail_Label $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Gmail_Label");
- }
-
- /**
- * Updates the specified label. (labels.update)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the label to update.
- * @param Postman_Google_Label $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Label
- */
- public function update($userId, $id, Postman_Google_Service_Gmail_Label $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Gmail_Label");
- }
-}
-/**
- * The "messages" collection of methods.
- * Typical usage is:
- *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $messages = $gmailService->messages;
- *
- */
-class Postman_Google_Service_Gmail_UsersMessages_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Immediately and permanently deletes the specified message. This operation
- * cannot be undone. Prefer messages.trash instead. (messages.delete)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the message to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the specified message. (messages.get)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the message to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string metadataHeaders When given and format is METADATA, only
- * include headers specified.
- * @opt_param string format The format to return the message in.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function get($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Imports a message into only this user's mailbox, with standard email delivery
- * scanning and classification similar to receiving via SMTP. Does not send a
- * message. (messages.import)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param Postman_Google_Message $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string internalDateSource Source for Gmail's internal date of the
- * message.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function import($userId, Postman_Google_Service_Gmail_Message $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('import', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Directly inserts a message into only this user's mailbox similar to IMAP
- * APPEND, bypassing most scanning and classification. Does not send a message.
- * (messages.insert)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param Postman_Google_Message $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string internalDateSource Source for Gmail's internal date of the
- * message.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function insert($userId, Postman_Google_Service_Gmail_Message $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Lists the messages in the user's mailbox. (messages.listUsersMessages)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxResults Maximum number of messages to return.
- * @opt_param string q Only return messages matching the specified query.
- * Supports the same query format as the Gmail search box. For example,
- * "from:someuser@example.com rfc822msgid: is:unread".
- * @opt_param string pageToken Page token to retrieve a specific page of results
- * in the list.
- * @opt_param bool includeSpamTrash Include messages from SPAM and TRASH in the
- * results.
- * @opt_param string labelIds Only return messages with labels that match all of
- * the specified label IDs.
- * @return Postman_Google_Service_Gmail_ListMessagesResponse
- */
- public function listUsersMessages($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Gmail_ListMessagesResponse");
- }
-
- /**
- * Modifies the labels on the specified message. (messages.modify)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the message to modify.
- * @param Postman_Google_ModifyMessageRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function modify($userId, $id, Postman_Google_Service_Gmail_ModifyMessageRequest $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('modify', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Sends the specified message to the recipients in the To, Cc, and Bcc headers.
- * (messages.send)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param Postman_Google_Message $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function send($userId, Postman_Google_Service_Gmail_Message $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('send', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Moves the specified message to the trash. (messages.trash)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the message to Trash.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function trash($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('trash', array($params), "Postman_Google_Service_Gmail_Message");
- }
-
- /**
- * Removes the specified message from the trash. (messages.untrash)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the message to remove from Trash.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Message
- */
- public function untrash($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('untrash', array($params), "Postman_Google_Service_Gmail_Message");
- }
-}
-
-/**
- * The "attachments" collection of methods.
- * Typical usage is:
- *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $attachments = $gmailService->attachments;
- *
- */
-class Postman_Google_Service_Gmail_UsersMessagesAttachments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the specified message attachment. (attachments.get)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $messageId The ID of the message containing the attachment.
- * @param string $id The ID of the attachment.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_MessagePartBody
- */
- public function get($userId, $messageId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'messageId' => $messageId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Gmail_MessagePartBody");
- }
-}
-/**
- * The "threads" collection of methods.
- * Typical usage is:
- *
- * $gmailService = new Postman_Google_Service_Gmail(...);
- * $threads = $gmailService->threads;
- *
- */
-class Postman_Google_Service_Gmail_UsersThreads_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Immediately and permanently deletes the specified thread. This operation
- * cannot be undone. Prefer threads.trash instead. (threads.delete)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id ID of the Thread to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the specified thread. (threads.get)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the thread to retrieve.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string metadataHeaders When given and format is METADATA, only
- * include headers specified.
- * @opt_param string format The format to return the messages in.
- * @return Postman_Google_Service_Gmail_Thread
- */
- public function get($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Gmail_Thread");
- }
-
- /**
- * Lists the threads in the user's mailbox. (threads.listUsersThreads)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxResults Maximum number of threads to return.
- * @opt_param string q Only return threads matching the specified query.
- * Supports the same query format as the Gmail search box. For example,
- * "from:someuser@example.com rfc822msgid: is:unread".
- * @opt_param string pageToken Page token to retrieve a specific page of results
- * in the list.
- * @opt_param bool includeSpamTrash Include threads from SPAM and TRASH in the
- * results.
- * @opt_param string labelIds Only return threads with labels that match all of
- * the specified label IDs.
- * @return Postman_Google_Service_Gmail_ListThreadsResponse
- */
- public function listUsersThreads($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Gmail_ListThreadsResponse");
- }
-
- /**
- * Modifies the labels applied to the thread. This applies to all messages in
- * the thread. (threads.modify)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the thread to modify.
- * @param Postman_Google_ModifyThreadRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Thread
- */
- public function modify($userId, $id, Postman_Google_Service_Gmail_ModifyThreadRequest $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('modify', array($params), "Postman_Google_Service_Gmail_Thread");
- }
-
- /**
- * Moves the specified thread to the trash. (threads.trash)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the thread to Trash.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Thread
- */
- public function trash($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('trash', array($params), "Postman_Google_Service_Gmail_Thread");
- }
-
- /**
- * Removes the specified thread from the trash. (threads.untrash)
- *
- * @param string $userId The user's email address. The special value me can be
- * used to indicate the authenticated user.
- * @param string $id The ID of the thread to remove from Trash.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Gmail_Thread
- */
- public function untrash($userId, $id, $optParams = array())
- {
- $params = array('userId' => $userId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('untrash', array($params), "Postman_Google_Service_Gmail_Thread");
- }
-}
-
-
-
-
-class Postman_Google_Service_Gmail_Draft extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $messageType = 'Postman_Google_Service_Gmail_Message';
- protected $messageDataType = '';
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setMessage(Postman_Google_Service_Gmail_Message $message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Gmail_History extends Postman_Google_Collection
-{
- protected $collection_key = 'messages';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $messagesType = 'Postman_Google_Service_Gmail_Message';
- protected $messagesDataType = 'array';
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setMessages($messages)
- {
- $this->messages = $messages;
- }
- public function getMessages()
- {
- return $this->messages;
- }
-}
-
-class Postman_Google_Service_Gmail_Label extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $labelListVisibility;
- public $messageListVisibility;
- public $messagesTotal;
- public $messagesUnread;
- public $name;
- public $threadsTotal;
- public $threadsUnread;
- public $type;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLabelListVisibility($labelListVisibility)
- {
- $this->labelListVisibility = $labelListVisibility;
- }
- public function getLabelListVisibility()
- {
- return $this->labelListVisibility;
- }
- public function setMessageListVisibility($messageListVisibility)
- {
- $this->messageListVisibility = $messageListVisibility;
- }
- public function getMessageListVisibility()
- {
- return $this->messageListVisibility;
- }
- public function setMessagesTotal($messagesTotal)
- {
- $this->messagesTotal = $messagesTotal;
- }
- public function getMessagesTotal()
- {
- return $this->messagesTotal;
- }
- public function setMessagesUnread($messagesUnread)
- {
- $this->messagesUnread = $messagesUnread;
- }
- public function getMessagesUnread()
- {
- return $this->messagesUnread;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setThreadsTotal($threadsTotal)
- {
- $this->threadsTotal = $threadsTotal;
- }
- public function getThreadsTotal()
- {
- return $this->threadsTotal;
- }
- public function setThreadsUnread($threadsUnread)
- {
- $this->threadsUnread = $threadsUnread;
- }
- public function getThreadsUnread()
- {
- return $this->threadsUnread;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Gmail_ListDraftsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'drafts';
- protected $internal_gapi_mappings = array(
- );
- protected $draftsType = 'Postman_Google_Service_Gmail_Draft';
- protected $draftsDataType = 'array';
- public $nextPageToken;
- public $resultSizeEstimate;
-
-
- public function setDrafts($drafts)
- {
- $this->drafts = $drafts;
- }
- public function getDrafts()
- {
- return $this->drafts;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setResultSizeEstimate($resultSizeEstimate)
- {
- $this->resultSizeEstimate = $resultSizeEstimate;
- }
- public function getResultSizeEstimate()
- {
- return $this->resultSizeEstimate;
- }
-}
-
-class Postman_Google_Service_Gmail_ListHistoryResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'history';
- protected $internal_gapi_mappings = array(
- );
- protected $historyType = 'Postman_Google_Service_Gmail_History';
- protected $historyDataType = 'array';
- public $historyId;
- public $nextPageToken;
-
-
- public function setHistory($history)
- {
- $this->history = $history;
- }
- public function getHistory()
- {
- return $this->history;
- }
- public function setHistoryId($historyId)
- {
- $this->historyId = $historyId;
- }
- public function getHistoryId()
- {
- return $this->historyId;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Gmail_ListLabelsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'labels';
- protected $internal_gapi_mappings = array(
- );
- protected $labelsType = 'Postman_Google_Service_Gmail_Label';
- protected $labelsDataType = 'array';
-
-
- public function setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
-}
-
-class Postman_Google_Service_Gmail_ListMessagesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'messages';
- protected $internal_gapi_mappings = array(
- );
- protected $messagesType = 'Postman_Google_Service_Gmail_Message';
- protected $messagesDataType = 'array';
- public $nextPageToken;
- public $resultSizeEstimate;
-
-
- public function setMessages($messages)
- {
- $this->messages = $messages;
- }
- public function getMessages()
- {
- return $this->messages;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setResultSizeEstimate($resultSizeEstimate)
- {
- $this->resultSizeEstimate = $resultSizeEstimate;
- }
- public function getResultSizeEstimate()
- {
- return $this->resultSizeEstimate;
- }
-}
-
-class Postman_Google_Service_Gmail_ListThreadsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'threads';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- public $resultSizeEstimate;
- protected $threadsType = 'Postman_Google_Service_Gmail_Thread';
- protected $threadsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setResultSizeEstimate($resultSizeEstimate)
- {
- $this->resultSizeEstimate = $resultSizeEstimate;
- }
- public function getResultSizeEstimate()
- {
- return $this->resultSizeEstimate;
- }
- public function setThreads($threads)
- {
- $this->threads = $threads;
- }
- public function getThreads()
- {
- return $this->threads;
- }
-}
-
-class Postman_Google_Service_Gmail_Message extends Postman_Google_Collection
-{
- protected $collection_key = 'labelIds';
- protected $internal_gapi_mappings = array(
- );
- public $historyId;
- public $id;
- public $labelIds;
- protected $payloadType = 'Postman_Google_Service_Gmail_MessagePart';
- protected $payloadDataType = '';
- public $raw;
- public $sizeEstimate;
- public $snippet;
- public $threadId;
-
-
- public function setHistoryId($historyId)
- {
- $this->historyId = $historyId;
- }
- public function getHistoryId()
- {
- return $this->historyId;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLabelIds($labelIds)
- {
- $this->labelIds = $labelIds;
- }
- public function getLabelIds()
- {
- return $this->labelIds;
- }
- public function setPayload(Postman_Google_Service_Gmail_MessagePart $payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setRaw($raw)
- {
- $this->raw = $raw;
- }
- public function getRaw()
- {
- return $this->raw;
- }
- public function setSizeEstimate($sizeEstimate)
- {
- $this->sizeEstimate = $sizeEstimate;
- }
- public function getSizeEstimate()
- {
- return $this->sizeEstimate;
- }
- public function setSnippet($snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setThreadId($threadId)
- {
- $this->threadId = $threadId;
- }
- public function getThreadId()
- {
- return $this->threadId;
- }
-}
-
-class Postman_Google_Service_Gmail_MessagePart extends Postman_Google_Collection
-{
- protected $collection_key = 'parts';
- protected $internal_gapi_mappings = array(
- );
- protected $bodyType = 'Postman_Google_Service_Gmail_MessagePartBody';
- protected $bodyDataType = '';
- public $filename;
- protected $headersType = 'Postman_Google_Service_Gmail_MessagePartHeader';
- protected $headersDataType = 'array';
- public $mimeType;
- public $partId;
- protected $partsType = 'Postman_Google_Service_Gmail_MessagePart';
- protected $partsDataType = 'array';
-
-
- public function setBody(Postman_Google_Service_Gmail_MessagePartBody $body)
- {
- $this->body = $body;
- }
- public function getBody()
- {
- return $this->body;
- }
- public function setFilename($filename)
- {
- $this->filename = $filename;
- }
- public function getFilename()
- {
- return $this->filename;
- }
- public function setHeaders($headers)
- {
- $this->headers = $headers;
- }
- public function getHeaders()
- {
- return $this->headers;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setPartId($partId)
- {
- $this->partId = $partId;
- }
- public function getPartId()
- {
- return $this->partId;
- }
- public function setParts($parts)
- {
- $this->parts = $parts;
- }
- public function getParts()
- {
- return $this->parts;
- }
-}
-
-class Postman_Google_Service_Gmail_MessagePartBody extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $attachmentId;
- public $data;
- public $size;
-
-
- public function setAttachmentId($attachmentId)
- {
- $this->attachmentId = $attachmentId;
- }
- public function getAttachmentId()
- {
- return $this->attachmentId;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
-}
-
-class Postman_Google_Service_Gmail_MessagePartHeader extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $value;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Gmail_ModifyMessageRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'removeLabelIds';
- protected $internal_gapi_mappings = array(
- );
- public $addLabelIds;
- public $removeLabelIds;
-
-
- public function setAddLabelIds($addLabelIds)
- {
- $this->addLabelIds = $addLabelIds;
- }
- public function getAddLabelIds()
- {
- return $this->addLabelIds;
- }
- public function setRemoveLabelIds($removeLabelIds)
- {
- $this->removeLabelIds = $removeLabelIds;
- }
- public function getRemoveLabelIds()
- {
- return $this->removeLabelIds;
- }
-}
-
-class Postman_Google_Service_Gmail_ModifyThreadRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'removeLabelIds';
- protected $internal_gapi_mappings = array(
- );
- public $addLabelIds;
- public $removeLabelIds;
-
-
- public function setAddLabelIds($addLabelIds)
- {
- $this->addLabelIds = $addLabelIds;
- }
- public function getAddLabelIds()
- {
- return $this->addLabelIds;
- }
- public function setRemoveLabelIds($removeLabelIds)
- {
- $this->removeLabelIds = $removeLabelIds;
- }
- public function getRemoveLabelIds()
- {
- return $this->removeLabelIds;
- }
-}
-
-class Postman_Google_Service_Gmail_Profile extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $emailAddress;
- public $historyId;
- public $messagesTotal;
- public $threadsTotal;
-
-
- public function setEmailAddress($emailAddress)
- {
- $this->emailAddress = $emailAddress;
- }
- public function getEmailAddress()
- {
- return $this->emailAddress;
- }
- public function setHistoryId($historyId)
- {
- $this->historyId = $historyId;
- }
- public function getHistoryId()
- {
- return $this->historyId;
- }
- public function setMessagesTotal($messagesTotal)
- {
- $this->messagesTotal = $messagesTotal;
- }
- public function getMessagesTotal()
- {
- return $this->messagesTotal;
- }
- public function setThreadsTotal($threadsTotal)
- {
- $this->threadsTotal = $threadsTotal;
- }
- public function getThreadsTotal()
- {
- return $this->threadsTotal;
- }
-}
-
-class Postman_Google_Service_Gmail_Thread extends Postman_Google_Collection
-{
- protected $collection_key = 'messages';
- protected $internal_gapi_mappings = array(
- );
- public $historyId;
- public $id;
- protected $messagesType = 'Postman_Google_Service_Gmail_Message';
- protected $messagesDataType = 'array';
- public $snippet;
-
-
- public function setHistoryId($historyId)
- {
- $this->historyId = $historyId;
- }
- public function getHistoryId()
- {
- return $this->historyId;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setMessages($messages)
- {
- $this->messages = $messages;
- }
- public function getMessages()
- {
- return $this->messages;
- }
- public function setSnippet($snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/GroupsMigration.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/GroupsMigration.php
deleted file mode 100644
index b1b8a32..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/GroupsMigration.php
+++ /dev/null
@@ -1,127 +0,0 @@
-
- * Groups Migration Api.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_GroupsMigration extends Postman_Google_Service -{ - - - public $archive; - - - /** - * Constructs the internal representation of the GroupsMigration service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'groups/v1/groups/'; - $this->version = 'v1'; - $this->serviceName = 'groupsmigration'; - - $this->archive = new Postman_Google_Service_GroupsMigration_Archive_Resource( - $this, - $this->serviceName, - 'archive', - array( - 'methods' => array( - 'insert' => array( - 'path' => '{groupId}/archive', - 'httpMethod' => 'POST', - 'parameters' => array( - 'groupId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "archive" collection of methods. - * Typical usage is: - *
- * $groupsmigrationService = new Postman_Google_Service_GroupsMigration(...);
- * $archive = $groupsmigrationService->archive;
- *
- */
-class Postman_Google_Service_GroupsMigration_Archive_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Inserts a new mail into the archive of the Google group. (archive.insert)
- *
- * @param string $groupId The group ID
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_GroupsMigration_Groups
- */
- public function insert($groupId, $optParams = array())
- {
- $params = array('groupId' => $groupId);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_GroupsMigration_Groups");
- }
-}
-
-
-
-
-class Postman_Google_Service_GroupsMigration_Groups extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $responseCode;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setResponseCode($responseCode)
- {
- $this->responseCode = $responseCode;
- }
- public function getResponseCode()
- {
- return $this->responseCode;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Groupssettings.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Groupssettings.php
deleted file mode 100644
index 20dd5c5..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Groupssettings.php
+++ /dev/null
@@ -1,414 +0,0 @@
-
- * Lets you manage permission levels and related settings of a group.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Groupssettings extends Postman_Google_Service -{ - /** View and manage the settings of a Google Apps Group. */ - const APPS_GROUPS_SETTINGS = - "https://www.googleapis.com/auth/apps.groups.settings"; - - public $groups; - - - /** - * Constructs the internal representation of the Groupssettings service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'groups/v1/groups/'; - $this->version = 'v1'; - $this->serviceName = 'groupssettings'; - - $this->groups = new Postman_Google_Service_Groupssettings_Groups_Resource( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'get' => array( - 'path' => '{groupUniqueId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupUniqueId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{groupUniqueId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'groupUniqueId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{groupUniqueId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'groupUniqueId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "groups" collection of methods. - * Typical usage is: - *
- * $groupssettingsService = new Postman_Google_Service_Groupssettings(...);
- * $groups = $groupssettingsService->groups;
- *
- */
-class Postman_Google_Service_Groupssettings_Groups_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets one resource by id. (groups.get)
- *
- * @param string $groupUniqueId The resource ID
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Groupssettings_Groups
- */
- public function get($groupUniqueId, $optParams = array())
- {
- $params = array('groupUniqueId' => $groupUniqueId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Groupssettings_Groups");
- }
-
- /**
- * Updates an existing resource. This method supports patch semantics.
- * (groups.patch)
- *
- * @param string $groupUniqueId The resource ID
- * @param Postman_Google_Groups $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Groupssettings_Groups
- */
- public function patch($groupUniqueId, Postman_Google_Service_Groupssettings_Groups $postBody, $optParams = array())
- {
- $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Groupssettings_Groups");
- }
-
- /**
- * Updates an existing resource. (groups.update)
- *
- * @param string $groupUniqueId The resource ID
- * @param Postman_Google_Groups $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Groupssettings_Groups
- */
- public function update($groupUniqueId, Postman_Google_Service_Groupssettings_Groups $postBody, $optParams = array())
- {
- $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Groupssettings_Groups");
- }
-}
-
-
-
-
-class Postman_Google_Service_Groupssettings_Groups extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $allowExternalMembers;
- public $allowGoogleCommunication;
- public $allowWebPosting;
- public $archiveOnly;
- public $customReplyTo;
- public $defaultMessageDenyNotificationText;
- public $description;
- public $email;
- public $includeInGlobalAddressList;
- public $isArchived;
- public $kind;
- public $maxMessageBytes;
- public $membersCanPostAsTheGroup;
- public $messageDisplayFont;
- public $messageModerationLevel;
- public $name;
- public $primaryLanguage;
- public $replyTo;
- public $sendMessageDenyNotification;
- public $showInGroupDirectory;
- public $spamModerationLevel;
- public $whoCanContactOwner;
- public $whoCanInvite;
- public $whoCanJoin;
- public $whoCanLeaveGroup;
- public $whoCanPostMessage;
- public $whoCanViewGroup;
- public $whoCanViewMembership;
-
-
- public function setAllowExternalMembers($allowExternalMembers)
- {
- $this->allowExternalMembers = $allowExternalMembers;
- }
- public function getAllowExternalMembers()
- {
- return $this->allowExternalMembers;
- }
- public function setAllowGoogleCommunication($allowGoogleCommunication)
- {
- $this->allowGoogleCommunication = $allowGoogleCommunication;
- }
- public function getAllowGoogleCommunication()
- {
- return $this->allowGoogleCommunication;
- }
- public function setAllowWebPosting($allowWebPosting)
- {
- $this->allowWebPosting = $allowWebPosting;
- }
- public function getAllowWebPosting()
- {
- return $this->allowWebPosting;
- }
- public function setArchiveOnly($archiveOnly)
- {
- $this->archiveOnly = $archiveOnly;
- }
- public function getArchiveOnly()
- {
- return $this->archiveOnly;
- }
- public function setCustomReplyTo($customReplyTo)
- {
- $this->customReplyTo = $customReplyTo;
- }
- public function getCustomReplyTo()
- {
- return $this->customReplyTo;
- }
- public function setDefaultMessageDenyNotificationText($defaultMessageDenyNotificationText)
- {
- $this->defaultMessageDenyNotificationText = $defaultMessageDenyNotificationText;
- }
- public function getDefaultMessageDenyNotificationText()
- {
- return $this->defaultMessageDenyNotificationText;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setIncludeInGlobalAddressList($includeInGlobalAddressList)
- {
- $this->includeInGlobalAddressList = $includeInGlobalAddressList;
- }
- public function getIncludeInGlobalAddressList()
- {
- return $this->includeInGlobalAddressList;
- }
- public function setIsArchived($isArchived)
- {
- $this->isArchived = $isArchived;
- }
- public function getIsArchived()
- {
- return $this->isArchived;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxMessageBytes($maxMessageBytes)
- {
- $this->maxMessageBytes = $maxMessageBytes;
- }
- public function getMaxMessageBytes()
- {
- return $this->maxMessageBytes;
- }
- public function setMembersCanPostAsTheGroup($membersCanPostAsTheGroup)
- {
- $this->membersCanPostAsTheGroup = $membersCanPostAsTheGroup;
- }
- public function getMembersCanPostAsTheGroup()
- {
- return $this->membersCanPostAsTheGroup;
- }
- public function setMessageDisplayFont($messageDisplayFont)
- {
- $this->messageDisplayFont = $messageDisplayFont;
- }
- public function getMessageDisplayFont()
- {
- return $this->messageDisplayFont;
- }
- public function setMessageModerationLevel($messageModerationLevel)
- {
- $this->messageModerationLevel = $messageModerationLevel;
- }
- public function getMessageModerationLevel()
- {
- return $this->messageModerationLevel;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPrimaryLanguage($primaryLanguage)
- {
- $this->primaryLanguage = $primaryLanguage;
- }
- public function getPrimaryLanguage()
- {
- return $this->primaryLanguage;
- }
- public function setReplyTo($replyTo)
- {
- $this->replyTo = $replyTo;
- }
- public function getReplyTo()
- {
- return $this->replyTo;
- }
- public function setSendMessageDenyNotification($sendMessageDenyNotification)
- {
- $this->sendMessageDenyNotification = $sendMessageDenyNotification;
- }
- public function getSendMessageDenyNotification()
- {
- return $this->sendMessageDenyNotification;
- }
- public function setShowInGroupDirectory($showInGroupDirectory)
- {
- $this->showInGroupDirectory = $showInGroupDirectory;
- }
- public function getShowInGroupDirectory()
- {
- return $this->showInGroupDirectory;
- }
- public function setSpamModerationLevel($spamModerationLevel)
- {
- $this->spamModerationLevel = $spamModerationLevel;
- }
- public function getSpamModerationLevel()
- {
- return $this->spamModerationLevel;
- }
- public function setWhoCanContactOwner($whoCanContactOwner)
- {
- $this->whoCanContactOwner = $whoCanContactOwner;
- }
- public function getWhoCanContactOwner()
- {
- return $this->whoCanContactOwner;
- }
- public function setWhoCanInvite($whoCanInvite)
- {
- $this->whoCanInvite = $whoCanInvite;
- }
- public function getWhoCanInvite()
- {
- return $this->whoCanInvite;
- }
- public function setWhoCanJoin($whoCanJoin)
- {
- $this->whoCanJoin = $whoCanJoin;
- }
- public function getWhoCanJoin()
- {
- return $this->whoCanJoin;
- }
- public function setWhoCanLeaveGroup($whoCanLeaveGroup)
- {
- $this->whoCanLeaveGroup = $whoCanLeaveGroup;
- }
- public function getWhoCanLeaveGroup()
- {
- return $this->whoCanLeaveGroup;
- }
- public function setWhoCanPostMessage($whoCanPostMessage)
- {
- $this->whoCanPostMessage = $whoCanPostMessage;
- }
- public function getWhoCanPostMessage()
- {
- return $this->whoCanPostMessage;
- }
- public function setWhoCanViewGroup($whoCanViewGroup)
- {
- $this->whoCanViewGroup = $whoCanViewGroup;
- }
- public function getWhoCanViewGroup()
- {
- return $this->whoCanViewGroup;
- }
- public function setWhoCanViewMembership($whoCanViewMembership)
- {
- $this->whoCanViewMembership = $whoCanViewMembership;
- }
- public function getWhoCanViewMembership()
- {
- return $this->whoCanViewMembership;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/IdentityToolkit.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/IdentityToolkit.php
deleted file mode 100644
index f2940f1..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/IdentityToolkit.php
+++ /dev/null
@@ -1,1630 +0,0 @@
-
- * Help the third party sites to implement federated login.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_IdentityToolkit extends Postman_Google_Service -{ - - - public $relyingparty; - - - /** - * Constructs the internal representation of the IdentityToolkit service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'identitytoolkit/v3/relyingparty/'; - $this->version = 'v3'; - $this->serviceName = 'identitytoolkit'; - - $this->relyingparty = new Postman_Google_Service_IdentityToolkit_Relyingparty_Resource( - $this, - $this->serviceName, - 'relyingparty', - array( - 'methods' => array( - 'createAuthUri' => array( - 'path' => 'createAuthUri', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'deleteAccount' => array( - 'path' => 'deleteAccount', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'downloadAccount' => array( - 'path' => 'downloadAccount', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getAccountInfo' => array( - 'path' => 'getAccountInfo', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getOobConfirmationCode' => array( - 'path' => 'getOobConfirmationCode', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getPublicKeys' => array( - 'path' => 'publicKeys', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'resetPassword' => array( - 'path' => 'resetPassword', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'setAccountInfo' => array( - 'path' => 'setAccountInfo', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'uploadAccount' => array( - 'path' => 'uploadAccount', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyAssertion' => array( - 'path' => 'verifyAssertion', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyPassword' => array( - 'path' => 'verifyPassword', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "relyingparty" collection of methods. - * Typical usage is: - *
- * $identitytoolkitService = new Postman_Google_Service_IdentityToolkit(...);
- * $relyingparty = $identitytoolkitService->relyingparty;
- *
- */
-class Postman_Google_Service_IdentityToolkit_Relyingparty_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates the URI used by the IdP to authenticate the user.
- * (relyingparty.createAuthUri)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_CreateAuthUriResponse
- */
- public function createAuthUri(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('createAuthUri', array($params), "Postman_Google_Service_IdentityToolkit_CreateAuthUriResponse");
- }
-
- /**
- * Delete user account. (relyingparty.deleteAccount)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_DeleteAccountResponse
- */
- public function deleteAccount(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('deleteAccount', array($params), "Postman_Google_Service_IdentityToolkit_DeleteAccountResponse");
- }
-
- /**
- * Batch download user accounts. (relyingparty.downloadAccount)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_DownloadAccountResponse
- */
- public function downloadAccount(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('downloadAccount', array($params), "Postman_Google_Service_IdentityToolkit_DownloadAccountResponse");
- }
-
- /**
- * Returns the account info. (relyingparty.getAccountInfo)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_GetAccountInfoResponse
- */
- public function getAccountInfo(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getAccountInfo', array($params), "Postman_Google_Service_IdentityToolkit_GetAccountInfoResponse");
- }
-
- /**
- * Get a code for user action confirmation.
- * (relyingparty.getOobConfirmationCode)
- *
- * @param Postman_Google_Relyingparty $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse
- */
- public function getOobConfirmationCode(Postman_Google_Service_IdentityToolkit_Relyingparty $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getOobConfirmationCode', array($params), "Postman_Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse");
- }
-
- /**
- * Get token signing public key. (relyingparty.getPublicKeys)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse
- */
- public function getPublicKeys($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('getPublicKeys', array($params), "Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse");
- }
-
- /**
- * Reset password for a user. (relyingparty.resetPassword)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_ResetPasswordResponse
- */
- public function resetPassword(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('resetPassword', array($params), "Postman_Google_Service_IdentityToolkit_ResetPasswordResponse");
- }
-
- /**
- * Set account info for a user. (relyingparty.setAccountInfo)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_SetAccountInfoResponse
- */
- public function setAccountInfo(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setAccountInfo', array($params), "Postman_Google_Service_IdentityToolkit_SetAccountInfoResponse");
- }
-
- /**
- * Batch upload existing user accounts. (relyingparty.uploadAccount)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_UploadAccountResponse
- */
- public function uploadAccount(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('uploadAccount', array($params), "Postman_Google_Service_IdentityToolkit_UploadAccountResponse");
- }
-
- /**
- * Verifies the assertion returned by the IdP. (relyingparty.verifyAssertion)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_VerifyAssertionResponse
- */
- public function verifyAssertion(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('verifyAssertion', array($params), "Postman_Google_Service_IdentityToolkit_VerifyAssertionResponse");
- }
-
- /**
- * Verifies the user entered password. (relyingparty.verifyPassword)
- *
- * @param Postman_Google_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_IdentityToolkit_VerifyPasswordResponse
- */
- public function verifyPassword(Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('verifyPassword', array($params), "Postman_Google_Service_IdentityToolkit_VerifyPasswordResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_IdentityToolkit_CreateAuthUriResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $authUri;
- public $captchaRequired;
- public $forExistingProvider;
- public $kind;
- public $providerId;
- public $registered;
-
-
- public function setAuthUri($authUri)
- {
- $this->authUri = $authUri;
- }
- public function getAuthUri()
- {
- return $this->authUri;
- }
- public function setCaptchaRequired($captchaRequired)
- {
- $this->captchaRequired = $captchaRequired;
- }
- public function getCaptchaRequired()
- {
- return $this->captchaRequired;
- }
- public function setForExistingProvider($forExistingProvider)
- {
- $this->forExistingProvider = $forExistingProvider;
- }
- public function getForExistingProvider()
- {
- return $this->forExistingProvider;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProviderId($providerId)
- {
- $this->providerId = $providerId;
- }
- public function getProviderId()
- {
- return $this->providerId;
- }
- public function setRegistered($registered)
- {
- $this->registered = $registered;
- }
- public function getRegistered()
- {
- return $this->registered;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_DeleteAccountResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_DownloadAccountResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'users';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $usersType = 'Postman_Google_Service_IdentityToolkit_UserInfo';
- protected $usersDataType = 'array';
-
-
- 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;
- }
- public function setUsers($users)
- {
- $this->users = $users;
- }
- public function getUsers()
- {
- return $this->users;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_GetAccountInfoResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'users';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $usersType = 'Postman_Google_Service_IdentityToolkit_UserInfo';
- protected $usersDataType = 'array';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUsers($users)
- {
- $this->users = $users;
- }
- public function getUsers()
- {
- return $this->users;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $oobCode;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOobCode($oobCode)
- {
- $this->oobCode = $oobCode;
- }
- public function getOobCode()
- {
- return $this->oobCode;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $appId;
- public $clientId;
- public $context;
- public $continueUri;
- public $identifier;
- public $openidRealm;
- public $otaApp;
- public $providerId;
-
-
- public function setAppId($appId)
- {
- $this->appId = $appId;
- }
- public function getAppId()
- {
- return $this->appId;
- }
- public function setClientId($clientId)
- {
- $this->clientId = $clientId;
- }
- public function getClientId()
- {
- return $this->clientId;
- }
- public function setContext($context)
- {
- $this->context = $context;
- }
- public function getContext()
- {
- return $this->context;
- }
- public function setContinueUri($continueUri)
- {
- $this->continueUri = $continueUri;
- }
- public function getContinueUri()
- {
- return $this->continueUri;
- }
- public function setIdentifier($identifier)
- {
- $this->identifier = $identifier;
- }
- public function getIdentifier()
- {
- return $this->identifier;
- }
- public function setOpenidRealm($openidRealm)
- {
- $this->openidRealm = $openidRealm;
- }
- public function getOpenidRealm()
- {
- return $this->openidRealm;
- }
- public function setOtaApp($otaApp)
- {
- $this->otaApp = $otaApp;
- }
- public function getOtaApp()
- {
- return $this->otaApp;
- }
- public function setProviderId($providerId)
- {
- $this->providerId = $providerId;
- }
- public function getProviderId()
- {
- return $this->providerId;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $localId;
-
-
- public function setLocalId($localId)
- {
- $this->localId = $localId;
- }
- public function getLocalId()
- {
- return $this->localId;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $maxResults;
- public $nextPageToken;
-
-
- public function setMaxResults($maxResults)
- {
- $this->maxResults = $maxResults;
- }
- public function getMaxResults()
- {
- return $this->maxResults;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'localId';
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $idToken;
- public $localId;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setIdToken($idToken)
- {
- $this->idToken = $idToken;
- }
- public function getIdToken()
- {
- return $this->idToken;
- }
- public function setLocalId($localId)
- {
- $this->localId = $localId;
- }
- public function getLocalId()
- {
- return $this->localId;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $newPassword;
- public $oldPassword;
- public $oobCode;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setNewPassword($newPassword)
- {
- $this->newPassword = $newPassword;
- }
- public function getNewPassword()
- {
- return $this->newPassword;
- }
- public function setOldPassword($oldPassword)
- {
- $this->oldPassword = $oldPassword;
- }
- public function getOldPassword()
- {
- return $this->oldPassword;
- }
- public function setOobCode($oobCode)
- {
- $this->oobCode = $oobCode;
- }
- public function getOobCode()
- {
- return $this->oobCode;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'provider';
- protected $internal_gapi_mappings = array(
- );
- public $captchaChallenge;
- public $captchaResponse;
- public $displayName;
- public $email;
- public $emailVerified;
- public $idToken;
- public $localId;
- public $oobCode;
- public $password;
- public $provider;
- public $upgradeToFederatedLogin;
-
-
- public function setCaptchaChallenge($captchaChallenge)
- {
- $this->captchaChallenge = $captchaChallenge;
- }
- public function getCaptchaChallenge()
- {
- return $this->captchaChallenge;
- }
- public function setCaptchaResponse($captchaResponse)
- {
- $this->captchaResponse = $captchaResponse;
- }
- public function getCaptchaResponse()
- {
- return $this->captchaResponse;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEmailVerified($emailVerified)
- {
- $this->emailVerified = $emailVerified;
- }
- public function getEmailVerified()
- {
- return $this->emailVerified;
- }
- public function setIdToken($idToken)
- {
- $this->idToken = $idToken;
- }
- public function getIdToken()
- {
- return $this->idToken;
- }
- public function setLocalId($localId)
- {
- $this->localId = $localId;
- }
- public function getLocalId()
- {
- return $this->localId;
- }
- public function setOobCode($oobCode)
- {
- $this->oobCode = $oobCode;
- }
- public function getOobCode()
- {
- return $this->oobCode;
- }
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
- public function setProvider($provider)
- {
- $this->provider = $provider;
- }
- public function getProvider()
- {
- return $this->provider;
- }
- public function setUpgradeToFederatedLogin($upgradeToFederatedLogin)
- {
- $this->upgradeToFederatedLogin = $upgradeToFederatedLogin;
- }
- public function getUpgradeToFederatedLogin()
- {
- return $this->upgradeToFederatedLogin;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'users';
- protected $internal_gapi_mappings = array(
- );
- public $hashAlgorithm;
- public $memoryCost;
- public $rounds;
- public $saltSeparator;
- public $signerKey;
- protected $usersType = 'Postman_Google_Service_IdentityToolkit_UserInfo';
- protected $usersDataType = 'array';
-
-
- public function setHashAlgorithm($hashAlgorithm)
- {
- $this->hashAlgorithm = $hashAlgorithm;
- }
- public function getHashAlgorithm()
- {
- return $this->hashAlgorithm;
- }
- public function setMemoryCost($memoryCost)
- {
- $this->memoryCost = $memoryCost;
- }
- public function getMemoryCost()
- {
- return $this->memoryCost;
- }
- public function setRounds($rounds)
- {
- $this->rounds = $rounds;
- }
- public function getRounds()
- {
- return $this->rounds;
- }
- public function setSaltSeparator($saltSeparator)
- {
- $this->saltSeparator = $saltSeparator;
- }
- public function getSaltSeparator()
- {
- return $this->saltSeparator;
- }
- public function setSignerKey($signerKey)
- {
- $this->signerKey = $signerKey;
- }
- public function getSignerKey()
- {
- return $this->signerKey;
- }
- public function setUsers($users)
- {
- $this->users = $users;
- }
- public function getUsers()
- {
- return $this->users;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $pendingIdToken;
- public $postBody;
- public $requestUri;
-
-
- public function setPendingIdToken($pendingIdToken)
- {
- $this->pendingIdToken = $pendingIdToken;
- }
- public function getPendingIdToken()
- {
- return $this->pendingIdToken;
- }
- public function setPostBody($postBody)
- {
- $this->postBody = $postBody;
- }
- public function getPostBody()
- {
- return $this->postBody;
- }
- public function setRequestUri($requestUri)
- {
- $this->requestUri = $requestUri;
- }
- public function getRequestUri()
- {
- return $this->requestUri;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $captchaChallenge;
- public $captchaResponse;
- public $email;
- public $password;
- public $pendingIdToken;
-
-
- public function setCaptchaChallenge($captchaChallenge)
- {
- $this->captchaChallenge = $captchaChallenge;
- }
- public function getCaptchaChallenge()
- {
- return $this->captchaChallenge;
- }
- public function setCaptchaResponse($captchaResponse)
- {
- $this->captchaResponse = $captchaResponse;
- }
- public function getCaptchaResponse()
- {
- return $this->captchaResponse;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
- public function setPendingIdToken($pendingIdToken)
- {
- $this->pendingIdToken = $pendingIdToken;
- }
- public function getPendingIdToken()
- {
- return $this->pendingIdToken;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_Relyingparty extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $captchaResp;
- public $challenge;
- public $email;
- public $idToken;
- public $kind;
- public $newEmail;
- public $requestType;
- public $userIp;
-
-
- public function setCaptchaResp($captchaResp)
- {
- $this->captchaResp = $captchaResp;
- }
- public function getCaptchaResp()
- {
- return $this->captchaResp;
- }
- public function setChallenge($challenge)
- {
- $this->challenge = $challenge;
- }
- public function getChallenge()
- {
- return $this->challenge;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setIdToken($idToken)
- {
- $this->idToken = $idToken;
- }
- public function getIdToken()
- {
- return $this->idToken;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setNewEmail($newEmail)
- {
- $this->newEmail = $newEmail;
- }
- public function getNewEmail()
- {
- return $this->newEmail;
- }
- public function setRequestType($requestType)
- {
- $this->requestType = $requestType;
- }
- public function getRequestType()
- {
- return $this->requestType;
- }
- public function setUserIp($userIp)
- {
- $this->userIp = $userIp;
- }
- public function getUserIp()
- {
- return $this->userIp;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_ResetPasswordResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $kind;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_SetAccountInfoResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'providerUserInfo';
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $email;
- public $idToken;
- public $kind;
- protected $providerUserInfoType = 'Postman_Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo';
- protected $providerUserInfoDataType = 'array';
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setIdToken($idToken)
- {
- $this->idToken = $idToken;
- }
- public function getIdToken()
- {
- return $this->idToken;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProviderUserInfo($providerUserInfo)
- {
- $this->providerUserInfo = $providerUserInfo;
- }
- public function getProviderUserInfo()
- {
- return $this->providerUserInfo;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $photoUrl;
- public $providerId;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
- public function setProviderId($providerId)
- {
- $this->providerId = $providerId;
- }
- public function getProviderId()
- {
- return $this->providerId;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_UploadAccountResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'error';
- protected $internal_gapi_mappings = array(
- );
- protected $errorType = 'Postman_Google_Service_IdentityToolkit_UploadAccountResponseError';
- protected $errorDataType = 'array';
- public $kind;
-
-
- public function setError($error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_UploadAccountResponseError extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $index;
- public $message;
-
-
- public function setIndex($index)
- {
- $this->index = $index;
- }
- public function getIndex()
- {
- return $this->index;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_UserInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'providerUserInfo';
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $email;
- public $emailVerified;
- public $localId;
- public $passwordHash;
- public $passwordUpdatedAt;
- public $photoUrl;
- protected $providerUserInfoType = 'Postman_Google_Service_IdentityToolkit_UserInfoProviderUserInfo';
- protected $providerUserInfoDataType = 'array';
- public $salt;
- public $version;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEmailVerified($emailVerified)
- {
- $this->emailVerified = $emailVerified;
- }
- public function getEmailVerified()
- {
- return $this->emailVerified;
- }
- public function setLocalId($localId)
- {
- $this->localId = $localId;
- }
- public function getLocalId()
- {
- return $this->localId;
- }
- public function setPasswordHash($passwordHash)
- {
- $this->passwordHash = $passwordHash;
- }
- public function getPasswordHash()
- {
- return $this->passwordHash;
- }
- public function setPasswordUpdatedAt($passwordUpdatedAt)
- {
- $this->passwordUpdatedAt = $passwordUpdatedAt;
- }
- public function getPasswordUpdatedAt()
- {
- return $this->passwordUpdatedAt;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
- public function setProviderUserInfo($providerUserInfo)
- {
- $this->providerUserInfo = $providerUserInfo;
- }
- public function getProviderUserInfo()
- {
- return $this->providerUserInfo;
- }
- public function setSalt($salt)
- {
- $this->salt = $salt;
- }
- public function getSalt()
- {
- return $this->salt;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_UserInfoProviderUserInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $federatedId;
- public $photoUrl;
- public $providerId;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setFederatedId($federatedId)
- {
- $this->federatedId = $federatedId;
- }
- public function getFederatedId()
- {
- return $this->federatedId;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
- public function setProviderId($providerId)
- {
- $this->providerId = $providerId;
- }
- public function getProviderId()
- {
- return $this->providerId;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_VerifyAssertionResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'verifiedProvider';
- protected $internal_gapi_mappings = array(
- );
- public $action;
- public $appInstallationUrl;
- public $appScheme;
- public $context;
- public $dateOfBirth;
- public $displayName;
- public $email;
- public $emailRecycled;
- public $emailVerified;
- public $federatedId;
- public $firstName;
- public $fullName;
- public $idToken;
- public $inputEmail;
- public $kind;
- public $language;
- public $lastName;
- public $localId;
- public $needConfirmation;
- public $nickName;
- public $oauthRequestToken;
- public $oauthScope;
- public $originalEmail;
- public $photoUrl;
- public $providerId;
- public $timeZone;
- public $verifiedProvider;
-
-
- public function setAction($action)
- {
- $this->action = $action;
- }
- public function getAction()
- {
- return $this->action;
- }
- public function setAppInstallationUrl($appInstallationUrl)
- {
- $this->appInstallationUrl = $appInstallationUrl;
- }
- public function getAppInstallationUrl()
- {
- return $this->appInstallationUrl;
- }
- public function setAppScheme($appScheme)
- {
- $this->appScheme = $appScheme;
- }
- public function getAppScheme()
- {
- return $this->appScheme;
- }
- public function setContext($context)
- {
- $this->context = $context;
- }
- public function getContext()
- {
- return $this->context;
- }
- public function setDateOfBirth($dateOfBirth)
- {
- $this->dateOfBirth = $dateOfBirth;
- }
- public function getDateOfBirth()
- {
- return $this->dateOfBirth;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEmailRecycled($emailRecycled)
- {
- $this->emailRecycled = $emailRecycled;
- }
- public function getEmailRecycled()
- {
- return $this->emailRecycled;
- }
- public function setEmailVerified($emailVerified)
- {
- $this->emailVerified = $emailVerified;
- }
- public function getEmailVerified()
- {
- return $this->emailVerified;
- }
- public function setFederatedId($federatedId)
- {
- $this->federatedId = $federatedId;
- }
- public function getFederatedId()
- {
- return $this->federatedId;
- }
- public function setFirstName($firstName)
- {
- $this->firstName = $firstName;
- }
- public function getFirstName()
- {
- return $this->firstName;
- }
- public function setFullName($fullName)
- {
- $this->fullName = $fullName;
- }
- public function getFullName()
- {
- return $this->fullName;
- }
- public function setIdToken($idToken)
- {
- $this->idToken = $idToken;
- }
- public function getIdToken()
- {
- return $this->idToken;
- }
- public function setInputEmail($inputEmail)
- {
- $this->inputEmail = $inputEmail;
- }
- public function getInputEmail()
- {
- return $this->inputEmail;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setLastName($lastName)
- {
- $this->lastName = $lastName;
- }
- public function getLastName()
- {
- return $this->lastName;
- }
- public function setLocalId($localId)
- {
- $this->localId = $localId;
- }
- public function getLocalId()
- {
- return $this->localId;
- }
- public function setNeedConfirmation($needConfirmation)
- {
- $this->needConfirmation = $needConfirmation;
- }
- public function getNeedConfirmation()
- {
- return $this->needConfirmation;
- }
- public function setNickName($nickName)
- {
- $this->nickName = $nickName;
- }
- public function getNickName()
- {
- return $this->nickName;
- }
- public function setOauthRequestToken($oauthRequestToken)
- {
- $this->oauthRequestToken = $oauthRequestToken;
- }
- public function getOauthRequestToken()
- {
- return $this->oauthRequestToken;
- }
- public function setOauthScope($oauthScope)
- {
- $this->oauthScope = $oauthScope;
- }
- public function getOauthScope()
- {
- return $this->oauthScope;
- }
- public function setOriginalEmail($originalEmail)
- {
- $this->originalEmail = $originalEmail;
- }
- public function getOriginalEmail()
- {
- return $this->originalEmail;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
- public function setProviderId($providerId)
- {
- $this->providerId = $providerId;
- }
- public function getProviderId()
- {
- return $this->providerId;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
- public function setVerifiedProvider($verifiedProvider)
- {
- $this->verifiedProvider = $verifiedProvider;
- }
- public function getVerifiedProvider()
- {
- return $this->verifiedProvider;
- }
-}
-
-class Postman_Google_Service_IdentityToolkit_VerifyPasswordResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $email;
- public $idToken;
- public $kind;
- public $localId;
- public $photoUrl;
- public $registered;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setIdToken($idToken)
- {
- $this->idToken = $idToken;
- }
- public function getIdToken()
- {
- return $this->idToken;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLocalId($localId)
- {
- $this->localId = $localId;
- }
- public function getLocalId()
- {
- return $this->localId;
- }
- public function setPhotoUrl($photoUrl)
- {
- $this->photoUrl = $photoUrl;
- }
- public function getPhotoUrl()
- {
- return $this->photoUrl;
- }
- public function setRegistered($registered)
- {
- $this->registered = $registered;
- }
- public function getRegistered()
- {
- return $this->registered;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Licensing.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Licensing.php
deleted file mode 100644
index 37dd6c7..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Licensing.php
+++ /dev/null
@@ -1,476 +0,0 @@
-
- * Licensing API to view and manage license for your domain.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Licensing extends Postman_Google_Service -{ - - - public $licenseAssignments; - - - /** - * Constructs the internal representation of the Licensing service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'apps/licensing/v1/product/'; - $this->version = 'v1'; - $this->serviceName = 'licensing'; - - $this->licenseAssignments = new Postman_Google_Service_Licensing_LicenseAssignments_Resource( - $this, - $this->serviceName, - 'licenseAssignments', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{productId}/sku/{skuId}/user', - 'httpMethod' => 'POST', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'listForProduct' => array( - 'path' => '{productId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'listForProductAndSku' => array( - 'path' => '{productId}/sku/{skuId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "licenseAssignments" collection of methods. - * Typical usage is: - *
- * $licensingService = new Postman_Google_Service_Licensing(...);
- * $licenseAssignments = $licensingService->licenseAssignments;
- *
- */
-class Postman_Google_Service_Licensing_LicenseAssignments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Revoke License. (licenseAssignments.delete)
- *
- * @param string $productId Name for product
- * @param string $skuId Name for sku
- * @param string $userId email id or unique Id of the user
- * @param array $optParams Optional parameters.
- */
- public function delete($productId, $skuId, $userId, $optParams = array())
- {
- $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Get license assignment of a particular product and sku for a user
- * (licenseAssignments.get)
- *
- * @param string $productId Name for product
- * @param string $skuId Name for sku
- * @param string $userId email id or unique Id of the user
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Licensing_LicenseAssignment
- */
- public function get($productId, $skuId, $userId, $optParams = array())
- {
- $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Licensing_LicenseAssignment");
- }
-
- /**
- * Assign License. (licenseAssignments.insert)
- *
- * @param string $productId Name for product
- * @param string $skuId Name for sku
- * @param Postman_Google_LicenseAssignmentInsert $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Licensing_LicenseAssignment
- */
- public function insert($productId, $skuId, Postman_Google_Service_Licensing_LicenseAssignmentInsert $postBody, $optParams = array())
- {
- $params = array('productId' => $productId, 'skuId' => $skuId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Licensing_LicenseAssignment");
- }
-
- /**
- * List license assignments for given product of the customer.
- * (licenseAssignments.listForProduct)
- *
- * @param string $productId Name for product
- * @param string $customerId CustomerId represents the customer for whom
- * licenseassignments are queried
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token to fetch the next page.Optional. By default
- * server will return first page
- * @opt_param string maxResults Maximum number of campaigns to return at one
- * time. Must be positive. Optional. Default value is 100.
- * @return Postman_Google_Service_Licensing_LicenseAssignmentList
- */
- public function listForProduct($productId, $customerId, $optParams = array())
- {
- $params = array('productId' => $productId, 'customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('listForProduct', array($params), "Postman_Google_Service_Licensing_LicenseAssignmentList");
- }
-
- /**
- * List license assignments for given product and sku of the customer.
- * (licenseAssignments.listForProductAndSku)
- *
- * @param string $productId Name for product
- * @param string $skuId Name for sku
- * @param string $customerId CustomerId represents the customer for whom
- * licenseassignments are queried
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token to fetch the next page.Optional. By default
- * server will return first page
- * @opt_param string maxResults Maximum number of campaigns to return at one
- * time. Must be positive. Optional. Default value is 100.
- * @return Postman_Google_Service_Licensing_LicenseAssignmentList
- */
- public function listForProductAndSku($productId, $skuId, $customerId, $optParams = array())
- {
- $params = array('productId' => $productId, 'skuId' => $skuId, 'customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('listForProductAndSku', array($params), "Postman_Google_Service_Licensing_LicenseAssignmentList");
- }
-
- /**
- * Assign License. This method supports patch semantics.
- * (licenseAssignments.patch)
- *
- * @param string $productId Name for product
- * @param string $skuId Name for sku for which license would be revoked
- * @param string $userId email id or unique Id of the user
- * @param Postman_Google_LicenseAssignment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Licensing_LicenseAssignment
- */
- public function patch($productId, $skuId, $userId, Postman_Google_Service_Licensing_LicenseAssignment $postBody, $optParams = array())
- {
- $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Licensing_LicenseAssignment");
- }
-
- /**
- * Assign License. (licenseAssignments.update)
- *
- * @param string $productId Name for product
- * @param string $skuId Name for sku for which license would be revoked
- * @param string $userId email id or unique Id of the user
- * @param Postman_Google_LicenseAssignment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Licensing_LicenseAssignment
- */
- public function update($productId, $skuId, $userId, Postman_Google_Service_Licensing_LicenseAssignment $postBody, $optParams = array())
- {
- $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Licensing_LicenseAssignment");
- }
-}
-
-
-
-
-class Postman_Google_Service_Licensing_LicenseAssignment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etags;
- public $kind;
- public $productId;
- public $selfLink;
- public $skuId;
- public $userId;
-
-
- public function setEtags($etags)
- {
- $this->etags = $etags;
- }
- public function getEtags()
- {
- return $this->etags;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProductId($productId)
- {
- $this->productId = $productId;
- }
- public function getProductId()
- {
- return $this->productId;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSkuId($skuId)
- {
- $this->skuId = $skuId;
- }
- public function getSkuId()
- {
- return $this->skuId;
- }
- public function setUserId($userId)
- {
- $this->userId = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
-}
-
-class Postman_Google_Service_Licensing_LicenseAssignmentInsert extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $userId;
-
-
- public function setUserId($userId)
- {
- $this->userId = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
-}
-
-class Postman_Google_Service_Licensing_LicenseAssignmentList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Licensing_LicenseAssignment';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Manager.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Manager.php
deleted file mode 100644
index 6942628..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Manager.php
+++ /dev/null
@@ -1,1857 +0,0 @@
-
- * The Deployment Manager API allows users to declaratively configure, deploy
- * and run complex solutions on the Google Cloud Platform.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Manager extends Postman_Google_Service -{ - /** View and manage your applications deployed on Google App Engine. */ - const APPENGINE_ADMIN = - "https://www.googleapis.com/auth/appengine.admin"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - - public $deployments; - public $templates; - - - /** - * Constructs the internal representation of the Manager service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'manager/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'manager'; - - $this->deployments = new Postman_Google_Service_Manager_Deployments_Resource( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{projectId}/regions/{region}/deployments/{deploymentName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectId}/regions/{region}/deployments/{deploymentName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{projectId}/regions/{region}/deployments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectId}/regions/{region}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->templates = new Postman_Google_Service_Manager_Templates_Resource( - $this, - $this->serviceName, - 'templates', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{projectId}/templates/{templateName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectId}/templates/{templateName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{projectId}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectId}/templates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "deployments" collection of methods. - * Typical usage is: - *
- * $managerService = new Postman_Google_Service_Manager(...);
- * $deployments = $managerService->deployments;
- *
- */
-class Postman_Google_Service_Manager_Deployments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (deployments.delete)
- *
- * @param string $projectId
- * @param string $region
- * @param string $deploymentName
- * @param array $optParams Optional parameters.
- */
- public function delete($projectId, $region, $deploymentName, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * (deployments.get)
- *
- * @param string $projectId
- * @param string $region
- * @param string $deploymentName
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Manager_Deployment
- */
- public function get($projectId, $region, $deploymentName, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Manager_Deployment");
- }
-
- /**
- * (deployments.insert)
- *
- * @param string $projectId
- * @param string $region
- * @param Postman_Google_Deployment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Manager_Deployment
- */
- public function insert($projectId, $region, Postman_Google_Service_Manager_Deployment $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'region' => $region, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Manager_Deployment");
- }
-
- /**
- * (deployments.listDeployments)
- *
- * @param string $projectId
- * @param string $region
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Specifies a nextPageToken returned by a previous
- * list request. This token can be used to request the next page of results from
- * a previous list request.
- * @opt_param int maxResults Maximum count of results to be returned. Acceptable
- * values are 0 to 100, inclusive. (Default: 50)
- * @return Postman_Google_Service_Manager_DeploymentsListResponse
- */
- public function listDeployments($projectId, $region, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'region' => $region);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Manager_DeploymentsListResponse");
- }
-}
-
-/**
- * The "templates" collection of methods.
- * Typical usage is:
- *
- * $managerService = new Postman_Google_Service_Manager(...);
- * $templates = $managerService->templates;
- *
- */
-class Postman_Google_Service_Manager_Templates_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (templates.delete)
- *
- * @param string $projectId
- * @param string $templateName
- * @param array $optParams Optional parameters.
- */
- public function delete($projectId, $templateName, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'templateName' => $templateName);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * (templates.get)
- *
- * @param string $projectId
- * @param string $templateName
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Manager_Template
- */
- public function get($projectId, $templateName, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'templateName' => $templateName);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Manager_Template");
- }
-
- /**
- * (templates.insert)
- *
- * @param string $projectId
- * @param Postman_Google_Template $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Manager_Template
- */
- public function insert($projectId, Postman_Google_Service_Manager_Template $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Manager_Template");
- }
-
- /**
- * (templates.listTemplates)
- *
- * @param string $projectId
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Specifies a nextPageToken returned by a previous
- * list request. This token can be used to request the next page of results from
- * a previous list request.
- * @opt_param int maxResults Maximum count of results to be returned. Acceptable
- * values are 0 to 100, inclusive. (Default: 50)
- * @return Postman_Google_Service_Manager_TemplatesListResponse
- */
- public function listTemplates($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Manager_TemplatesListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Manager_AccessConfig extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $natIp;
- public $type;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNatIp($natIp)
- {
- $this->natIp = $natIp;
- }
- public function getNatIp()
- {
- return $this->natIp;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Manager_Action extends Postman_Google_Collection
-{
- protected $collection_key = 'commands';
- protected $internal_gapi_mappings = array(
- );
- public $commands;
- public $timeoutMs;
-
-
- public function setCommands($commands)
- {
- $this->commands = $commands;
- }
- public function getCommands()
- {
- return $this->commands;
- }
- public function setTimeoutMs($timeoutMs)
- {
- $this->timeoutMs = $timeoutMs;
- }
- public function getTimeoutMs()
- {
- return $this->timeoutMs;
- }
-}
-
-class Postman_Google_Service_Manager_AllowedRule extends Postman_Google_Collection
-{
- protected $collection_key = 'ports';
- protected $internal_gapi_mappings = array(
- "iPProtocol" => "IPProtocol",
- );
- public $iPProtocol;
- public $ports;
-
-
- public function setIPProtocol($iPProtocol)
- {
- $this->iPProtocol = $iPProtocol;
- }
- public function getIPProtocol()
- {
- return $this->iPProtocol;
- }
- public function setPorts($ports)
- {
- $this->ports = $ports;
- }
- public function getPorts()
- {
- return $this->ports;
- }
-}
-
-class Postman_Google_Service_Manager_AutoscalingModule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $coolDownPeriodSec;
- public $description;
- public $maxNumReplicas;
- public $minNumReplicas;
- public $signalType;
- public $targetModule;
- public $targetUtilization;
-
-
- public function setCoolDownPeriodSec($coolDownPeriodSec)
- {
- $this->coolDownPeriodSec = $coolDownPeriodSec;
- }
- public function getCoolDownPeriodSec()
- {
- return $this->coolDownPeriodSec;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setMaxNumReplicas($maxNumReplicas)
- {
- $this->maxNumReplicas = $maxNumReplicas;
- }
- public function getMaxNumReplicas()
- {
- return $this->maxNumReplicas;
- }
- public function setMinNumReplicas($minNumReplicas)
- {
- $this->minNumReplicas = $minNumReplicas;
- }
- public function getMinNumReplicas()
- {
- return $this->minNumReplicas;
- }
- public function setSignalType($signalType)
- {
- $this->signalType = $signalType;
- }
- public function getSignalType()
- {
- return $this->signalType;
- }
- public function setTargetModule($targetModule)
- {
- $this->targetModule = $targetModule;
- }
- public function getTargetModule()
- {
- return $this->targetModule;
- }
- public function setTargetUtilization($targetUtilization)
- {
- $this->targetUtilization = $targetUtilization;
- }
- public function getTargetUtilization()
- {
- return $this->targetUtilization;
- }
-}
-
-class Postman_Google_Service_Manager_AutoscalingModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $autoscalingConfigUrl;
-
-
- public function setAutoscalingConfigUrl($autoscalingConfigUrl)
- {
- $this->autoscalingConfigUrl = $autoscalingConfigUrl;
- }
- public function getAutoscalingConfigUrl()
- {
- return $this->autoscalingConfigUrl;
- }
-}
-
-class Postman_Google_Service_Manager_DeployState extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $details;
- public $status;
-
-
- public function setDetails($details)
- {
- $this->details = $details;
- }
- public function getDetails()
- {
- return $this->details;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Manager_Deployment extends Postman_Google_Collection
-{
- protected $collection_key = 'overrides';
- protected $internal_gapi_mappings = array(
- );
- public $creationDate;
- public $description;
- protected $modulesType = 'Postman_Google_Service_Manager_ModuleStatus';
- protected $modulesDataType = 'map';
- public $name;
- protected $overridesType = 'Postman_Google_Service_Manager_ParamOverride';
- protected $overridesDataType = 'array';
- protected $stateType = 'Postman_Google_Service_Manager_DeployState';
- protected $stateDataType = '';
- public $templateName;
-
-
- public function setCreationDate($creationDate)
- {
- $this->creationDate = $creationDate;
- }
- public function getCreationDate()
- {
- return $this->creationDate;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setModules($modules)
- {
- $this->modules = $modules;
- }
- public function getModules()
- {
- return $this->modules;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOverrides($overrides)
- {
- $this->overrides = $overrides;
- }
- public function getOverrides()
- {
- return $this->overrides;
- }
- public function setState(Postman_Google_Service_Manager_DeployState $state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setTemplateName($templateName)
- {
- $this->templateName = $templateName;
- }
- public function getTemplateName()
- {
- return $this->templateName;
- }
-}
-
-class Postman_Google_Service_Manager_DeploymentModules extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Manager_DeploymentsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_Manager_Deployment';
- protected $resourcesDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_Manager_DiskAttachment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deviceName;
- public $index;
-
-
- public function setDeviceName($deviceName)
- {
- $this->deviceName = $deviceName;
- }
- public function getDeviceName()
- {
- return $this->deviceName;
- }
- public function setIndex($index)
- {
- $this->index = $index;
- }
- public function getIndex()
- {
- return $this->index;
- }
-}
-
-class Postman_Google_Service_Manager_EnvVariable extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $hidden;
- public $value;
-
-
- public function setHidden($hidden)
- {
- $this->hidden = $hidden;
- }
- public function getHidden()
- {
- return $this->hidden;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Manager_ExistingDisk extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $attachmentType = 'Postman_Google_Service_Manager_DiskAttachment';
- protected $attachmentDataType = '';
- public $source;
-
-
- public function setAttachment(Postman_Google_Service_Manager_DiskAttachment $attachment)
- {
- $this->attachment = $attachment;
- }
- public function getAttachment()
- {
- return $this->attachment;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
-}
-
-class Postman_Google_Service_Manager_FirewallModule extends Postman_Google_Collection
-{
- protected $collection_key = 'targetTags';
- protected $internal_gapi_mappings = array(
- );
- protected $allowedType = 'Postman_Google_Service_Manager_AllowedRule';
- protected $allowedDataType = 'array';
- public $description;
- public $network;
- public $sourceRanges;
- public $sourceTags;
- public $targetTags;
-
-
- public function setAllowed($allowed)
- {
- $this->allowed = $allowed;
- }
- public function getAllowed()
- {
- return $this->allowed;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setSourceRanges($sourceRanges)
- {
- $this->sourceRanges = $sourceRanges;
- }
- public function getSourceRanges()
- {
- return $this->sourceRanges;
- }
- public function setSourceTags($sourceTags)
- {
- $this->sourceTags = $sourceTags;
- }
- public function getSourceTags()
- {
- return $this->sourceTags;
- }
- public function setTargetTags($targetTags)
- {
- $this->targetTags = $targetTags;
- }
- public function getTargetTags()
- {
- return $this->targetTags;
- }
-}
-
-class Postman_Google_Service_Manager_FirewallModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $firewallUrl;
-
-
- public function setFirewallUrl($firewallUrl)
- {
- $this->firewallUrl = $firewallUrl;
- }
- public function getFirewallUrl()
- {
- return $this->firewallUrl;
- }
-}
-
-class Postman_Google_Service_Manager_HealthCheckModule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $checkIntervalSec;
- public $description;
- public $healthyThreshold;
- public $host;
- public $path;
- public $port;
- public $timeoutSec;
- public $unhealthyThreshold;
-
-
- public function setCheckIntervalSec($checkIntervalSec)
- {
- $this->checkIntervalSec = $checkIntervalSec;
- }
- public function getCheckIntervalSec()
- {
- return $this->checkIntervalSec;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setHealthyThreshold($healthyThreshold)
- {
- $this->healthyThreshold = $healthyThreshold;
- }
- public function getHealthyThreshold()
- {
- return $this->healthyThreshold;
- }
- public function setHost($host)
- {
- $this->host = $host;
- }
- public function getHost()
- {
- return $this->host;
- }
- public function setPath($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
- public function setPort($port)
- {
- $this->port = $port;
- }
- public function getPort()
- {
- return $this->port;
- }
- public function setTimeoutSec($timeoutSec)
- {
- $this->timeoutSec = $timeoutSec;
- }
- public function getTimeoutSec()
- {
- return $this->timeoutSec;
- }
- public function setUnhealthyThreshold($unhealthyThreshold)
- {
- $this->unhealthyThreshold = $unhealthyThreshold;
- }
- public function getUnhealthyThreshold()
- {
- return $this->unhealthyThreshold;
- }
-}
-
-class Postman_Google_Service_Manager_HealthCheckModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $healthCheckUrl;
-
-
- public function setHealthCheckUrl($healthCheckUrl)
- {
- $this->healthCheckUrl = $healthCheckUrl;
- }
- public function getHealthCheckUrl()
- {
- return $this->healthCheckUrl;
- }
-}
-
-class Postman_Google_Service_Manager_LbModule extends Postman_Google_Collection
-{
- protected $collection_key = 'targetModules';
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $healthChecks;
- public $ipAddress;
- public $ipProtocol;
- public $portRange;
- public $sessionAffinity;
- public $targetModules;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setHealthChecks($healthChecks)
- {
- $this->healthChecks = $healthChecks;
- }
- public function getHealthChecks()
- {
- return $this->healthChecks;
- }
- public function setIpAddress($ipAddress)
- {
- $this->ipAddress = $ipAddress;
- }
- public function getIpAddress()
- {
- return $this->ipAddress;
- }
- public function setIpProtocol($ipProtocol)
- {
- $this->ipProtocol = $ipProtocol;
- }
- public function getIpProtocol()
- {
- return $this->ipProtocol;
- }
- public function setPortRange($portRange)
- {
- $this->portRange = $portRange;
- }
- public function getPortRange()
- {
- return $this->portRange;
- }
- public function setSessionAffinity($sessionAffinity)
- {
- $this->sessionAffinity = $sessionAffinity;
- }
- public function getSessionAffinity()
- {
- return $this->sessionAffinity;
- }
- public function setTargetModules($targetModules)
- {
- $this->targetModules = $targetModules;
- }
- public function getTargetModules()
- {
- return $this->targetModules;
- }
-}
-
-class Postman_Google_Service_Manager_LbModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $forwardingRuleUrl;
- public $targetPoolUrl;
-
-
- public function setForwardingRuleUrl($forwardingRuleUrl)
- {
- $this->forwardingRuleUrl = $forwardingRuleUrl;
- }
- public function getForwardingRuleUrl()
- {
- return $this->forwardingRuleUrl;
- }
- public function setTargetPoolUrl($targetPoolUrl)
- {
- $this->targetPoolUrl = $targetPoolUrl;
- }
- public function getTargetPoolUrl()
- {
- return $this->targetPoolUrl;
- }
-}
-
-class Postman_Google_Service_Manager_Metadata extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $fingerPrint;
- protected $itemsType = 'Postman_Google_Service_Manager_MetadataItem';
- protected $itemsDataType = 'array';
-
-
- public function setFingerPrint($fingerPrint)
- {
- $this->fingerPrint = $fingerPrint;
- }
- public function getFingerPrint()
- {
- return $this->fingerPrint;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
-}
-
-class Postman_Google_Service_Manager_MetadataItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Manager_Module extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $autoscalingModuleType = 'Postman_Google_Service_Manager_AutoscalingModule';
- protected $autoscalingModuleDataType = '';
- protected $firewallModuleType = 'Postman_Google_Service_Manager_FirewallModule';
- protected $firewallModuleDataType = '';
- protected $healthCheckModuleType = 'Postman_Google_Service_Manager_HealthCheckModule';
- protected $healthCheckModuleDataType = '';
- protected $lbModuleType = 'Postman_Google_Service_Manager_LbModule';
- protected $lbModuleDataType = '';
- protected $networkModuleType = 'Postman_Google_Service_Manager_NetworkModule';
- protected $networkModuleDataType = '';
- protected $replicaPoolModuleType = 'Postman_Google_Service_Manager_ReplicaPoolModule';
- protected $replicaPoolModuleDataType = '';
- public $type;
-
-
- public function setAutoscalingModule(Postman_Google_Service_Manager_AutoscalingModule $autoscalingModule)
- {
- $this->autoscalingModule = $autoscalingModule;
- }
- public function getAutoscalingModule()
- {
- return $this->autoscalingModule;
- }
- public function setFirewallModule(Postman_Google_Service_Manager_FirewallModule $firewallModule)
- {
- $this->firewallModule = $firewallModule;
- }
- public function getFirewallModule()
- {
- return $this->firewallModule;
- }
- public function setHealthCheckModule(Postman_Google_Service_Manager_HealthCheckModule $healthCheckModule)
- {
- $this->healthCheckModule = $healthCheckModule;
- }
- public function getHealthCheckModule()
- {
- return $this->healthCheckModule;
- }
- public function setLbModule(Postman_Google_Service_Manager_LbModule $lbModule)
- {
- $this->lbModule = $lbModule;
- }
- public function getLbModule()
- {
- return $this->lbModule;
- }
- public function setNetworkModule(Postman_Google_Service_Manager_NetworkModule $networkModule)
- {
- $this->networkModule = $networkModule;
- }
- public function getNetworkModule()
- {
- return $this->networkModule;
- }
- public function setReplicaPoolModule(Postman_Google_Service_Manager_ReplicaPoolModule $replicaPoolModule)
- {
- $this->replicaPoolModule = $replicaPoolModule;
- }
- public function getReplicaPoolModule()
- {
- return $this->replicaPoolModule;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Manager_ModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $autoscalingModuleStatusType = 'Postman_Google_Service_Manager_AutoscalingModuleStatus';
- protected $autoscalingModuleStatusDataType = '';
- protected $firewallModuleStatusType = 'Postman_Google_Service_Manager_FirewallModuleStatus';
- protected $firewallModuleStatusDataType = '';
- protected $healthCheckModuleStatusType = 'Postman_Google_Service_Manager_HealthCheckModuleStatus';
- protected $healthCheckModuleStatusDataType = '';
- protected $lbModuleStatusType = 'Postman_Google_Service_Manager_LbModuleStatus';
- protected $lbModuleStatusDataType = '';
- protected $networkModuleStatusType = 'Postman_Google_Service_Manager_NetworkModuleStatus';
- protected $networkModuleStatusDataType = '';
- protected $replicaPoolModuleStatusType = 'Postman_Google_Service_Manager_ReplicaPoolModuleStatus';
- protected $replicaPoolModuleStatusDataType = '';
- protected $stateType = 'Postman_Google_Service_Manager_DeployState';
- protected $stateDataType = '';
- public $type;
-
-
- public function setAutoscalingModuleStatus(Postman_Google_Service_Manager_AutoscalingModuleStatus $autoscalingModuleStatus)
- {
- $this->autoscalingModuleStatus = $autoscalingModuleStatus;
- }
- public function getAutoscalingModuleStatus()
- {
- return $this->autoscalingModuleStatus;
- }
- public function setFirewallModuleStatus(Postman_Google_Service_Manager_FirewallModuleStatus $firewallModuleStatus)
- {
- $this->firewallModuleStatus = $firewallModuleStatus;
- }
- public function getFirewallModuleStatus()
- {
- return $this->firewallModuleStatus;
- }
- public function setHealthCheckModuleStatus(Postman_Google_Service_Manager_HealthCheckModuleStatus $healthCheckModuleStatus)
- {
- $this->healthCheckModuleStatus = $healthCheckModuleStatus;
- }
- public function getHealthCheckModuleStatus()
- {
- return $this->healthCheckModuleStatus;
- }
- public function setLbModuleStatus(Postman_Google_Service_Manager_LbModuleStatus $lbModuleStatus)
- {
- $this->lbModuleStatus = $lbModuleStatus;
- }
- public function getLbModuleStatus()
- {
- return $this->lbModuleStatus;
- }
- public function setNetworkModuleStatus(Postman_Google_Service_Manager_NetworkModuleStatus $networkModuleStatus)
- {
- $this->networkModuleStatus = $networkModuleStatus;
- }
- public function getNetworkModuleStatus()
- {
- return $this->networkModuleStatus;
- }
- public function setReplicaPoolModuleStatus(Postman_Google_Service_Manager_ReplicaPoolModuleStatus $replicaPoolModuleStatus)
- {
- $this->replicaPoolModuleStatus = $replicaPoolModuleStatus;
- }
- public function getReplicaPoolModuleStatus()
- {
- return $this->replicaPoolModuleStatus;
- }
- public function setState(Postman_Google_Service_Manager_DeployState $state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Manager_NetworkInterface extends Postman_Google_Collection
-{
- protected $collection_key = 'accessConfigs';
- protected $internal_gapi_mappings = array(
- );
- protected $accessConfigsType = 'Postman_Google_Service_Manager_AccessConfig';
- protected $accessConfigsDataType = 'array';
- public $name;
- public $network;
- public $networkIp;
-
-
- public function setAccessConfigs($accessConfigs)
- {
- $this->accessConfigs = $accessConfigs;
- }
- public function getAccessConfigs()
- {
- return $this->accessConfigs;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setNetworkIp($networkIp)
- {
- $this->networkIp = $networkIp;
- }
- public function getNetworkIp()
- {
- return $this->networkIp;
- }
-}
-
-class Postman_Google_Service_Manager_NetworkModule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "iPv4Range" => "IPv4Range",
- );
- public $iPv4Range;
- public $description;
- public $gatewayIPv4;
-
-
- public function setIPv4Range($iPv4Range)
- {
- $this->iPv4Range = $iPv4Range;
- }
- public function getIPv4Range()
- {
- return $this->iPv4Range;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setGatewayIPv4($gatewayIPv4)
- {
- $this->gatewayIPv4 = $gatewayIPv4;
- }
- public function getGatewayIPv4()
- {
- return $this->gatewayIPv4;
- }
-}
-
-class Postman_Google_Service_Manager_NetworkModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $networkUrl;
-
-
- public function setNetworkUrl($networkUrl)
- {
- $this->networkUrl = $networkUrl;
- }
- public function getNetworkUrl()
- {
- return $this->networkUrl;
- }
-}
-
-class Postman_Google_Service_Manager_NewDisk extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $attachmentType = 'Postman_Google_Service_Manager_DiskAttachment';
- protected $attachmentDataType = '';
- public $autoDelete;
- public $boot;
- protected $initializeParamsType = 'Postman_Google_Service_Manager_NewDiskInitializeParams';
- protected $initializeParamsDataType = '';
-
-
- public function setAttachment(Postman_Google_Service_Manager_DiskAttachment $attachment)
- {
- $this->attachment = $attachment;
- }
- public function getAttachment()
- {
- return $this->attachment;
- }
- public function setAutoDelete($autoDelete)
- {
- $this->autoDelete = $autoDelete;
- }
- public function getAutoDelete()
- {
- return $this->autoDelete;
- }
- public function setBoot($boot)
- {
- $this->boot = $boot;
- }
- public function getBoot()
- {
- return $this->boot;
- }
- public function setInitializeParams(Postman_Google_Service_Manager_NewDiskInitializeParams $initializeParams)
- {
- $this->initializeParams = $initializeParams;
- }
- public function getInitializeParams()
- {
- return $this->initializeParams;
- }
-}
-
-class Postman_Google_Service_Manager_NewDiskInitializeParams extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $diskSizeGb;
- public $diskType;
- public $sourceImage;
-
-
- public function setDiskSizeGb($diskSizeGb)
- {
- $this->diskSizeGb = $diskSizeGb;
- }
- public function getDiskSizeGb()
- {
- return $this->diskSizeGb;
- }
- public function setDiskType($diskType)
- {
- $this->diskType = $diskType;
- }
- public function getDiskType()
- {
- return $this->diskType;
- }
- public function setSourceImage($sourceImage)
- {
- $this->sourceImage = $sourceImage;
- }
- public function getSourceImage()
- {
- return $this->sourceImage;
- }
-}
-
-class Postman_Google_Service_Manager_ParamOverride extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $path;
- public $value;
-
-
- public function setPath($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Manager_ReplicaPoolModule extends Postman_Google_Collection
-{
- protected $collection_key = 'healthChecks';
- protected $internal_gapi_mappings = array(
- );
- protected $envVariablesType = 'Postman_Google_Service_Manager_EnvVariable';
- protected $envVariablesDataType = 'map';
- public $healthChecks;
- public $numReplicas;
- protected $replicaPoolParamsType = 'Postman_Google_Service_Manager_ReplicaPoolParams';
- protected $replicaPoolParamsDataType = '';
- public $resourceView;
-
-
- public function setEnvVariables($envVariables)
- {
- $this->envVariables = $envVariables;
- }
- public function getEnvVariables()
- {
- return $this->envVariables;
- }
- public function setHealthChecks($healthChecks)
- {
- $this->healthChecks = $healthChecks;
- }
- public function getHealthChecks()
- {
- return $this->healthChecks;
- }
- public function setNumReplicas($numReplicas)
- {
- $this->numReplicas = $numReplicas;
- }
- public function getNumReplicas()
- {
- return $this->numReplicas;
- }
- public function setReplicaPoolParams(Postman_Google_Service_Manager_ReplicaPoolParams $replicaPoolParams)
- {
- $this->replicaPoolParams = $replicaPoolParams;
- }
- public function getReplicaPoolParams()
- {
- return $this->replicaPoolParams;
- }
- public function setResourceView($resourceView)
- {
- $this->resourceView = $resourceView;
- }
- public function getResourceView()
- {
- return $this->resourceView;
- }
-}
-
-class Postman_Google_Service_Manager_ReplicaPoolModuleEnvVariables extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Manager_ReplicaPoolModuleStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $replicaPoolUrl;
- public $resourceViewUrl;
-
-
- public function setReplicaPoolUrl($replicaPoolUrl)
- {
- $this->replicaPoolUrl = $replicaPoolUrl;
- }
- public function getReplicaPoolUrl()
- {
- return $this->replicaPoolUrl;
- }
- public function setResourceViewUrl($resourceViewUrl)
- {
- $this->resourceViewUrl = $resourceViewUrl;
- }
- public function getResourceViewUrl()
- {
- return $this->resourceViewUrl;
- }
-}
-
-class Postman_Google_Service_Manager_ReplicaPoolParams extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $v1beta1Type = 'Postman_Google_Service_Manager_ReplicaPoolParamsV1Beta1';
- protected $v1beta1DataType = '';
-
-
- public function setV1beta1(Postman_Google_Service_Manager_ReplicaPoolParamsV1Beta1 $v1beta1)
- {
- $this->v1beta1 = $v1beta1;
- }
- public function getV1beta1()
- {
- return $this->v1beta1;
- }
-}
-
-class Postman_Google_Service_Manager_ReplicaPoolParamsV1Beta1 extends Postman_Google_Collection
-{
- protected $collection_key = 'serviceAccounts';
- protected $internal_gapi_mappings = array(
- );
- public $autoRestart;
- public $baseInstanceName;
- public $canIpForward;
- public $description;
- protected $disksToAttachType = 'Postman_Google_Service_Manager_ExistingDisk';
- protected $disksToAttachDataType = 'array';
- protected $disksToCreateType = 'Postman_Google_Service_Manager_NewDisk';
- protected $disksToCreateDataType = 'array';
- public $initAction;
- public $machineType;
- protected $metadataType = 'Postman_Google_Service_Manager_Metadata';
- protected $metadataDataType = '';
- protected $networkInterfacesType = 'Postman_Google_Service_Manager_NetworkInterface';
- protected $networkInterfacesDataType = 'array';
- public $onHostMaintenance;
- protected $serviceAccountsType = 'Postman_Google_Service_Manager_ServiceAccount';
- protected $serviceAccountsDataType = 'array';
- protected $tagsType = 'Postman_Google_Service_Manager_Tag';
- protected $tagsDataType = '';
- public $zone;
-
-
- public function setAutoRestart($autoRestart)
- {
- $this->autoRestart = $autoRestart;
- }
- public function getAutoRestart()
- {
- return $this->autoRestart;
- }
- public function setBaseInstanceName($baseInstanceName)
- {
- $this->baseInstanceName = $baseInstanceName;
- }
- public function getBaseInstanceName()
- {
- return $this->baseInstanceName;
- }
- public function setCanIpForward($canIpForward)
- {
- $this->canIpForward = $canIpForward;
- }
- public function getCanIpForward()
- {
- return $this->canIpForward;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDisksToAttach($disksToAttach)
- {
- $this->disksToAttach = $disksToAttach;
- }
- public function getDisksToAttach()
- {
- return $this->disksToAttach;
- }
- public function setDisksToCreate($disksToCreate)
- {
- $this->disksToCreate = $disksToCreate;
- }
- public function getDisksToCreate()
- {
- return $this->disksToCreate;
- }
- public function setInitAction($initAction)
- {
- $this->initAction = $initAction;
- }
- public function getInitAction()
- {
- return $this->initAction;
- }
- public function setMachineType($machineType)
- {
- $this->machineType = $machineType;
- }
- public function getMachineType()
- {
- return $this->machineType;
- }
- public function setMetadata(Postman_Google_Service_Manager_Metadata $metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setNetworkInterfaces($networkInterfaces)
- {
- $this->networkInterfaces = $networkInterfaces;
- }
- public function getNetworkInterfaces()
- {
- return $this->networkInterfaces;
- }
- public function setOnHostMaintenance($onHostMaintenance)
- {
- $this->onHostMaintenance = $onHostMaintenance;
- }
- public function getOnHostMaintenance()
- {
- return $this->onHostMaintenance;
- }
- public function setServiceAccounts($serviceAccounts)
- {
- $this->serviceAccounts = $serviceAccounts;
- }
- public function getServiceAccounts()
- {
- return $this->serviceAccounts;
- }
- public function setTags(Postman_Google_Service_Manager_Tag $tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Manager_ServiceAccount extends Postman_Google_Collection
-{
- protected $collection_key = 'scopes';
- protected $internal_gapi_mappings = array(
- );
- public $email;
- public $scopes;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setScopes($scopes)
- {
- $this->scopes = $scopes;
- }
- public function getScopes()
- {
- return $this->scopes;
- }
-}
-
-class Postman_Google_Service_Manager_Tag extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $fingerPrint;
- public $items;
-
-
- public function setFingerPrint($fingerPrint)
- {
- $this->fingerPrint = $fingerPrint;
- }
- public function getFingerPrint()
- {
- return $this->fingerPrint;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
-}
-
-class Postman_Google_Service_Manager_Template extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $actionsType = 'Postman_Google_Service_Manager_Action';
- protected $actionsDataType = 'map';
- public $description;
- protected $modulesType = 'Postman_Google_Service_Manager_Module';
- protected $modulesDataType = 'map';
- public $name;
-
-
- public function setActions($actions)
- {
- $this->actions = $actions;
- }
- public function getActions()
- {
- return $this->actions;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setModules($modules)
- {
- $this->modules = $modules;
- }
- public function getModules()
- {
- return $this->modules;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Manager_TemplateActions extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Manager_TemplateModules extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Manager_TemplatesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_Manager_Template';
- protected $resourcesDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/MapsEngine.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/MapsEngine.php
deleted file mode 100644
index 0f9cb69..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/MapsEngine.php
+++ /dev/null
@@ -1,6420 +0,0 @@
-
- * The Google Maps Engine API allows developers to store and query geospatial
- * vector and raster data.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_MapsEngine extends Postman_Google_Service -{ - /** View and manage your Google My Maps data. */ - const MAPSENGINE = - "https://www.googleapis.com/auth/mapsengine"; - /** View your Google My Maps data. */ - const MAPSENGINE_READONLY = - "https://www.googleapis.com/auth/mapsengine.readonly"; - - public $assets; - public $assets_parents; - public $assets_permissions; - public $layers; - public $layers_parents; - public $layers_permissions; - public $maps; - public $maps_permissions; - public $projects; - public $projects_icons; - public $rasterCollections; - public $rasterCollections_parents; - public $rasterCollections_permissions; - public $rasterCollections_rasters; - public $rasters; - public $rasters_files; - public $rasters_parents; - public $rasters_permissions; - public $tables; - public $tables_features; - public $tables_files; - public $tables_parents; - public $tables_permissions; - - - /** - * Constructs the internal representation of the MapsEngine service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'mapsengine/v1/'; - $this->version = 'v1'; - $this->serviceName = 'mapsengine'; - - $this->assets = new Postman_Google_Service_MapsEngine_Assets_Resource( - $this, - $this->serviceName, - 'assets', - array( - 'methods' => array( - 'get' => array( - 'path' => 'assets/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'assets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->assets_parents = new Postman_Google_Service_MapsEngine_AssetsParents_Resource( - $this, - $this->serviceName, - 'parents', - array( - 'methods' => array( - 'list' => array( - 'path' => 'assets/{id}/parents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->assets_permissions = new Postman_Google_Service_MapsEngine_AssetsPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'assets/{id}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->layers = new Postman_Google_Service_MapsEngine_Layers_Resource( - $this, - $this->serviceName, - 'layers', - array( - 'methods' => array( - 'cancelProcessing' => array( - 'path' => 'layers/{id}/cancelProcessing', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'layers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'process' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'layers/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'layers/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getPublished' => array( - 'path' => 'layers/{id}/published', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'layers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'processingStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listPublished' => array( - 'path' => 'layers/published', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'layers/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'process' => array( - 'path' => 'layers/{id}/process', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'publish' => array( - 'path' => 'layers/{id}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'unpublish' => array( - 'path' => 'layers/{id}/unpublish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->layers_parents = new Postman_Google_Service_MapsEngine_LayersParents_Resource( - $this, - $this->serviceName, - 'parents', - array( - 'methods' => array( - 'list' => array( - 'path' => 'layers/{id}/parents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->layers_permissions = new Postman_Google_Service_MapsEngine_LayersPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'layers/{id}/permissions/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'layers/{id}/permissions/batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'layers/{id}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->maps = new Postman_Google_Service_MapsEngine_Maps_Resource( - $this, - $this->serviceName, - 'maps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'maps', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'maps/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'maps/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getPublished' => array( - 'path' => 'maps/{id}/published', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'maps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'processingStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listPublished' => array( - 'path' => 'maps/published', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'maps/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'publish' => array( - 'path' => 'maps/{id}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'unpublish' => array( - 'path' => 'maps/{id}/unpublish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->maps_permissions = new Postman_Google_Service_MapsEngine_MapsPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'maps/{id}/permissions/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'maps/{id}/permissions/batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'maps/{id}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects = new Postman_Google_Service_MapsEngine_Projects_Resource( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'list' => array( - 'path' => 'projects', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->projects_icons = new Postman_Google_Service_MapsEngine_ProjectsIcons_Resource( - $this, - $this->serviceName, - 'icons', - array( - 'methods' => array( - 'create' => array( - 'path' => 'projects/{projectId}/icons', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/icons/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/icons', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->rasterCollections = new Postman_Google_Service_MapsEngine_RasterCollections_Resource( - $this, - $this->serviceName, - 'rasterCollections', - array( - 'methods' => array( - 'cancelProcessing' => array( - 'path' => 'rasterCollections/{id}/cancelProcessing', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'rasterCollections', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'rasterCollections/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'rasterCollections/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'rasterCollections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'processingStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'rasterCollections/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'process' => array( - 'path' => 'rasterCollections/{id}/process', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->rasterCollections_parents = new Postman_Google_Service_MapsEngine_RasterCollectionsParents_Resource( - $this, - $this->serviceName, - 'parents', - array( - 'methods' => array( - 'list' => array( - 'path' => 'rasterCollections/{id}/parents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->rasterCollections_permissions = new Postman_Google_Service_MapsEngine_RasterCollectionsPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'rasterCollections/{id}/permissions/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'rasterCollections/{id}/permissions/batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'rasterCollections/{id}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->rasterCollections_rasters = new Postman_Google_Service_MapsEngine_RasterCollectionsRasters_Resource( - $this, - $this->serviceName, - 'rasters', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'rasterCollections/{id}/rasters/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchInsert' => array( - 'path' => 'rasterCollections/{id}/rasters/batchInsert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'rasterCollections/{id}/rasters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->rasters = new Postman_Google_Service_MapsEngine_Rasters_Resource( - $this, - $this->serviceName, - 'rasters', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'rasters/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'rasters/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'rasters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'processingStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'rasters/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'process' => array( - 'path' => 'rasters/{id}/process', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => 'rasters/upload', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->rasters_files = new Postman_Google_Service_MapsEngine_RastersFiles_Resource( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'rasters/{id}/files', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filename' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->rasters_parents = new Postman_Google_Service_MapsEngine_RastersParents_Resource( - $this, - $this->serviceName, - 'parents', - array( - 'methods' => array( - 'list' => array( - 'path' => 'rasters/{id}/parents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->rasters_permissions = new Postman_Google_Service_MapsEngine_RastersPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'rasters/{id}/permissions/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'rasters/{id}/permissions/batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'rasters/{id}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tables = new Postman_Google_Service_MapsEngine_Tables_Resource( - $this, - $this->serviceName, - 'tables', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tables', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'tables/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'tables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'modifiedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'processingStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tags' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'search' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creatorEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'bbox' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'tables/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'process' => array( - 'path' => 'tables/{id}/process', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => 'tables/upload', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->tables_features = new Postman_Google_Service_MapsEngine_TablesFeatures_Resource( - $this, - $this->serviceName, - 'features', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'tables/{id}/features/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchInsert' => array( - 'path' => 'tables/{id}/features/batchInsert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchPatch' => array( - 'path' => 'tables/{id}/features/batchPatch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/features/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'select' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'tables/{id}/features', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'intersects' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'version' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'include' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'where' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'select' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->tables_files = new Postman_Google_Service_MapsEngine_TablesFiles_Resource( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'tables/{id}/files', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filename' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tables_parents = new Postman_Google_Service_MapsEngine_TablesParents_Resource( - $this, - $this->serviceName, - 'parents', - array( - 'methods' => array( - 'list' => array( - 'path' => 'tables/{id}/parents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->tables_permissions = new Postman_Google_Service_MapsEngine_TablesPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'tables/{id}/permissions/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'tables/{id}/permissions/batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{id}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "assets" collection of methods. - * Typical usage is: - *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $assets = $mapsengineService->assets;
- *
- */
-class Postman_Google_Service_MapsEngine_Assets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return metadata for a particular asset. (assets.get)
- *
- * @param string $id The ID of the asset.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Asset
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Asset");
- }
-
- /**
- * Return all assets readable by the current user. (assets.listAssets)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @opt_param string type A comma separated list of asset types. Returned assets
- * will have one of the types from the provided list. Supported values are
- * 'map', 'layer', 'rasterCollection' and 'table'.
- * @return Postman_Google_Service_MapsEngine_AssetsListResponse
- */
- public function listAssets($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_AssetsListResponse");
- }
-}
-
-/**
- * The "parents" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $parents = $mapsengineService->parents;
- *
- */
-class Postman_Google_Service_MapsEngine_AssetsParents_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all parent ids of the specified asset. (parents.listAssetsParents)
- *
- * @param string $id The ID of the asset whose parents will be listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 50.
- * @return Postman_Google_Service_MapsEngine_ParentsListResponse
- */
- public function listAssetsParents($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_ParentsListResponse");
- }
-}
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $permissions = $mapsengineService->permissions;
- *
- */
-class Postman_Google_Service_MapsEngine_AssetsPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all of the permissions for the specified asset.
- * (permissions.listAssetsPermissions)
- *
- * @param string $id The ID of the asset whose permissions will be listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsListResponse
- */
- public function listAssetsPermissions($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_PermissionsListResponse");
- }
-}
-
-/**
- * The "layers" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $layers = $mapsengineService->layers;
- *
- */
-class Postman_Google_Service_MapsEngine_Layers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Cancel processing on a layer asset. (layers.cancelProcessing)
- *
- * @param string $id The ID of the layer.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProcessResponse
- */
- public function cancelProcessing($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('cancelProcessing', array($params), "Postman_Google_Service_MapsEngine_ProcessResponse");
- }
-
- /**
- * Create a layer asset. (layers.create)
- *
- * @param Postman_Google_Layer $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool process Whether to queue the created layer for processing.
- * @return Postman_Google_Service_MapsEngine_Layer
- */
- public function create(Postman_Google_Service_MapsEngine_Layer $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_MapsEngine_Layer");
- }
-
- /**
- * Delete a layer. (layers.delete)
- *
- * @param string $id The ID of the layer. Only the layer creator or project
- * owner are permitted to delete. If the layer is published, or included in a
- * map, the request will fail. Unpublish the layer, and remove it from all maps
- * prior to deleting.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Return metadata for a particular layer. (layers.get)
- *
- * @param string $id The ID of the layer.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string version Deprecated: The version parameter indicates which
- * version of the layer should be returned. When version is set to published,
- * the published version of the layer will be returned. Please use the
- * layers.getPublished endpoint instead.
- * @return Postman_Google_Service_MapsEngine_Layer
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Layer");
- }
-
- /**
- * Return the published metadata for a particular layer. (layers.getPublished)
- *
- * @param string $id The ID of the layer.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PublishedLayer
- */
- public function getPublished($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('getPublished', array($params), "Postman_Google_Service_MapsEngine_PublishedLayer");
- }
-
- /**
- * Return all layers readable by the current user. (layers.listLayers)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string processingStatus
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @return Postman_Google_Service_MapsEngine_LayersListResponse
- */
- public function listLayers($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_LayersListResponse");
- }
-
- /**
- * Return all published layers readable by the current user.
- * (layers.listPublished)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @return Postman_Google_Service_MapsEngine_PublishedLayersListResponse
- */
- public function listPublished($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('listPublished', array($params), "Postman_Google_Service_MapsEngine_PublishedLayersListResponse");
- }
-
- /**
- * Mutate a layer asset. (layers.patch)
- *
- * @param string $id The ID of the layer.
- * @param Postman_Google_Layer $postBody
- * @param array $optParams Optional parameters.
- */
- public function patch($id, Postman_Google_Service_MapsEngine_Layer $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params));
- }
-
- /**
- * Process a layer asset. (layers.process)
- *
- * @param string $id The ID of the layer.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProcessResponse
- */
- public function process($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('process', array($params), "Postman_Google_Service_MapsEngine_ProcessResponse");
- }
-
- /**
- * Publish a layer asset. (layers.publish)
- *
- * @param string $id The ID of the layer.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool force If set to true, the API will allow publication of the
- * layer even if it's out of date. If not true, you'll need to reprocess any
- * out-of-date layer before publishing.
- * @return Postman_Google_Service_MapsEngine_PublishResponse
- */
- public function publish($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('publish', array($params), "Postman_Google_Service_MapsEngine_PublishResponse");
- }
-
- /**
- * Unpublish a layer asset. (layers.unpublish)
- *
- * @param string $id The ID of the layer.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PublishResponse
- */
- public function unpublish($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('unpublish', array($params), "Postman_Google_Service_MapsEngine_PublishResponse");
- }
-}
-
-/**
- * The "parents" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $parents = $mapsengineService->parents;
- *
- */
-class Postman_Google_Service_MapsEngine_LayersParents_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all parent ids of the specified layer. (parents.listLayersParents)
- *
- * @param string $id The ID of the layer whose parents will be listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 50.
- * @return Postman_Google_Service_MapsEngine_ParentsListResponse
- */
- public function listLayersParents($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_ParentsListResponse");
- }
-}
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $permissions = $mapsengineService->permissions;
- *
- */
-class Postman_Google_Service_MapsEngine_LayersPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove permission entries from an already existing asset.
- * (permissions.batchDelete)
- *
- * @param string $id The ID of the asset from which permissions will be removed.
- * @param Postman_Google_PermissionsBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
- }
-
- /**
- * Add or update permission entries to an already existing asset.
- *
- * An asset can hold up to 20 different permission entries. Each batchInsert
- * request is atomic. (permissions.batchUpdate)
- *
- * @param string $id The ID of the asset to which permissions will be added.
- * @param Postman_Google_PermissionsBatchUpdateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse
- */
- public function batchUpdate($id, Postman_Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchUpdate', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
- }
-
- /**
- * Return all of the permissions for the specified asset.
- * (permissions.listLayersPermissions)
- *
- * @param string $id The ID of the asset whose permissions will be listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsListResponse
- */
- public function listLayersPermissions($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_PermissionsListResponse");
- }
-}
-
-/**
- * The "maps" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $maps = $mapsengineService->maps;
- *
- */
-class Postman_Google_Service_MapsEngine_Maps_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Create a map asset. (maps.create)
- *
- * @param Postman_Google_Map $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Map
- */
- public function create(Postman_Google_Service_MapsEngine_Map $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_MapsEngine_Map");
- }
-
- /**
- * Delete a map. (maps.delete)
- *
- * @param string $id The ID of the map. Only the map creator or project owner
- * are permitted to delete. If the map is published the request will fail.
- * Unpublish the map prior to deleting.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Return metadata for a particular map. (maps.get)
- *
- * @param string $id The ID of the map.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string version Deprecated: The version parameter indicates which
- * version of the map should be returned. When version is set to published, the
- * published version of the map will be returned. Please use the
- * maps.getPublished endpoint instead.
- * @return Postman_Google_Service_MapsEngine_Map
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Map");
- }
-
- /**
- * Return the published metadata for a particular map. (maps.getPublished)
- *
- * @param string $id The ID of the map.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PublishedMap
- */
- public function getPublished($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('getPublished', array($params), "Postman_Google_Service_MapsEngine_PublishedMap");
- }
-
- /**
- * Return all maps readable by the current user. (maps.listMaps)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string processingStatus
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @return Postman_Google_Service_MapsEngine_MapsListResponse
- */
- public function listMaps($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_MapsListResponse");
- }
-
- /**
- * Return all published maps readable by the current user. (maps.listPublished)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @return Postman_Google_Service_MapsEngine_PublishedMapsListResponse
- */
- public function listPublished($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('listPublished', array($params), "Postman_Google_Service_MapsEngine_PublishedMapsListResponse");
- }
-
- /**
- * Mutate a map asset. (maps.patch)
- *
- * @param string $id The ID of the map.
- * @param Postman_Google_Map $postBody
- * @param array $optParams Optional parameters.
- */
- public function patch($id, Postman_Google_Service_MapsEngine_Map $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params));
- }
-
- /**
- * Publish a map asset. (maps.publish)
- *
- * @param string $id The ID of the map.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool force If set to true, the API will allow publication of the
- * map even if it's out of date. If false, the map must have a processingStatus
- * of complete before publishing.
- * @return Postman_Google_Service_MapsEngine_PublishResponse
- */
- public function publish($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('publish', array($params), "Postman_Google_Service_MapsEngine_PublishResponse");
- }
-
- /**
- * Unpublish a map asset. (maps.unpublish)
- *
- * @param string $id The ID of the map.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PublishResponse
- */
- public function unpublish($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('unpublish', array($params), "Postman_Google_Service_MapsEngine_PublishResponse");
- }
-}
-
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $permissions = $mapsengineService->permissions;
- *
- */
-class Postman_Google_Service_MapsEngine_MapsPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove permission entries from an already existing asset.
- * (permissions.batchDelete)
- *
- * @param string $id The ID of the asset from which permissions will be removed.
- * @param Postman_Google_PermissionsBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
- }
-
- /**
- * Add or update permission entries to an already existing asset.
- *
- * An asset can hold up to 20 different permission entries. Each batchInsert
- * request is atomic. (permissions.batchUpdate)
- *
- * @param string $id The ID of the asset to which permissions will be added.
- * @param Postman_Google_PermissionsBatchUpdateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse
- */
- public function batchUpdate($id, Postman_Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchUpdate', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
- }
-
- /**
- * Return all of the permissions for the specified asset.
- * (permissions.listMapsPermissions)
- *
- * @param string $id The ID of the asset whose permissions will be listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsListResponse
- */
- public function listMapsPermissions($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_PermissionsListResponse");
- }
-}
-
-/**
- * The "projects" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $projects = $mapsengineService->projects;
- *
- */
-class Postman_Google_Service_MapsEngine_Projects_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all projects readable by the current user. (projects.listProjects)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProjectsListResponse
- */
- public function listProjects($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_ProjectsListResponse");
- }
-}
-
-/**
- * The "icons" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $icons = $mapsengineService->icons;
- *
- */
-class Postman_Google_Service_MapsEngine_ProjectsIcons_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Create an icon. (icons.create)
- *
- * @param string $projectId The ID of the project.
- * @param Postman_Google_Icon $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Icon
- */
- public function create($projectId, Postman_Google_Service_MapsEngine_Icon $postBody, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_MapsEngine_Icon");
- }
-
- /**
- * Return an icon or its associated metadata (icons.get)
- *
- * @param string $projectId The ID of the project.
- * @param string $id The ID of the icon.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Icon
- */
- public function get($projectId, $id, $optParams = array())
- {
- $params = array('projectId' => $projectId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Icon");
- }
-
- /**
- * Return all icons in the current project (icons.listProjectsIcons)
- *
- * @param string $projectId The ID of the project.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 50.
- * @return Postman_Google_Service_MapsEngine_IconsListResponse
- */
- public function listProjectsIcons($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_IconsListResponse");
- }
-}
-
-/**
- * The "rasterCollections" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $rasterCollections = $mapsengineService->rasterCollections;
- *
- */
-class Postman_Google_Service_MapsEngine_RasterCollections_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Cancel processing on a raster collection asset.
- * (rasterCollections.cancelProcessing)
- *
- * @param string $id The ID of the raster collection.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProcessResponse
- */
- public function cancelProcessing($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('cancelProcessing', array($params), "Postman_Google_Service_MapsEngine_ProcessResponse");
- }
-
- /**
- * Create a raster collection asset. (rasterCollections.create)
- *
- * @param Postman_Google_RasterCollection $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_RasterCollection
- */
- public function create(Postman_Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_MapsEngine_RasterCollection");
- }
-
- /**
- * Delete a raster collection. (rasterCollections.delete)
- *
- * @param string $id The ID of the raster collection. Only the raster collection
- * creator or project owner are permitted to delete. If the rastor collection is
- * included in a layer, the request will fail. Remove the raster collection from
- * all layers prior to deleting.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Return metadata for a particular raster collection. (rasterCollections.get)
- *
- * @param string $id The ID of the raster collection.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_RasterCollection
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_RasterCollection");
- }
-
- /**
- * Return all raster collections readable by the current user.
- * (rasterCollections.listRasterCollections)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string processingStatus
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @return Postman_Google_Service_MapsEngine_RasterCollectionsListResponse
- */
- public function listRasterCollections($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_RasterCollectionsListResponse");
- }
-
- /**
- * Mutate a raster collection asset. (rasterCollections.patch)
- *
- * @param string $id The ID of the raster collection.
- * @param Postman_Google_RasterCollection $postBody
- * @param array $optParams Optional parameters.
- */
- public function patch($id, Postman_Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params));
- }
-
- /**
- * Process a raster collection asset. (rasterCollections.process)
- *
- * @param string $id The ID of the raster collection.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProcessResponse
- */
- public function process($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('process', array($params), "Postman_Google_Service_MapsEngine_ProcessResponse");
- }
-}
-
-/**
- * The "parents" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $parents = $mapsengineService->parents;
- *
- */
-class Postman_Google_Service_MapsEngine_RasterCollectionsParents_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all parent ids of the specified raster collection.
- * (parents.listRasterCollectionsParents)
- *
- * @param string $id The ID of the raster collection whose parents will be
- * listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 50.
- * @return Postman_Google_Service_MapsEngine_ParentsListResponse
- */
- public function listRasterCollectionsParents($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_ParentsListResponse");
- }
-}
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $permissions = $mapsengineService->permissions;
- *
- */
-class Postman_Google_Service_MapsEngine_RasterCollectionsPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove permission entries from an already existing asset.
- * (permissions.batchDelete)
- *
- * @param string $id The ID of the asset from which permissions will be removed.
- * @param Postman_Google_PermissionsBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
- }
-
- /**
- * Add or update permission entries to an already existing asset.
- *
- * An asset can hold up to 20 different permission entries. Each batchInsert
- * request is atomic. (permissions.batchUpdate)
- *
- * @param string $id The ID of the asset to which permissions will be added.
- * @param Postman_Google_PermissionsBatchUpdateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse
- */
- public function batchUpdate($id, Postman_Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchUpdate', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
- }
-
- /**
- * Return all of the permissions for the specified asset.
- * (permissions.listRasterCollectionsPermissions)
- *
- * @param string $id The ID of the asset whose permissions will be listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsListResponse
- */
- public function listRasterCollectionsPermissions($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_PermissionsListResponse");
- }
-}
-/**
- * The "rasters" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $rasters = $mapsengineService->rasters;
- *
- */
-class Postman_Google_Service_MapsEngine_RasterCollectionsRasters_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove rasters from an existing raster collection.
- *
- * Up to 50 rasters can be included in a single batchDelete request. Each
- * batchDelete request is atomic. (rasters.batchDelete)
- *
- * @param string $id The ID of the raster collection to which these rasters
- * belong.
- * @param Postman_Google_RasterCollectionsRasterBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params), "Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse");
- }
-
- /**
- * Add rasters to an existing raster collection. Rasters must be successfully
- * processed in order to be added to a raster collection.
- *
- * Up to 50 rasters can be included in a single batchInsert request. Each
- * batchInsert request is atomic. (rasters.batchInsert)
- *
- * @param string $id The ID of the raster collection to which these rasters
- * belong.
- * @param Postman_Google_RasterCollectionsRastersBatchInsertRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse
- */
- public function batchInsert($id, Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchInsert', array($params), "Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse");
- }
-
- /**
- * Return all rasters within a raster collection.
- * (rasters.listRasterCollectionsRasters)
- *
- * @param string $id The ID of the raster collection to which these rasters
- * belong.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @return Postman_Google_Service_MapsEngine_RasterCollectionsRastersListResponse
- */
- public function listRasterCollectionsRasters($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_RasterCollectionsRastersListResponse");
- }
-}
-
-/**
- * The "rasters" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $rasters = $mapsengineService->rasters;
- *
- */
-class Postman_Google_Service_MapsEngine_Rasters_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a raster. (rasters.delete)
- *
- * @param string $id The ID of the raster. Only the raster creator or project
- * owner are permitted to delete. If the raster is included in a layer or
- * mosaic, the request will fail. Remove it from all parents prior to deleting.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Return metadata for a single raster. (rasters.get)
- *
- * @param string $id The ID of the raster.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Raster
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Raster");
- }
-
- /**
- * Return all rasters readable by the current user. (rasters.listRasters)
- *
- * @param string $projectId The ID of a Maps Engine project, used to filter the
- * response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string processingStatus
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @return Postman_Google_Service_MapsEngine_RastersListResponse
- */
- public function listRasters($projectId, $optParams = array())
- {
- $params = array('projectId' => $projectId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_RastersListResponse");
- }
-
- /**
- * Mutate a raster asset. (rasters.patch)
- *
- * @param string $id The ID of the raster.
- * @param Postman_Google_Raster $postBody
- * @param array $optParams Optional parameters.
- */
- public function patch($id, Postman_Google_Service_MapsEngine_Raster $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params));
- }
-
- /**
- * Process a raster asset. (rasters.process)
- *
- * @param string $id The ID of the raster.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProcessResponse
- */
- public function process($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('process', array($params), "Postman_Google_Service_MapsEngine_ProcessResponse");
- }
-
- /**
- * Create a skeleton raster asset for upload. (rasters.upload)
- *
- * @param Postman_Google_Raster $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Raster
- */
- public function upload(Postman_Google_Service_MapsEngine_Raster $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('upload', array($params), "Postman_Google_Service_MapsEngine_Raster");
- }
-}
-
-/**
- * The "files" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $files = $mapsengineService->files;
- *
- */
-class Postman_Google_Service_MapsEngine_RastersFiles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Upload a file to a raster asset. (files.insert)
- *
- * @param string $id The ID of the raster asset.
- * @param string $filename The file name of this uploaded file.
- * @param array $optParams Optional parameters.
- */
- public function insert($id, $filename, $optParams = array())
- {
- $params = array('id' => $id, 'filename' => $filename);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params));
- }
-}
-/**
- * The "parents" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $parents = $mapsengineService->parents;
- *
- */
-class Postman_Google_Service_MapsEngine_RastersParents_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all parent ids of the specified rasters. (parents.listRastersParents)
- *
- * @param string $id The ID of the rasters whose parents will be listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 50.
- * @return Postman_Google_Service_MapsEngine_ParentsListResponse
- */
- public function listRastersParents($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_ParentsListResponse");
- }
-}
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $permissions = $mapsengineService->permissions;
- *
- */
-class Postman_Google_Service_MapsEngine_RastersPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove permission entries from an already existing asset.
- * (permissions.batchDelete)
- *
- * @param string $id The ID of the asset from which permissions will be removed.
- * @param Postman_Google_PermissionsBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
- }
-
- /**
- * Add or update permission entries to an already existing asset.
- *
- * An asset can hold up to 20 different permission entries. Each batchInsert
- * request is atomic. (permissions.batchUpdate)
- *
- * @param string $id The ID of the asset to which permissions will be added.
- * @param Postman_Google_PermissionsBatchUpdateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse
- */
- public function batchUpdate($id, Postman_Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchUpdate', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
- }
-
- /**
- * Return all of the permissions for the specified asset.
- * (permissions.listRastersPermissions)
- *
- * @param string $id The ID of the asset whose permissions will be listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsListResponse
- */
- public function listRastersPermissions($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_PermissionsListResponse");
- }
-}
-
-/**
- * The "tables" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $tables = $mapsengineService->tables;
- *
- */
-class Postman_Google_Service_MapsEngine_Tables_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Create a table asset. (tables.create)
- *
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Table
- */
- public function create(Postman_Google_Service_MapsEngine_Table $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_MapsEngine_Table");
- }
-
- /**
- * Delete a table. (tables.delete)
- *
- * @param string $id The ID of the table. Only the table creator or project
- * owner are permitted to delete. If the table is included in a layer, the
- * request will fail. Remove it from all layers prior to deleting.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Return metadata for a particular table, including the schema. (tables.get)
- *
- * @param string $id The ID of the table.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string version
- * @return Postman_Google_Service_MapsEngine_Table
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Table");
- }
-
- /**
- * Return all tables readable by the current user. (tables.listTables)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string modifiedAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or after
- * this time.
- * @opt_param string createdAfter An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or after
- * this time.
- * @opt_param string processingStatus
- * @opt_param string projectId The ID of a Maps Engine project, used to filter
- * the response. To list all available projects with their IDs, send a Projects:
- * list request. You can also find your project ID as the value of the
- * DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
- * @opt_param string tags A comma separated list of tags. Returned assets will
- * contain all the tags from the list.
- * @opt_param string search An unstructured search string used to filter the set
- * of results based on asset metadata.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 100.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string creatorEmail An email address representing a user. Returned
- * assets that have been created by the user associated with the provided email
- * address.
- * @opt_param string bbox A bounding box, expressed as "west,south,east,north".
- * If set, only assets which intersect this bounding box will be returned.
- * @opt_param string modifiedBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been modified at or before
- * this time.
- * @opt_param string createdBefore An RFC 3339 formatted date-time value (e.g.
- * 1970-01-01T00:00:00Z). Returned assets will have been created at or before
- * this time.
- * @opt_param string role The role parameter indicates that the response should
- * only contain assets where the current user has the specified level of access.
- * @return Postman_Google_Service_MapsEngine_TablesListResponse
- */
- public function listTables($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_TablesListResponse");
- }
-
- /**
- * Mutate a table asset. (tables.patch)
- *
- * @param string $id The ID of the table.
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- */
- public function patch($id, Postman_Google_Service_MapsEngine_Table $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params));
- }
-
- /**
- * Process a table asset. (tables.process)
- *
- * @param string $id The ID of the table.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_ProcessResponse
- */
- public function process($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('process', array($params), "Postman_Google_Service_MapsEngine_ProcessResponse");
- }
-
- /**
- * Create a placeholder table asset to which table files can be uploaded. Once
- * the placeholder has been created, files are uploaded to the
- * https://www.googleapis.com/upload/mapsengine/v1/tables/table_id/files
- * endpoint. See Table Upload in the Developer's Guide or Table.files: insert in
- * the reference documentation for more information. (tables.upload)
- *
- * @param Postman_Google_Table $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_Table
- */
- public function upload(Postman_Google_Service_MapsEngine_Table $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('upload', array($params), "Postman_Google_Service_MapsEngine_Table");
- }
-}
-
-/**
- * The "features" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $features = $mapsengineService->features;
- *
- */
-class Postman_Google_Service_MapsEngine_TablesFeatures_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete all features matching the given IDs. (features.batchDelete)
- *
- * @param string $id The ID of the table that contains the features to be
- * deleted.
- * @param Postman_Google_FeaturesBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_FeaturesBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params));
- }
-
- /**
- * Append features to an existing table.
- *
- * A single batchInsert request can create:
- *
- * - Up to 50 features. - A combined total of 10 000 vertices. Feature limits
- * are documented in the Supported data formats and limits article of the Google
- * Maps Engine help center. Note that free and paid accounts have different
- * limits.
- *
- * For more information about inserting features, read Creating features in the
- * Google Maps Engine developer's guide. (features.batchInsert)
- *
- * @param string $id The ID of the table to append the features to.
- * @param Postman_Google_FeaturesBatchInsertRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function batchInsert($id, Postman_Google_Service_MapsEngine_FeaturesBatchInsertRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchInsert', array($params));
- }
-
- /**
- * Update the supplied features.
- *
- * A single batchPatch request can update:
- *
- * - Up to 50 features. - A combined total of 10 000 vertices. Feature limits
- * are documented in the Supported data formats and limits article of the Google
- * Maps Engine help center. Note that free and paid accounts have different
- * limits.
- *
- * Feature updates use HTTP PATCH semantics:
- *
- * - A supplied value replaces an existing value (if any) in that field. -
- * Omitted fields remain unchanged. - Complex values in geometries and
- * properties must be replaced as atomic units. For example, providing just the
- * coordinates of a geometry is not allowed; the complete geometry, including
- * type, must be supplied. - Setting a property's value to null deletes that
- * property. For more information about updating features, read Updating
- * features in the Google Maps Engine developer's guide. (features.batchPatch)
- *
- * @param string $id The ID of the table containing the features to be patched.
- * @param Postman_Google_FeaturesBatchPatchRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function batchPatch($id, Postman_Google_Service_MapsEngine_FeaturesBatchPatchRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchPatch', array($params));
- }
-
- /**
- * Return a single feature, given its ID. (features.get)
- *
- * @param string $tableId The ID of the table.
- * @param string $id The ID of the feature to get.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string version The table version to access. See Accessing Public
- * Data for information.
- * @opt_param string select A SQL-like projection clause used to specify
- * returned properties. If this parameter is not included, all properties are
- * returned.
- * @return Postman_Google_Service_MapsEngine_Feature
- */
- public function get($tableId, $id, $optParams = array())
- {
- $params = array('tableId' => $tableId, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_MapsEngine_Feature");
- }
-
- /**
- * Return all features readable by the current user.
- * (features.listTablesFeatures)
- *
- * @param string $id The ID of the table to which these features belong.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy An SQL-like order by clause used to sort results.
- * If this parameter is not included, the order of features is undefined.
- * @opt_param string intersects A geometry literal that specifies the spatial
- * restriction of the query.
- * @opt_param string maxResults The maximum number of items to include in the
- * response, used for paging. The maximum supported value is 1000.
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string version The table version to access. See Accessing Public
- * Data for information.
- * @opt_param string limit The total number of features to return from the
- * query, irrespective of the number of pages.
- * @opt_param string include A comma separated list of optional data to include.
- * Optional data available: schema.
- * @opt_param string where An SQL-like predicate used to filter results.
- * @opt_param string select A SQL-like projection clause used to specify
- * returned properties. If this parameter is not included, all properties are
- * returned.
- * @return Postman_Google_Service_MapsEngine_FeaturesListResponse
- */
- public function listTablesFeatures($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_FeaturesListResponse");
- }
-}
-/**
- * The "files" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $files = $mapsengineService->files;
- *
- */
-class Postman_Google_Service_MapsEngine_TablesFiles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Upload a file to a placeholder table asset. See Table Upload in the
- * Developer's Guide for more information. Supported file types are listed in
- * the Supported data formats and limits article of the Google Maps Engine help
- * center. (files.insert)
- *
- * @param string $id The ID of the table asset.
- * @param string $filename The file name of this uploaded file.
- * @param array $optParams Optional parameters.
- */
- public function insert($id, $filename, $optParams = array())
- {
- $params = array('id' => $id, 'filename' => $filename);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params));
- }
-}
-/**
- * The "parents" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $parents = $mapsengineService->parents;
- *
- */
-class Postman_Google_Service_MapsEngine_TablesParents_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Return all parent ids of the specified table. (parents.listTablesParents)
- *
- * @param string $id The ID of the table whose parents will be listed.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, used to page through
- * large result sets. To get the next page of results, set this parameter to the
- * value of nextPageToken from the previous response.
- * @opt_param string maxResults The maximum number of items to include in a
- * single response page. The maximum supported value is 50.
- * @return Postman_Google_Service_MapsEngine_ParentsListResponse
- */
- public function listTablesParents($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_ParentsListResponse");
- }
-}
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $mapsengineService = new Postman_Google_Service_MapsEngine(...);
- * $permissions = $mapsengineService->permissions;
- *
- */
-class Postman_Google_Service_MapsEngine_TablesPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Remove permission entries from an already existing asset.
- * (permissions.batchDelete)
- *
- * @param string $id The ID of the asset from which permissions will be removed.
- * @param Postman_Google_PermissionsBatchDeleteRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse
- */
- public function batchDelete($id, Postman_Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchDelete', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
- }
-
- /**
- * Add or update permission entries to an already existing asset.
- *
- * An asset can hold up to 20 different permission entries. Each batchInsert
- * request is atomic. (permissions.batchUpdate)
- *
- * @param string $id The ID of the asset to which permissions will be added.
- * @param Postman_Google_PermissionsBatchUpdateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse
- */
- public function batchUpdate($id, Postman_Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('batchUpdate', array($params), "Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
- }
-
- /**
- * Return all of the permissions for the specified asset.
- * (permissions.listTablesPermissions)
- *
- * @param string $id The ID of the asset whose permissions will be listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_MapsEngine_PermissionsListResponse
- */
- public function listTablesPermissions($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_MapsEngine_PermissionsListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_MapsEngine_AcquisitionTime extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $end;
- public $precision;
- public $start;
-
-
- public function setEnd($end)
- {
- $this->end = $end;
- }
- public function getEnd()
- {
- return $this->end;
- }
- public function setPrecision($precision)
- {
- $this->precision = $precision;
- }
- public function getPrecision()
- {
- return $this->precision;
- }
- public function setStart($start)
- {
- $this->start = $start;
- }
- public function getStart()
- {
- return $this->start;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Asset extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $bbox;
- public $creationTime;
- public $creatorEmail;
- public $description;
- public $etag;
- public $id;
- public $lastModifiedTime;
- public $lastModifierEmail;
- public $name;
- public $projectId;
- public $resource;
- public $tags;
- public $type;
- public $writersCanEditPermissions;
-
-
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCreatorEmail($creatorEmail)
- {
- $this->creatorEmail = $creatorEmail;
- }
- public function getCreatorEmail()
- {
- return $this->creatorEmail;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setLastModifierEmail($lastModifierEmail)
- {
- $this->lastModifierEmail = $lastModifierEmail;
- }
- public function getLastModifierEmail()
- {
- return $this->lastModifierEmail;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setResource($resource)
- {
- $this->resource = $resource;
- }
- public function getResource()
- {
- return $this->resource;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setWritersCanEditPermissions($writersCanEditPermissions)
- {
- $this->writersCanEditPermissions = $writersCanEditPermissions;
- }
- public function getWritersCanEditPermissions()
- {
- return $this->writersCanEditPermissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_AssetsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'assets';
- protected $internal_gapi_mappings = array(
- );
- protected $assetsType = 'Postman_Google_Service_MapsEngine_Asset';
- protected $assetsDataType = 'array';
- public $nextPageToken;
-
-
- public function setAssets($assets)
- {
- $this->assets = $assets;
- }
- public function getAssets()
- {
- return $this->assets;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Border extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $opacity;
- public $width;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setOpacity($opacity)
- {
- $this->opacity = $opacity;
- }
- public function getOpacity()
- {
- return $this->opacity;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Color extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $opacity;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setOpacity($opacity)
- {
- $this->opacity = $opacity;
- }
- public function getOpacity()
- {
- return $this->opacity;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Datasource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_MapsEngine_DisplayRule extends Postman_Google_Collection
-{
- protected $collection_key = 'filters';
- protected $internal_gapi_mappings = array(
- );
- protected $filtersType = 'Postman_Google_Service_MapsEngine_Filter';
- protected $filtersDataType = 'array';
- protected $lineOptionsType = 'Postman_Google_Service_MapsEngine_LineStyle';
- protected $lineOptionsDataType = '';
- public $name;
- protected $pointOptionsType = 'Postman_Google_Service_MapsEngine_PointStyle';
- protected $pointOptionsDataType = '';
- protected $polygonOptionsType = 'Postman_Google_Service_MapsEngine_PolygonStyle';
- protected $polygonOptionsDataType = '';
- protected $zoomLevelsType = 'Postman_Google_Service_MapsEngine_ZoomLevels';
- protected $zoomLevelsDataType = '';
-
-
- public function setFilters($filters)
- {
- $this->filters = $filters;
- }
- public function getFilters()
- {
- return $this->filters;
- }
- public function setLineOptions(Postman_Google_Service_MapsEngine_LineStyle $lineOptions)
- {
- $this->lineOptions = $lineOptions;
- }
- public function getLineOptions()
- {
- return $this->lineOptions;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPointOptions(Postman_Google_Service_MapsEngine_PointStyle $pointOptions)
- {
- $this->pointOptions = $pointOptions;
- }
- public function getPointOptions()
- {
- return $this->pointOptions;
- }
- public function setPolygonOptions(Postman_Google_Service_MapsEngine_PolygonStyle $polygonOptions)
- {
- $this->polygonOptions = $polygonOptions;
- }
- public function getPolygonOptions()
- {
- return $this->polygonOptions;
- }
- public function setZoomLevels(Postman_Google_Service_MapsEngine_ZoomLevels $zoomLevels)
- {
- $this->zoomLevels = $zoomLevels;
- }
- public function getZoomLevels()
- {
- return $this->zoomLevels;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Feature extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $geometryType = 'Postman_Google_Service_MapsEngine_GeoJsonGeometry';
- protected $geometryDataType = '';
- public $properties;
- public $type;
-
-
- public function setGeometry(Postman_Google_Service_MapsEngine_GeoJsonGeometry $geometry)
- {
- $this->geometry = $geometry;
- }
- public function getGeometry()
- {
- return $this->geometry;
- }
- public function setProperties($properties)
- {
- $this->properties = $properties;
- }
- public function getProperties()
- {
- return $this->properties;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_FeatureInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $content;
-
-
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
-}
-
-class Postman_Google_Service_MapsEngine_FeaturesBatchDeleteRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'primaryKeys';
- protected $internal_gapi_mappings = array(
- "gxIds" => "gx_ids",
- );
- public $gxIds;
- public $primaryKeys;
-
-
- public function setGxIds($gxIds)
- {
- $this->gxIds = $gxIds;
- }
- public function getGxIds()
- {
- return $this->gxIds;
- }
- public function setPrimaryKeys($primaryKeys)
- {
- $this->primaryKeys = $primaryKeys;
- }
- public function getPrimaryKeys()
- {
- return $this->primaryKeys;
- }
-}
-
-class Postman_Google_Service_MapsEngine_FeaturesBatchInsertRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'features';
- protected $internal_gapi_mappings = array(
- );
- protected $featuresType = 'Postman_Google_Service_MapsEngine_Feature';
- protected $featuresDataType = 'array';
- public $normalizeGeometries;
-
-
- public function setFeatures($features)
- {
- $this->features = $features;
- }
- public function getFeatures()
- {
- return $this->features;
- }
- public function setNormalizeGeometries($normalizeGeometries)
- {
- $this->normalizeGeometries = $normalizeGeometries;
- }
- public function getNormalizeGeometries()
- {
- return $this->normalizeGeometries;
- }
-}
-
-class Postman_Google_Service_MapsEngine_FeaturesBatchPatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'features';
- protected $internal_gapi_mappings = array(
- );
- protected $featuresType = 'Postman_Google_Service_MapsEngine_Feature';
- protected $featuresDataType = 'array';
- public $normalizeGeometries;
-
-
- public function setFeatures($features)
- {
- $this->features = $features;
- }
- public function getFeatures()
- {
- return $this->features;
- }
- public function setNormalizeGeometries($normalizeGeometries)
- {
- $this->normalizeGeometries = $normalizeGeometries;
- }
- public function getNormalizeGeometries()
- {
- return $this->normalizeGeometries;
- }
-}
-
-class Postman_Google_Service_MapsEngine_FeaturesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'features';
- protected $internal_gapi_mappings = array(
- );
- public $allowedQueriesPerSecond;
- protected $featuresType = 'Postman_Google_Service_MapsEngine_Feature';
- protected $featuresDataType = 'array';
- public $nextPageToken;
- protected $schemaType = 'Postman_Google_Service_MapsEngine_Schema';
- protected $schemaDataType = '';
- public $type;
-
-
- public function setAllowedQueriesPerSecond($allowedQueriesPerSecond)
- {
- $this->allowedQueriesPerSecond = $allowedQueriesPerSecond;
- }
- public function getAllowedQueriesPerSecond()
- {
- return $this->allowedQueriesPerSecond;
- }
- public function setFeatures($features)
- {
- $this->features = $features;
- }
- public function getFeatures()
- {
- return $this->features;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSchema(Postman_Google_Service_MapsEngine_Schema $schema)
- {
- $this->schema = $schema;
- }
- public function getSchema()
- {
- return $this->schema;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Filter extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $column;
- public $operator;
- public $value;
-
-
- public function setColumn($column)
- {
- $this->column = $column;
- }
- public function getColumn()
- {
- return $this->column;
- }
- public function setOperator($operator)
- {
- $this->operator = $operator;
- }
- public function getOperator()
- {
- return $this->operator;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonGeometry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonGeometryCollection extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'geometries';
- protected $internal_gapi_mappings = array(
- );
- protected $geometriesType = 'Postman_Google_Service_MapsEngine_GeoJsonGeometry';
- protected $geometriesDataType = 'array';
- protected function gapiInit()
- {
- $this->type = 'GeometryCollection';
- }
-
- public function setGeometries($geometries)
- {
- $this->geometries = $geometries;
- }
- public function getGeometries()
- {
- return $this->geometries;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonLineString extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- protected function gapiInit()
- {
- $this->type = 'LineString';
- }
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonMultiLineString extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- protected function gapiInit()
- {
- $this->type = 'MultiLineString';
- }
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonMultiPoint extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- protected function gapiInit()
- {
- $this->type = 'MultiPoint';
- }
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonMultiPolygon extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- protected function gapiInit()
- {
- $this->type = 'MultiPolygon';
- }
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonPoint extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- protected function gapiInit()
- {
- $this->type = 'Point';
- }
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonPolygon extends Postman_Google_Service_MapsEngine_GeoJsonGeometry
-{
- protected $collection_key = 'coordinates';
- protected $internal_gapi_mappings = array(
- );
- public $coordinates;
- protected function gapiInit()
- {
- $this->type = 'Polygon';
- }
-
- public function setCoordinates($coordinates)
- {
- $this->coordinates = $coordinates;
- }
- public function getCoordinates()
- {
- return $this->coordinates;
- }
-}
-
-class Postman_Google_Service_MapsEngine_GeoJsonProperties extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_Icon extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $id;
- public $name;
-
-
- 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 setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_MapsEngine_IconStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $name;
- protected $scaledShapeType = 'Postman_Google_Service_MapsEngine_ScaledShape';
- protected $scaledShapeDataType = '';
- protected $scalingFunctionType = 'Postman_Google_Service_MapsEngine_ScalingFunction';
- protected $scalingFunctionDataType = '';
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setScaledShape(Postman_Google_Service_MapsEngine_ScaledShape $scaledShape)
- {
- $this->scaledShape = $scaledShape;
- }
- public function getScaledShape()
- {
- return $this->scaledShape;
- }
- public function setScalingFunction(Postman_Google_Service_MapsEngine_ScalingFunction $scalingFunction)
- {
- $this->scalingFunction = $scalingFunction;
- }
- public function getScalingFunction()
- {
- return $this->scalingFunction;
- }
-}
-
-class Postman_Google_Service_MapsEngine_IconsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'icons';
- protected $internal_gapi_mappings = array(
- );
- protected $iconsType = 'Postman_Google_Service_MapsEngine_Icon';
- protected $iconsDataType = 'array';
- public $nextPageToken;
-
-
- public function setIcons($icons)
- {
- $this->icons = $icons;
- }
- public function getIcons()
- {
- return $this->icons;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_MapsEngine_LabelStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $column;
- public $fontStyle;
- public $fontWeight;
- public $opacity;
- protected $outlineType = 'Postman_Google_Service_MapsEngine_Color';
- protected $outlineDataType = '';
- public $size;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setColumn($column)
- {
- $this->column = $column;
- }
- public function getColumn()
- {
- return $this->column;
- }
- public function setFontStyle($fontStyle)
- {
- $this->fontStyle = $fontStyle;
- }
- public function getFontStyle()
- {
- return $this->fontStyle;
- }
- public function setFontWeight($fontWeight)
- {
- $this->fontWeight = $fontWeight;
- }
- public function getFontWeight()
- {
- return $this->fontWeight;
- }
- public function setOpacity($opacity)
- {
- $this->opacity = $opacity;
- }
- public function getOpacity()
- {
- return $this->opacity;
- }
- public function setOutline(Postman_Google_Service_MapsEngine_Color $outline)
- {
- $this->outline = $outline;
- }
- public function getOutline()
- {
- return $this->outline;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Layer extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $bbox;
- public $creationTime;
- public $creatorEmail;
- public $datasourceType;
- protected $datasourcesType = 'Postman_Google_Service_MapsEngine_Datasource';
- protected $datasourcesDataType = 'array';
- public $description;
- public $draftAccessList;
- public $etag;
- public $id;
- public $lastModifiedTime;
- public $lastModifierEmail;
- public $layerType;
- public $name;
- public $processingStatus;
- public $projectId;
- public $publishedAccessList;
- public $publishingStatus;
- protected $styleType = 'Postman_Google_Service_MapsEngine_VectorStyle';
- protected $styleDataType = '';
- public $tags;
- public $writersCanEditPermissions;
-
-
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCreatorEmail($creatorEmail)
- {
- $this->creatorEmail = $creatorEmail;
- }
- public function getCreatorEmail()
- {
- return $this->creatorEmail;
- }
- public function setDatasourceType($datasourceType)
- {
- $this->datasourceType = $datasourceType;
- }
- public function getDatasourceType()
- {
- return $this->datasourceType;
- }
- public function setDatasources(Postman_Google_Service_MapsEngine_Datasource $datasources)
- {
- $this->datasources = $datasources;
- }
- public function getDatasources()
- {
- return $this->datasources;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDraftAccessList($draftAccessList)
- {
- $this->draftAccessList = $draftAccessList;
- }
- public function getDraftAccessList()
- {
- return $this->draftAccessList;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setLastModifierEmail($lastModifierEmail)
- {
- $this->lastModifierEmail = $lastModifierEmail;
- }
- public function getLastModifierEmail()
- {
- return $this->lastModifierEmail;
- }
- public function setLayerType($layerType)
- {
- $this->layerType = $layerType;
- }
- public function getLayerType()
- {
- return $this->layerType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setPublishedAccessList($publishedAccessList)
- {
- $this->publishedAccessList = $publishedAccessList;
- }
- public function getPublishedAccessList()
- {
- return $this->publishedAccessList;
- }
- public function setPublishingStatus($publishingStatus)
- {
- $this->publishingStatus = $publishingStatus;
- }
- public function getPublishingStatus()
- {
- return $this->publishingStatus;
- }
- public function setStyle(Postman_Google_Service_MapsEngine_VectorStyle $style)
- {
- $this->style = $style;
- }
- public function getStyle()
- {
- return $this->style;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setWritersCanEditPermissions($writersCanEditPermissions)
- {
- $this->writersCanEditPermissions = $writersCanEditPermissions;
- }
- public function getWritersCanEditPermissions()
- {
- return $this->writersCanEditPermissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_LayersListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'layers';
- protected $internal_gapi_mappings = array(
- );
- protected $layersType = 'Postman_Google_Service_MapsEngine_Layer';
- protected $layersDataType = 'array';
- public $nextPageToken;
-
-
- public function setLayers($layers)
- {
- $this->layers = $layers;
- }
- public function getLayers()
- {
- return $this->layers;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_MapsEngine_LineStyle extends Postman_Google_Collection
-{
- protected $collection_key = 'dash';
- protected $internal_gapi_mappings = array(
- );
- protected $borderType = 'Postman_Google_Service_MapsEngine_Border';
- protected $borderDataType = '';
- public $dash;
- protected $labelType = 'Postman_Google_Service_MapsEngine_LabelStyle';
- protected $labelDataType = '';
- protected $strokeType = 'Postman_Google_Service_MapsEngine_LineStyleStroke';
- protected $strokeDataType = '';
-
-
- public function setBorder(Postman_Google_Service_MapsEngine_Border $border)
- {
- $this->border = $border;
- }
- public function getBorder()
- {
- return $this->border;
- }
- public function setDash($dash)
- {
- $this->dash = $dash;
- }
- public function getDash()
- {
- return $this->dash;
- }
- public function setLabel(Postman_Google_Service_MapsEngine_LabelStyle $label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setStroke(Postman_Google_Service_MapsEngine_LineStyleStroke $stroke)
- {
- $this->stroke = $stroke;
- }
- public function getStroke()
- {
- return $this->stroke;
- }
-}
-
-class Postman_Google_Service_MapsEngine_LineStyleStroke extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $color;
- public $opacity;
- public $width;
-
-
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setOpacity($opacity)
- {
- $this->opacity = $opacity;
- }
- public function getOpacity()
- {
- return $this->opacity;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Map extends Postman_Google_Collection
-{
- protected $collection_key = 'versions';
- protected $internal_gapi_mappings = array(
- );
- public $bbox;
- protected $contentsType = 'Postman_Google_Service_MapsEngine_MapItem';
- protected $contentsDataType = '';
- public $creationTime;
- public $creatorEmail;
- public $defaultViewport;
- public $description;
- public $draftAccessList;
- public $etag;
- public $id;
- public $lastModifiedTime;
- public $lastModifierEmail;
- public $name;
- public $processingStatus;
- public $projectId;
- public $publishedAccessList;
- public $publishingStatus;
- public $tags;
- public $versions;
- public $writersCanEditPermissions;
-
-
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setContents(Postman_Google_Service_MapsEngine_MapItem $contents)
- {
- $this->contents = $contents;
- }
- public function getContents()
- {
- return $this->contents;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCreatorEmail($creatorEmail)
- {
- $this->creatorEmail = $creatorEmail;
- }
- public function getCreatorEmail()
- {
- return $this->creatorEmail;
- }
- public function setDefaultViewport($defaultViewport)
- {
- $this->defaultViewport = $defaultViewport;
- }
- public function getDefaultViewport()
- {
- return $this->defaultViewport;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDraftAccessList($draftAccessList)
- {
- $this->draftAccessList = $draftAccessList;
- }
- public function getDraftAccessList()
- {
- return $this->draftAccessList;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setLastModifierEmail($lastModifierEmail)
- {
- $this->lastModifierEmail = $lastModifierEmail;
- }
- public function getLastModifierEmail()
- {
- return $this->lastModifierEmail;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setPublishedAccessList($publishedAccessList)
- {
- $this->publishedAccessList = $publishedAccessList;
- }
- public function getPublishedAccessList()
- {
- return $this->publishedAccessList;
- }
- public function setPublishingStatus($publishingStatus)
- {
- $this->publishingStatus = $publishingStatus;
- }
- public function getPublishingStatus()
- {
- return $this->publishingStatus;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setVersions($versions)
- {
- $this->versions = $versions;
- }
- public function getVersions()
- {
- return $this->versions;
- }
- public function setWritersCanEditPermissions($writersCanEditPermissions)
- {
- $this->writersCanEditPermissions = $writersCanEditPermissions;
- }
- public function getWritersCanEditPermissions()
- {
- return $this->writersCanEditPermissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_MapFolder extends Postman_Google_Service_MapsEngine_MapItem
-{
- protected $collection_key = 'defaultViewport';
- protected $internal_gapi_mappings = array(
- );
- protected $contentsType = 'Postman_Google_Service_MapsEngine_MapItem';
- protected $contentsDataType = 'array';
- public $defaultViewport;
- public $expandable;
- public $key;
- public $name;
- public $visibility;
- protected function gapiInit()
- {
- $this->type = 'folder';
- }
-
- public function setContents($contents)
- {
- $this->contents = $contents;
- }
- public function getContents()
- {
- return $this->contents;
- }
- public function setDefaultViewport($defaultViewport)
- {
- $this->defaultViewport = $defaultViewport;
- }
- public function getDefaultViewport()
- {
- return $this->defaultViewport;
- }
- public function setExpandable($expandable)
- {
- $this->expandable = $expandable;
- }
- public function getExpandable()
- {
- return $this->expandable;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_MapsEngine_MapItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_MapKmlLink extends Postman_Google_Service_MapsEngine_MapItem
-{
- protected $collection_key = 'defaultViewport';
- protected $internal_gapi_mappings = array(
- );
- public $defaultViewport;
- public $kmlUrl;
- public $name;
- public $visibility;
- protected function gapiInit()
- {
- $this->type = 'kmlLink';
- }
-
- public function setDefaultViewport($defaultViewport)
- {
- $this->defaultViewport = $defaultViewport;
- }
- public function getDefaultViewport()
- {
- return $this->defaultViewport;
- }
- public function setKmlUrl($kmlUrl)
- {
- $this->kmlUrl = $kmlUrl;
- }
- public function getKmlUrl()
- {
- return $this->kmlUrl;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_MapsEngine_MapLayer extends Postman_Google_Service_MapsEngine_MapItem
-{
- protected $collection_key = 'defaultViewport';
- protected $internal_gapi_mappings = array(
- );
- public $defaultViewport;
- public $id;
- public $key;
- public $name;
- public $visibility;
- protected function gapiInit()
- {
- $this->type = 'layer';
- }
-
- public function setDefaultViewport($defaultViewport)
- {
- $this->defaultViewport = $defaultViewport;
- }
- public function getDefaultViewport()
- {
- return $this->defaultViewport;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_MapsEngine_MapsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'maps';
- protected $internal_gapi_mappings = array(
- );
- protected $mapsType = 'Postman_Google_Service_MapsEngine_Map';
- protected $mapsDataType = 'array';
- public $nextPageToken;
-
-
- public function setMaps($maps)
- {
- $this->maps = $maps;
- }
- public function getMaps()
- {
- return $this->maps;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_MapsEngine_MapsengineFile extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $filename;
- public $size;
- public $uploadStatus;
-
-
- public function setFilename($filename)
- {
- $this->filename = $filename;
- }
- public function getFilename()
- {
- return $this->filename;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setUploadStatus($uploadStatus)
- {
- $this->uploadStatus = $uploadStatus;
- }
- public function getUploadStatus()
- {
- return $this->uploadStatus;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Parent extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ParentsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'parents';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $parentsType = 'Postman_Google_Service_MapsEngine_Parent';
- protected $parentsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setParents($parents)
- {
- $this->parents = $parents;
- }
- public function getParents()
- {
- return $this->parents;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Permission extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $discoverable;
- public $id;
- public $role;
- public $type;
-
-
- public function setDiscoverable($discoverable)
- {
- $this->discoverable = $discoverable;
- }
- public function getDiscoverable()
- {
- return $this->discoverable;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PermissionsBatchDeleteRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'ids';
- protected $internal_gapi_mappings = array(
- );
- public $ids;
-
-
- public function setIds($ids)
- {
- $this->ids = $ids;
- }
- public function getIds()
- {
- return $this->ids;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PermissionsBatchDeleteResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_PermissionsBatchUpdateRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'permissions';
- protected $internal_gapi_mappings = array(
- );
- protected $permissionsType = 'Postman_Google_Service_MapsEngine_Permission';
- protected $permissionsDataType = 'array';
-
-
- public function setPermissions($permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PermissionsBatchUpdateResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_PermissionsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'permissions';
- protected $internal_gapi_mappings = array(
- );
- protected $permissionsType = 'Postman_Google_Service_MapsEngine_Permission';
- protected $permissionsDataType = 'array';
-
-
- public function setPermissions($permissions)
- {
- $this->permissions = $permissions;
- }
- public function getPermissions()
- {
- return $this->permissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PointStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $iconType = 'Postman_Google_Service_MapsEngine_IconStyle';
- protected $iconDataType = '';
- protected $labelType = 'Postman_Google_Service_MapsEngine_LabelStyle';
- protected $labelDataType = '';
-
-
- public function setIcon(Postman_Google_Service_MapsEngine_IconStyle $icon)
- {
- $this->icon = $icon;
- }
- public function getIcon()
- {
- return $this->icon;
- }
- public function setLabel(Postman_Google_Service_MapsEngine_LabelStyle $label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PolygonStyle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $fillType = 'Postman_Google_Service_MapsEngine_Color';
- protected $fillDataType = '';
- protected $labelType = 'Postman_Google_Service_MapsEngine_LabelStyle';
- protected $labelDataType = '';
- protected $strokeType = 'Postman_Google_Service_MapsEngine_Border';
- protected $strokeDataType = '';
-
-
- public function setFill(Postman_Google_Service_MapsEngine_Color $fill)
- {
- $this->fill = $fill;
- }
- public function getFill()
- {
- return $this->fill;
- }
- public function setLabel(Postman_Google_Service_MapsEngine_LabelStyle $label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setStroke(Postman_Google_Service_MapsEngine_Border $stroke)
- {
- $this->stroke = $stroke;
- }
- public function getStroke()
- {
- return $this->stroke;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ProcessResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_Project extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $name;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ProjectsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'projects';
- protected $internal_gapi_mappings = array(
- );
- protected $projectsType = 'Postman_Google_Service_MapsEngine_Project';
- protected $projectsDataType = 'array';
-
-
- public function setProjects($projects)
- {
- $this->projects = $projects;
- }
- public function getProjects()
- {
- return $this->projects;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PublishResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_PublishedLayer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $id;
- public $layerType;
- public $name;
- public $projectId;
-
-
- 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 setLayerType($layerType)
- {
- $this->layerType = $layerType;
- }
- public function getLayerType()
- {
- return $this->layerType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PublishedLayersListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'layers';
- protected $internal_gapi_mappings = array(
- );
- protected $layersType = 'Postman_Google_Service_MapsEngine_PublishedLayer';
- protected $layersDataType = 'array';
- public $nextPageToken;
-
-
- public function setLayers($layers)
- {
- $this->layers = $layers;
- }
- public function getLayers()
- {
- return $this->layers;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PublishedMap extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentsType = 'Postman_Google_Service_MapsEngine_MapItem';
- protected $contentsDataType = '';
- public $defaultViewport;
- public $description;
- public $id;
- public $name;
- public $projectId;
-
-
- public function setContents(Postman_Google_Service_MapsEngine_MapItem $contents)
- {
- $this->contents = $contents;
- }
- public function getContents()
- {
- return $this->contents;
- }
- public function setDefaultViewport($defaultViewport)
- {
- $this->defaultViewport = $defaultViewport;
- }
- public function getDefaultViewport()
- {
- return $this->defaultViewport;
- }
- 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 setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
-}
-
-class Postman_Google_Service_MapsEngine_PublishedMapsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'maps';
- protected $internal_gapi_mappings = array(
- );
- protected $mapsType = 'Postman_Google_Service_MapsEngine_PublishedMap';
- protected $mapsDataType = 'array';
- public $nextPageToken;
-
-
- public function setMaps($maps)
- {
- $this->maps = $maps;
- }
- public function getMaps()
- {
- return $this->maps;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Raster extends Postman_Google_Collection
-{
- protected $collection_key = 'files';
- protected $internal_gapi_mappings = array(
- );
- protected $acquisitionTimeType = 'Postman_Google_Service_MapsEngine_AcquisitionTime';
- protected $acquisitionTimeDataType = '';
- public $attribution;
- public $bbox;
- public $creationTime;
- public $creatorEmail;
- public $description;
- public $draftAccessList;
- public $etag;
- protected $filesType = 'Postman_Google_Service_MapsEngine_MapsengineFile';
- protected $filesDataType = 'array';
- public $id;
- public $lastModifiedTime;
- public $lastModifierEmail;
- public $maskType;
- public $name;
- public $processingStatus;
- public $projectId;
- public $rasterType;
- public $tags;
- public $writersCanEditPermissions;
-
-
- public function setAcquisitionTime(Postman_Google_Service_MapsEngine_AcquisitionTime $acquisitionTime)
- {
- $this->acquisitionTime = $acquisitionTime;
- }
- public function getAcquisitionTime()
- {
- return $this->acquisitionTime;
- }
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCreatorEmail($creatorEmail)
- {
- $this->creatorEmail = $creatorEmail;
- }
- public function getCreatorEmail()
- {
- return $this->creatorEmail;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDraftAccessList($draftAccessList)
- {
- $this->draftAccessList = $draftAccessList;
- }
- public function getDraftAccessList()
- {
- return $this->draftAccessList;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFiles($files)
- {
- $this->files = $files;
- }
- public function getFiles()
- {
- return $this->files;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setLastModifierEmail($lastModifierEmail)
- {
- $this->lastModifierEmail = $lastModifierEmail;
- }
- public function getLastModifierEmail()
- {
- return $this->lastModifierEmail;
- }
- public function setMaskType($maskType)
- {
- $this->maskType = $maskType;
- }
- public function getMaskType()
- {
- return $this->maskType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setRasterType($rasterType)
- {
- $this->rasterType = $rasterType;
- }
- public function getRasterType()
- {
- return $this->rasterType;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setWritersCanEditPermissions($writersCanEditPermissions)
- {
- $this->writersCanEditPermissions = $writersCanEditPermissions;
- }
- public function getWritersCanEditPermissions()
- {
- return $this->writersCanEditPermissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollection extends Postman_Google_Collection
-{
- protected $collection_key = 'bbox';
- protected $internal_gapi_mappings = array(
- );
- public $attribution;
- public $bbox;
- public $creationTime;
- public $creatorEmail;
- public $description;
- public $draftAccessList;
- public $etag;
- public $id;
- public $lastModifiedTime;
- public $lastModifierEmail;
- public $mosaic;
- public $name;
- public $processingStatus;
- public $projectId;
- public $rasterType;
- public $tags;
- public $writersCanEditPermissions;
-
-
- public function setAttribution($attribution)
- {
- $this->attribution = $attribution;
- }
- public function getAttribution()
- {
- return $this->attribution;
- }
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCreatorEmail($creatorEmail)
- {
- $this->creatorEmail = $creatorEmail;
- }
- public function getCreatorEmail()
- {
- return $this->creatorEmail;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDraftAccessList($draftAccessList)
- {
- $this->draftAccessList = $draftAccessList;
- }
- public function getDraftAccessList()
- {
- return $this->draftAccessList;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setLastModifierEmail($lastModifierEmail)
- {
- $this->lastModifierEmail = $lastModifierEmail;
- }
- public function getLastModifierEmail()
- {
- return $this->lastModifierEmail;
- }
- public function setMosaic($mosaic)
- {
- $this->mosaic = $mosaic;
- }
- public function getMosaic()
- {
- return $this->mosaic;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setRasterType($rasterType)
- {
- $this->rasterType = $rasterType;
- }
- public function getRasterType()
- {
- return $this->rasterType;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setWritersCanEditPermissions($writersCanEditPermissions)
- {
- $this->writersCanEditPermissions = $writersCanEditPermissions;
- }
- public function getWritersCanEditPermissions()
- {
- return $this->writersCanEditPermissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rasterCollections';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $rasterCollectionsType = 'Postman_Google_Service_MapsEngine_RasterCollection';
- protected $rasterCollectionsDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setRasterCollections($rasterCollections)
- {
- $this->rasterCollections = $rasterCollections;
- }
- public function getRasterCollections()
- {
- return $this->rasterCollections;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsRaster extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $bbox;
- public $creationTime;
- public $description;
- public $id;
- public $lastModifiedTime;
- public $name;
- public $projectId;
- public $rasterType;
- public $tags;
-
-
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- 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 setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setRasterType($rasterType)
- {
- $this->rasterType = $rasterType;
- }
- public function getRasterType()
- {
- return $this->rasterType;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'ids';
- protected $internal_gapi_mappings = array(
- );
- public $ids;
-
-
- public function setIds($ids)
- {
- $this->ids = $ids;
- }
- public function getIds()
- {
- return $this->ids;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'ids';
- protected $internal_gapi_mappings = array(
- );
- public $ids;
-
-
- public function setIds($ids)
- {
- $this->ids = $ids;
- }
- public function getIds()
- {
- return $this->ids;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_MapsEngine_RasterCollectionsRastersListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rasters';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $rastersType = 'Postman_Google_Service_MapsEngine_RasterCollectionsRaster';
- protected $rastersDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setRasters($rasters)
- {
- $this->rasters = $rasters;
- }
- public function getRasters()
- {
- return $this->rasters;
- }
-}
-
-class Postman_Google_Service_MapsEngine_RastersListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rasters';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $rastersType = 'Postman_Google_Service_MapsEngine_Raster';
- protected $rastersDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setRasters($rasters)
- {
- $this->rasters = $rasters;
- }
- public function getRasters()
- {
- return $this->rasters;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ScaledShape extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $borderType = 'Postman_Google_Service_MapsEngine_Border';
- protected $borderDataType = '';
- protected $fillType = 'Postman_Google_Service_MapsEngine_Color';
- protected $fillDataType = '';
- public $shape;
-
-
- public function setBorder(Postman_Google_Service_MapsEngine_Border $border)
- {
- $this->border = $border;
- }
- public function getBorder()
- {
- return $this->border;
- }
- public function setFill(Postman_Google_Service_MapsEngine_Color $fill)
- {
- $this->fill = $fill;
- }
- public function getFill()
- {
- return $this->fill;
- }
- public function setShape($shape)
- {
- $this->shape = $shape;
- }
- public function getShape()
- {
- return $this->shape;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ScalingFunction extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $column;
- public $scalingType;
- protected $sizeRangeType = 'Postman_Google_Service_MapsEngine_SizeRange';
- protected $sizeRangeDataType = '';
- protected $valueRangeType = 'Postman_Google_Service_MapsEngine_ValueRange';
- protected $valueRangeDataType = '';
-
-
- public function setColumn($column)
- {
- $this->column = $column;
- }
- public function getColumn()
- {
- return $this->column;
- }
- public function setScalingType($scalingType)
- {
- $this->scalingType = $scalingType;
- }
- public function getScalingType()
- {
- return $this->scalingType;
- }
- public function setSizeRange(Postman_Google_Service_MapsEngine_SizeRange $sizeRange)
- {
- $this->sizeRange = $sizeRange;
- }
- public function getSizeRange()
- {
- return $this->sizeRange;
- }
- public function setValueRange(Postman_Google_Service_MapsEngine_ValueRange $valueRange)
- {
- $this->valueRange = $valueRange;
- }
- public function getValueRange()
- {
- return $this->valueRange;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Schema extends Postman_Google_Collection
-{
- protected $collection_key = 'columns';
- protected $internal_gapi_mappings = array(
- );
- protected $columnsType = 'Postman_Google_Service_MapsEngine_TableColumn';
- protected $columnsDataType = 'array';
- public $primaryGeometry;
- public $primaryKey;
-
-
- public function setColumns($columns)
- {
- $this->columns = $columns;
- }
- public function getColumns()
- {
- return $this->columns;
- }
- public function setPrimaryGeometry($primaryGeometry)
- {
- $this->primaryGeometry = $primaryGeometry;
- }
- public function getPrimaryGeometry()
- {
- return $this->primaryGeometry;
- }
- public function setPrimaryKey($primaryKey)
- {
- $this->primaryKey = $primaryKey;
- }
- public function getPrimaryKey()
- {
- return $this->primaryKey;
- }
-}
-
-class Postman_Google_Service_MapsEngine_SizeRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $max;
- public $min;
-
-
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
-}
-
-class Postman_Google_Service_MapsEngine_Table extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $bbox;
- public $creationTime;
- public $creatorEmail;
- public $description;
- public $draftAccessList;
- public $etag;
- protected $filesType = 'Postman_Google_Service_MapsEngine_MapsengineFile';
- protected $filesDataType = 'array';
- public $id;
- public $lastModifiedTime;
- public $lastModifierEmail;
- public $name;
- public $processingStatus;
- public $projectId;
- public $publishedAccessList;
- protected $schemaType = 'Postman_Google_Service_MapsEngine_Schema';
- protected $schemaDataType = '';
- public $sourceEncoding;
- public $tags;
- public $writersCanEditPermissions;
-
-
- public function setBbox($bbox)
- {
- $this->bbox = $bbox;
- }
- public function getBbox()
- {
- return $this->bbox;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCreatorEmail($creatorEmail)
- {
- $this->creatorEmail = $creatorEmail;
- }
- public function getCreatorEmail()
- {
- return $this->creatorEmail;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDraftAccessList($draftAccessList)
- {
- $this->draftAccessList = $draftAccessList;
- }
- public function getDraftAccessList()
- {
- return $this->draftAccessList;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFiles($files)
- {
- $this->files = $files;
- }
- public function getFiles()
- {
- return $this->files;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastModifiedTime($lastModifiedTime)
- {
- $this->lastModifiedTime = $lastModifiedTime;
- }
- public function getLastModifiedTime()
- {
- return $this->lastModifiedTime;
- }
- public function setLastModifierEmail($lastModifierEmail)
- {
- $this->lastModifierEmail = $lastModifierEmail;
- }
- public function getLastModifierEmail()
- {
- return $this->lastModifierEmail;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setProjectId($projectId)
- {
- $this->projectId = $projectId;
- }
- public function getProjectId()
- {
- return $this->projectId;
- }
- public function setPublishedAccessList($publishedAccessList)
- {
- $this->publishedAccessList = $publishedAccessList;
- }
- public function getPublishedAccessList()
- {
- return $this->publishedAccessList;
- }
- public function setSchema(Postman_Google_Service_MapsEngine_Schema $schema)
- {
- $this->schema = $schema;
- }
- public function getSchema()
- {
- return $this->schema;
- }
- public function setSourceEncoding($sourceEncoding)
- {
- $this->sourceEncoding = $sourceEncoding;
- }
- public function getSourceEncoding()
- {
- return $this->sourceEncoding;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setWritersCanEditPermissions($writersCanEditPermissions)
- {
- $this->writersCanEditPermissions = $writersCanEditPermissions;
- }
- public function getWritersCanEditPermissions()
- {
- return $this->writersCanEditPermissions;
- }
-}
-
-class Postman_Google_Service_MapsEngine_TableColumn extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $type;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_TablesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'tables';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $tablesType = 'Postman_Google_Service_MapsEngine_Table';
- protected $tablesDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setTables($tables)
- {
- $this->tables = $tables;
- }
- public function getTables()
- {
- return $this->tables;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ValueRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $max;
- public $min;
-
-
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
-}
-
-class Postman_Google_Service_MapsEngine_VectorStyle extends Postman_Google_Collection
-{
- protected $collection_key = 'displayRules';
- protected $internal_gapi_mappings = array(
- );
- protected $displayRulesType = 'Postman_Google_Service_MapsEngine_DisplayRule';
- protected $displayRulesDataType = 'array';
- protected $featureInfoType = 'Postman_Google_Service_MapsEngine_FeatureInfo';
- protected $featureInfoDataType = '';
- public $type;
-
-
- public function setDisplayRules($displayRules)
- {
- $this->displayRules = $displayRules;
- }
- public function getDisplayRules()
- {
- return $this->displayRules;
- }
- public function setFeatureInfo(Postman_Google_Service_MapsEngine_FeatureInfo $featureInfo)
- {
- $this->featureInfo = $featureInfo;
- }
- public function getFeatureInfo()
- {
- return $this->featureInfo;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_MapsEngine_ZoomLevels extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $max;
- public $min;
-
-
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Mirror.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Mirror.php
deleted file mode 100644
index 4c84802..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Mirror.php
+++ /dev/null
@@ -1,1931 +0,0 @@
-
- * API for interacting with Glass users via the timeline.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Mirror extends Postman_Google_Service -{ - /** View your location. */ - const GLASS_LOCATION = - "https://www.googleapis.com/auth/glass.location"; - /** View and manage your Glass timeline. */ - const GLASS_TIMELINE = - "https://www.googleapis.com/auth/glass.timeline"; - - public $accounts; - public $contacts; - public $locations; - public $settings; - public $subscriptions; - public $timeline; - public $timeline_attachments; - - - /** - * Constructs the internal representation of the Mirror service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'mirror/v1/'; - $this->version = 'v1'; - $this->serviceName = 'mirror'; - - $this->accounts = new Postman_Google_Service_Mirror_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'accounts/{userToken}/{accountType}/{accountName}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userToken' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->contacts = new Postman_Google_Service_Mirror_Contacts_Resource( - $this, - $this->serviceName, - 'contacts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'contacts', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'contacts', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->locations = new Postman_Google_Service_Mirror_Locations_Resource( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'locations/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'locations', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->settings = new Postman_Google_Service_Mirror_Settings_Resource( - $this, - $this->serviceName, - 'settings', - array( - 'methods' => array( - 'get' => array( - 'path' => 'settings/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->subscriptions = new Postman_Google_Service_Mirror_Subscriptions_Resource( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'subscriptions/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'update' => array( - 'path' => 'subscriptions/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->timeline = new Postman_Google_Service_Mirror_Timeline_Resource( - $this, - $this->serviceName, - 'timeline', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'timeline', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'timeline', - 'httpMethod' => 'GET', - 'parameters' => array( - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceItemId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pinnedOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'bundleId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->timeline_attachments = new Postman_Google_Service_Mirror_TimelineAttachments_Resource( - $this, - $this->serviceName, - 'attachments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'timeline/{itemId}/attachments/{attachmentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'attachmentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'timeline/{itemId}/attachments/{attachmentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'attachmentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'timeline/{itemId}/attachments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'timeline/{itemId}/attachments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $accounts = $mirrorService->accounts;
- *
- */
-class Postman_Google_Service_Mirror_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Inserts a new account for a user (accounts.insert)
- *
- * @param string $userToken The ID for the user.
- * @param string $accountType Account type to be passed to Android Account
- * Manager.
- * @param string $accountName The name of the account to be passed to the
- * Android Account Manager.
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Account
- */
- public function insert($userToken, $accountType, $accountName, Postman_Google_Service_Mirror_Account $postBody, $optParams = array())
- {
- $params = array('userToken' => $userToken, 'accountType' => $accountType, 'accountName' => $accountName, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Mirror_Account");
- }
-}
-
-/**
- * The "contacts" collection of methods.
- * Typical usage is:
- *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $contacts = $mirrorService->contacts;
- *
- */
-class Postman_Google_Service_Mirror_Contacts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a contact. (contacts.delete)
- *
- * @param string $id The ID of the contact.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a single contact by ID. (contacts.get)
- *
- * @param string $id The ID of the contact.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Contact
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Mirror_Contact");
- }
-
- /**
- * Inserts a new contact. (contacts.insert)
- *
- * @param Postman_Google_Contact $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Contact
- */
- public function insert(Postman_Google_Service_Mirror_Contact $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Mirror_Contact");
- }
-
- /**
- * Retrieves a list of contacts for the authenticated user.
- * (contacts.listContacts)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_ContactsListResponse
- */
- public function listContacts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Mirror_ContactsListResponse");
- }
-
- /**
- * Updates a contact in place. This method supports patch semantics.
- * (contacts.patch)
- *
- * @param string $id The ID of the contact.
- * @param Postman_Google_Contact $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Contact
- */
- public function patch($id, Postman_Google_Service_Mirror_Contact $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Mirror_Contact");
- }
-
- /**
- * Updates a contact in place. (contacts.update)
- *
- * @param string $id The ID of the contact.
- * @param Postman_Google_Contact $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Contact
- */
- public function update($id, Postman_Google_Service_Mirror_Contact $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Mirror_Contact");
- }
-}
-
-/**
- * The "locations" collection of methods.
- * Typical usage is:
- *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $locations = $mirrorService->locations;
- *
- */
-class Postman_Google_Service_Mirror_Locations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a single location by ID. (locations.get)
- *
- * @param string $id The ID of the location or latest for the last known
- * location.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Location
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Mirror_Location");
- }
-
- /**
- * Retrieves a list of locations for the user. (locations.listLocations)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_LocationsListResponse
- */
- public function listLocations($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Mirror_LocationsListResponse");
- }
-}
-
-/**
- * The "settings" collection of methods.
- * Typical usage is:
- *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $settings = $mirrorService->settings;
- *
- */
-class Postman_Google_Service_Mirror_Settings_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a single setting by ID. (settings.get)
- *
- * @param string $id The ID of the setting. The following IDs are valid: -
- * locale - The key to the user’s language/locale (BCP 47 identifier) that
- * Glassware should use to render localized content. - timezone - The key to
- * the user’s current time zone region as defined in the tz database. Example:
- * America/Los_Angeles.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Setting
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Mirror_Setting");
- }
-}
-
-/**
- * The "subscriptions" collection of methods.
- * Typical usage is:
- *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $subscriptions = $mirrorService->subscriptions;
- *
- */
-class Postman_Google_Service_Mirror_Subscriptions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a subscription. (subscriptions.delete)
- *
- * @param string $id The ID of the subscription.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Creates a new subscription. (subscriptions.insert)
- *
- * @param Postman_Google_Subscription $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Subscription
- */
- public function insert(Postman_Google_Service_Mirror_Subscription $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Mirror_Subscription");
- }
-
- /**
- * Retrieves a list of subscriptions for the authenticated user and service.
- * (subscriptions.listSubscriptions)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_SubscriptionsListResponse
- */
- public function listSubscriptions($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Mirror_SubscriptionsListResponse");
- }
-
- /**
- * Updates an existing subscription in place. (subscriptions.update)
- *
- * @param string $id The ID of the subscription.
- * @param Postman_Google_Subscription $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Subscription
- */
- public function update($id, Postman_Google_Service_Mirror_Subscription $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Mirror_Subscription");
- }
-}
-
-/**
- * The "timeline" collection of methods.
- * Typical usage is:
- *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $timeline = $mirrorService->timeline;
- *
- */
-class Postman_Google_Service_Mirror_Timeline_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a timeline item. (timeline.delete)
- *
- * @param string $id The ID of the timeline item.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a single timeline item by ID. (timeline.get)
- *
- * @param string $id The ID of the timeline item.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_TimelineItem
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Mirror_TimelineItem");
- }
-
- /**
- * Inserts a new item into the timeline. (timeline.insert)
- *
- * @param Postman_Google_TimelineItem $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_TimelineItem
- */
- public function insert(Postman_Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Mirror_TimelineItem");
- }
-
- /**
- * Retrieves a list of timeline items for the authenticated user.
- * (timeline.listTimeline)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Controls the order in which timeline items are
- * returned.
- * @opt_param bool includeDeleted If true, tombstone records for deleted items
- * will be returned.
- * @opt_param string maxResults The maximum number of items to include in the
- * response, used for paging.
- * @opt_param string pageToken Token for the page of results to return.
- * @opt_param string sourceItemId If provided, only items with the given
- * sourceItemId will be returned.
- * @opt_param bool pinnedOnly If true, only pinned items will be returned.
- * @opt_param string bundleId If provided, only items with the given bundleId
- * will be returned.
- * @return Postman_Google_Service_Mirror_TimelineListResponse
- */
- public function listTimeline($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Mirror_TimelineListResponse");
- }
-
- /**
- * Updates a timeline item in place. This method supports patch semantics.
- * (timeline.patch)
- *
- * @param string $id The ID of the timeline item.
- * @param Postman_Google_TimelineItem $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_TimelineItem
- */
- public function patch($id, Postman_Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Mirror_TimelineItem");
- }
-
- /**
- * Updates a timeline item in place. (timeline.update)
- *
- * @param string $id The ID of the timeline item.
- * @param Postman_Google_TimelineItem $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_TimelineItem
- */
- public function update($id, Postman_Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Mirror_TimelineItem");
- }
-}
-
-/**
- * The "attachments" collection of methods.
- * Typical usage is:
- *
- * $mirrorService = new Postman_Google_Service_Mirror(...);
- * $attachments = $mirrorService->attachments;
- *
- */
-class Postman_Google_Service_Mirror_TimelineAttachments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an attachment from a timeline item. (attachments.delete)
- *
- * @param string $itemId The ID of the timeline item the attachment belongs to.
- * @param string $attachmentId The ID of the attachment.
- * @param array $optParams Optional parameters.
- */
- public function delete($itemId, $attachmentId, $optParams = array())
- {
- $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves an attachment on a timeline item by item ID and attachment ID.
- * (attachments.get)
- *
- * @param string $itemId The ID of the timeline item the attachment belongs to.
- * @param string $attachmentId The ID of the attachment.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Attachment
- */
- public function get($itemId, $attachmentId, $optParams = array())
- {
- $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Mirror_Attachment");
- }
-
- /**
- * Adds a new attachment to a timeline item. (attachments.insert)
- *
- * @param string $itemId The ID of the timeline item the attachment belongs to.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_Attachment
- */
- public function insert($itemId, $optParams = array())
- {
- $params = array('itemId' => $itemId);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Mirror_Attachment");
- }
-
- /**
- * Returns a list of attachments for a timeline item.
- * (attachments.listTimelineAttachments)
- *
- * @param string $itemId The ID of the timeline item whose attachments should be
- * listed.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Mirror_AttachmentsListResponse
- */
- public function listTimelineAttachments($itemId, $optParams = array())
- {
- $params = array('itemId' => $itemId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Mirror_AttachmentsListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Mirror_Account extends Postman_Google_Collection
-{
- protected $collection_key = 'userData';
- protected $internal_gapi_mappings = array(
- );
- protected $authTokensType = 'Postman_Google_Service_Mirror_AuthToken';
- protected $authTokensDataType = 'array';
- public $features;
- public $password;
- protected $userDataType = 'Postman_Google_Service_Mirror_UserData';
- protected $userDataDataType = 'array';
-
-
- public function setAuthTokens($authTokens)
- {
- $this->authTokens = $authTokens;
- }
- public function getAuthTokens()
- {
- return $this->authTokens;
- }
- public function setFeatures($features)
- {
- $this->features = $features;
- }
- public function getFeatures()
- {
- return $this->features;
- }
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
- public function setUserData($userData)
- {
- $this->userData = $userData;
- }
- public function getUserData()
- {
- return $this->userData;
- }
-}
-
-class Postman_Google_Service_Mirror_Attachment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $contentType;
- public $contentUrl;
- public $id;
- public $isProcessingContent;
-
-
- public function setContentType($contentType)
- {
- $this->contentType = $contentType;
- }
- public function getContentType()
- {
- return $this->contentType;
- }
- public function setContentUrl($contentUrl)
- {
- $this->contentUrl = $contentUrl;
- }
- public function getContentUrl()
- {
- return $this->contentUrl;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIsProcessingContent($isProcessingContent)
- {
- $this->isProcessingContent = $isProcessingContent;
- }
- public function getIsProcessingContent()
- {
- return $this->isProcessingContent;
- }
-}
-
-class Postman_Google_Service_Mirror_AttachmentsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Mirror_Attachment';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Mirror_AuthToken extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $authToken;
- public $type;
-
-
- public function setAuthToken($authToken)
- {
- $this->authToken = $authToken;
- }
- public function getAuthToken()
- {
- return $this->authToken;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Mirror_Command extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Mirror_Contact extends Postman_Google_Collection
-{
- protected $collection_key = 'sharingFeatures';
- protected $internal_gapi_mappings = array(
- );
- protected $acceptCommandsType = 'Postman_Google_Service_Mirror_Command';
- protected $acceptCommandsDataType = 'array';
- public $acceptTypes;
- public $displayName;
- public $id;
- public $imageUrls;
- public $kind;
- public $phoneNumber;
- public $priority;
- public $sharingFeatures;
- public $source;
- public $speakableName;
- public $type;
-
-
- public function setAcceptCommands($acceptCommands)
- {
- $this->acceptCommands = $acceptCommands;
- }
- public function getAcceptCommands()
- {
- return $this->acceptCommands;
- }
- public function setAcceptTypes($acceptTypes)
- {
- $this->acceptTypes = $acceptTypes;
- }
- public function getAcceptTypes()
- {
- return $this->acceptTypes;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImageUrls($imageUrls)
- {
- $this->imageUrls = $imageUrls;
- }
- public function getImageUrls()
- {
- return $this->imageUrls;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPhoneNumber($phoneNumber)
- {
- $this->phoneNumber = $phoneNumber;
- }
- public function getPhoneNumber()
- {
- return $this->phoneNumber;
- }
- public function setPriority($priority)
- {
- $this->priority = $priority;
- }
- public function getPriority()
- {
- return $this->priority;
- }
- public function setSharingFeatures($sharingFeatures)
- {
- $this->sharingFeatures = $sharingFeatures;
- }
- public function getSharingFeatures()
- {
- return $this->sharingFeatures;
- }
- public function setSource($source)
- {
- $this->source = $source;
- }
- public function getSource()
- {
- return $this->source;
- }
- public function setSpeakableName($speakableName)
- {
- $this->speakableName = $speakableName;
- }
- public function getSpeakableName()
- {
- return $this->speakableName;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Mirror_ContactsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Mirror_Contact';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Mirror_Location extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accuracy;
- public $address;
- public $displayName;
- public $id;
- public $kind;
- public $latitude;
- public $longitude;
- public $timestamp;
-
-
- public function setAccuracy($accuracy)
- {
- $this->accuracy = $accuracy;
- }
- public function getAccuracy()
- {
- return $this->accuracy;
- }
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- 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 setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
-}
-
-class Postman_Google_Service_Mirror_LocationsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Mirror_Location';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Mirror_MenuItem extends Postman_Google_Collection
-{
- protected $collection_key = 'values';
- protected $internal_gapi_mappings = array(
- "contextualCommand" => "contextual_command",
- );
- public $action;
- public $contextualCommand;
- public $id;
- public $payload;
- public $removeWhenSelected;
- protected $valuesType = 'Postman_Google_Service_Mirror_MenuValue';
- protected $valuesDataType = 'array';
-
-
- public function setAction($action)
- {
- $this->action = $action;
- }
- public function getAction()
- {
- return $this->action;
- }
- public function setContextualCommand($contextualCommand)
- {
- $this->contextualCommand = $contextualCommand;
- }
- public function getContextualCommand()
- {
- return $this->contextualCommand;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setRemoveWhenSelected($removeWhenSelected)
- {
- $this->removeWhenSelected = $removeWhenSelected;
- }
- public function getRemoveWhenSelected()
- {
- return $this->removeWhenSelected;
- }
- public function setValues($values)
- {
- $this->values = $values;
- }
- public function getValues()
- {
- return $this->values;
- }
-}
-
-class Postman_Google_Service_Mirror_MenuValue extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $iconUrl;
- public $state;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setIconUrl($iconUrl)
- {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl()
- {
- return $this->iconUrl;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Mirror_Notification extends Postman_Google_Collection
-{
- protected $collection_key = 'userActions';
- protected $internal_gapi_mappings = array(
- );
- public $collection;
- public $itemId;
- public $operation;
- protected $userActionsType = 'Postman_Google_Service_Mirror_UserAction';
- protected $userActionsDataType = 'array';
- public $userToken;
- public $verifyToken;
-
-
- public function setCollection($collection)
- {
- $this->collection = $collection;
- }
- public function getCollection()
- {
- return $this->collection;
- }
- public function setItemId($itemId)
- {
- $this->itemId = $itemId;
- }
- public function getItemId()
- {
- return $this->itemId;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
- public function setUserActions($userActions)
- {
- $this->userActions = $userActions;
- }
- public function getUserActions()
- {
- return $this->userActions;
- }
- public function setUserToken($userToken)
- {
- $this->userToken = $userToken;
- }
- public function getUserToken()
- {
- return $this->userToken;
- }
- public function setVerifyToken($verifyToken)
- {
- $this->verifyToken = $verifyToken;
- }
- public function getVerifyToken()
- {
- return $this->verifyToken;
- }
-}
-
-class Postman_Google_Service_Mirror_NotificationConfig extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deliveryTime;
- public $level;
-
-
- public function setDeliveryTime($deliveryTime)
- {
- $this->deliveryTime = $deliveryTime;
- }
- public function getDeliveryTime()
- {
- return $this->deliveryTime;
- }
- public function setLevel($level)
- {
- $this->level = $level;
- }
- public function getLevel()
- {
- return $this->level;
- }
-}
-
-class Postman_Google_Service_Mirror_Setting extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $value;
-
-
- 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 setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Mirror_Subscription extends Postman_Google_Collection
-{
- protected $collection_key = 'operation';
- protected $internal_gapi_mappings = array(
- );
- public $callbackUrl;
- public $collection;
- public $id;
- public $kind;
- protected $notificationType = 'Postman_Google_Service_Mirror_Notification';
- protected $notificationDataType = '';
- public $operation;
- public $updated;
- public $userToken;
- public $verifyToken;
-
-
- public function setCallbackUrl($callbackUrl)
- {
- $this->callbackUrl = $callbackUrl;
- }
- public function getCallbackUrl()
- {
- return $this->callbackUrl;
- }
- public function setCollection($collection)
- {
- $this->collection = $collection;
- }
- public function getCollection()
- {
- return $this->collection;
- }
- 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 setNotification(Postman_Google_Service_Mirror_Notification $notification)
- {
- $this->notification = $notification;
- }
- public function getNotification()
- {
- return $this->notification;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUserToken($userToken)
- {
- $this->userToken = $userToken;
- }
- public function getUserToken()
- {
- return $this->userToken;
- }
- public function setVerifyToken($verifyToken)
- {
- $this->verifyToken = $verifyToken;
- }
- public function getVerifyToken()
- {
- return $this->verifyToken;
- }
-}
-
-class Postman_Google_Service_Mirror_SubscriptionsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Mirror_Subscription';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Mirror_TimelineItem extends Postman_Google_Collection
-{
- protected $collection_key = 'recipients';
- protected $internal_gapi_mappings = array(
- );
- protected $attachmentsType = 'Postman_Google_Service_Mirror_Attachment';
- protected $attachmentsDataType = 'array';
- public $bundleId;
- public $canonicalUrl;
- public $created;
- protected $creatorType = 'Postman_Google_Service_Mirror_Contact';
- protected $creatorDataType = '';
- public $displayTime;
- public $etag;
- public $html;
- public $id;
- public $inReplyTo;
- public $isBundleCover;
- public $isDeleted;
- public $isPinned;
- public $kind;
- protected $locationType = 'Postman_Google_Service_Mirror_Location';
- protected $locationDataType = '';
- protected $menuItemsType = 'Postman_Google_Service_Mirror_MenuItem';
- protected $menuItemsDataType = 'array';
- protected $notificationType = 'Postman_Google_Service_Mirror_NotificationConfig';
- protected $notificationDataType = '';
- public $pinScore;
- protected $recipientsType = 'Postman_Google_Service_Mirror_Contact';
- protected $recipientsDataType = 'array';
- public $selfLink;
- public $sourceItemId;
- public $speakableText;
- public $speakableType;
- public $text;
- public $title;
- public $updated;
-
-
- public function setAttachments($attachments)
- {
- $this->attachments = $attachments;
- }
- public function getAttachments()
- {
- return $this->attachments;
- }
- public function setBundleId($bundleId)
- {
- $this->bundleId = $bundleId;
- }
- public function getBundleId()
- {
- return $this->bundleId;
- }
- public function setCanonicalUrl($canonicalUrl)
- {
- $this->canonicalUrl = $canonicalUrl;
- }
- public function getCanonicalUrl()
- {
- return $this->canonicalUrl;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- public function setCreator(Postman_Google_Service_Mirror_Contact $creator)
- {
- $this->creator = $creator;
- }
- public function getCreator()
- {
- return $this->creator;
- }
- public function setDisplayTime($displayTime)
- {
- $this->displayTime = $displayTime;
- }
- public function getDisplayTime()
- {
- return $this->displayTime;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setHtml($html)
- {
- $this->html = $html;
- }
- public function getHtml()
- {
- return $this->html;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInReplyTo($inReplyTo)
- {
- $this->inReplyTo = $inReplyTo;
- }
- public function getInReplyTo()
- {
- return $this->inReplyTo;
- }
- public function setIsBundleCover($isBundleCover)
- {
- $this->isBundleCover = $isBundleCover;
- }
- public function getIsBundleCover()
- {
- return $this->isBundleCover;
- }
- public function setIsDeleted($isDeleted)
- {
- $this->isDeleted = $isDeleted;
- }
- public function getIsDeleted()
- {
- return $this->isDeleted;
- }
- public function setIsPinned($isPinned)
- {
- $this->isPinned = $isPinned;
- }
- public function getIsPinned()
- {
- return $this->isPinned;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLocation(Postman_Google_Service_Mirror_Location $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMenuItems($menuItems)
- {
- $this->menuItems = $menuItems;
- }
- public function getMenuItems()
- {
- return $this->menuItems;
- }
- public function setNotification(Postman_Google_Service_Mirror_NotificationConfig $notification)
- {
- $this->notification = $notification;
- }
- public function getNotification()
- {
- return $this->notification;
- }
- public function setPinScore($pinScore)
- {
- $this->pinScore = $pinScore;
- }
- public function getPinScore()
- {
- return $this->pinScore;
- }
- public function setRecipients($recipients)
- {
- $this->recipients = $recipients;
- }
- public function getRecipients()
- {
- return $this->recipients;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSourceItemId($sourceItemId)
- {
- $this->sourceItemId = $sourceItemId;
- }
- public function getSourceItemId()
- {
- return $this->sourceItemId;
- }
- public function setSpeakableText($speakableText)
- {
- $this->speakableText = $speakableText;
- }
- public function getSpeakableText()
- {
- return $this->speakableText;
- }
- public function setSpeakableType($speakableType)
- {
- $this->speakableType = $speakableType;
- }
- public function getSpeakableType()
- {
- return $this->speakableType;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Mirror_TimelineListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Mirror_TimelineItem';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Mirror_UserAction extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $payload;
- public $type;
-
-
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Mirror_UserData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Oauth2.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Oauth2.php
deleted file mode 100644
index f4cd0c3..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Oauth2.php
+++ /dev/null
@@ -1,390 +0,0 @@
-
- * Lets you access OAuth2 protocol related APIs.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Oauth2 extends Postman_Google_Service -{ - /** Know your basic profile info and list of people in your circles.. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - /** Know who you are on Google. */ - const PLUS_ME = - "https://www.googleapis.com/auth/plus.me"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** View your basic profile info. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $userinfo; - public $userinfo_v2_me; - private $base_methods; - - /** - * Constructs the internal representation of the Oauth2 service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = ''; - $this->version = 'v2'; - $this->serviceName = 'oauth2'; - - $this->userinfo = new Postman_Google_Service_Oauth2_Userinfo_Resource( - $this, - $this->serviceName, - 'userinfo', - array( - 'methods' => array( - 'get' => array( - 'path' => 'oauth2/v2/userinfo', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->userinfo_v2_me = new Postman_Google_Service_Oauth2_UserinfoV2Me_Resource( - $this, - $this->serviceName, - 'me', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userinfo/v2/me', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->base_methods = new Postman_Google_Service_Resource( - $this, - $this->serviceName, - '', - array( - 'methods' => array( - 'tokeninfo' => array( - 'path' => 'oauth2/v2/tokeninfo', - 'httpMethod' => 'POST', - 'parameters' => array( - 'access_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } - /** - * (tokeninfo) - * - * @param array $optParams Optional parameters. - * - * @opt_param string access_token - * @opt_param string id_token - * @return Postman_Google_Service_Oauth2_Tokeninfo - */ - public function tokeninfo($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('tokeninfo', array($params), "Postman_Google_Service_Oauth2_Tokeninfo"); - } -} - - -/** - * The "userinfo" collection of methods. - * Typical usage is: - *
- * $oauth2Service = new Postman_Google_Service_Oauth2(...);
- * $userinfo = $oauth2Service->userinfo;
- *
- */
-class Postman_Google_Service_Oauth2_Userinfo_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (userinfo.get)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Oauth2_Userinfoplus
- */
- public function get($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Oauth2_Userinfoplus");
- }
-}
-
-/**
- * The "v2" collection of methods.
- * Typical usage is:
- *
- * $oauth2Service = new Postman_Google_Service_Oauth2(...);
- * $v2 = $oauth2Service->v2;
- *
- */
-class Postman_Google_Service_Oauth2_UserinfoV2_Resource extends Postman_Google_Service_Resource
-{
-}
-
-/**
- * The "me" collection of methods.
- * Typical usage is:
- *
- * $oauth2Service = new Postman_Google_Service_Oauth2(...);
- * $me = $oauth2Service->me;
- *
- */
-class Postman_Google_Service_Oauth2_UserinfoV2Me_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (me.get)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Oauth2_Userinfoplus
- */
- public function get($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Oauth2_Userinfoplus");
- }
-}
-
-
-
-
-class Postman_Google_Service_Oauth2_Tokeninfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "accessType" => "access_type",
- "expiresIn" => "expires_in",
- "issuedTo" => "issued_to",
- "userId" => "user_id",
- "verifiedEmail" => "verified_email",
- );
- public $accessType;
- public $audience;
- public $email;
- public $expiresIn;
- public $issuedTo;
- public $scope;
- public $userId;
- public $verifiedEmail;
-
-
- public function setAccessType($accessType)
- {
- $this->accessType = $accessType;
- }
- public function getAccessType()
- {
- return $this->accessType;
- }
- public function setAudience($audience)
- {
- $this->audience = $audience;
- }
- public function getAudience()
- {
- return $this->audience;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setExpiresIn($expiresIn)
- {
- $this->expiresIn = $expiresIn;
- }
- public function getExpiresIn()
- {
- return $this->expiresIn;
- }
- public function setIssuedTo($issuedTo)
- {
- $this->issuedTo = $issuedTo;
- }
- public function getIssuedTo()
- {
- return $this->issuedTo;
- }
- public function setScope($scope)
- {
- $this->scope = $scope;
- }
- public function getScope()
- {
- return $this->scope;
- }
- public function setUserId($userId)
- {
- $this->userId = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
- public function setVerifiedEmail($verifiedEmail)
- {
- $this->verifiedEmail = $verifiedEmail;
- }
- public function getVerifiedEmail()
- {
- return $this->verifiedEmail;
- }
-}
-
-class Postman_Google_Service_Oauth2_Userinfoplus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "familyName" => "family_name",
- "givenName" => "given_name",
- "verifiedEmail" => "verified_email",
- );
- public $email;
- public $familyName;
- public $gender;
- public $givenName;
- public $hd;
- public $id;
- public $link;
- public $locale;
- public $name;
- public $picture;
- public $verifiedEmail;
-
-
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setGender($gender)
- {
- $this->gender = $gender;
- }
- public function getGender()
- {
- return $this->gender;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
- public function setHd($hd)
- {
- $this->hd = $hd;
- }
- public function getHd()
- {
- return $this->hd;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setLocale($locale)
- {
- $this->locale = $locale;
- }
- public function getLocale()
- {
- return $this->locale;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPicture($picture)
- {
- $this->picture = $picture;
- }
- public function getPicture()
- {
- return $this->picture;
- }
- public function setVerifiedEmail($verifiedEmail)
- {
- $this->verifiedEmail = $verifiedEmail;
- }
- public function getVerifiedEmail()
- {
- return $this->verifiedEmail;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Pagespeedonline.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Pagespeedonline.php
deleted file mode 100644
index c3dfdc1..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Pagespeedonline.php
+++ /dev/null
@@ -1,721 +0,0 @@
-
- * Lets you analyze the performance of a web page and get tailored suggestions
- * to make that page faster.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Pagespeedonline extends Postman_Google_Service -{ - - - public $pagespeedapi; - - - /** - * Constructs the internal representation of the Pagespeedonline service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'pagespeedonline/v1/'; - $this->version = 'v1'; - $this->serviceName = 'pagespeedonline'; - - $this->pagespeedapi = new Postman_Google_Service_Pagespeedonline_Pagespeedapi_Resource( - $this, - $this->serviceName, - 'pagespeedapi', - array( - 'methods' => array( - 'runpagespeed' => array( - 'path' => 'runPagespeed', - 'httpMethod' => 'GET', - 'parameters' => array( - 'url' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'screenshot' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'rule' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'strategy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter_third_party_resources' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "pagespeedapi" collection of methods. - * Typical usage is: - *
- * $pagespeedonlineService = new Postman_Google_Service_Pagespeedonline(...);
- * $pagespeedapi = $pagespeedonlineService->pagespeedapi;
- *
- */
-class Postman_Google_Service_Pagespeedonline_Pagespeedapi_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Runs Page Speed analysis on the page at the specified URL, and returns a Page
- * Speed score, a list of suggestions to make that page faster, and other
- * information. (pagespeedapi.runpagespeed)
- *
- * @param string $url The URL to fetch and analyze
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool screenshot Indicates if binary data containing a screenshot
- * should be included
- * @opt_param string locale The locale used to localize formatted results
- * @opt_param string rule A Page Speed rule to run; if none are given, all rules
- * are run
- * @opt_param string strategy The analysis strategy to use
- * @opt_param bool filter_third_party_resources Indicates if third party
- * resources should be filtered out before PageSpeed analysis.
- * @return Postman_Google_Service_Pagespeedonline_Result
- */
- public function runpagespeed($url, $optParams = array())
- {
- $params = array('url' => $url);
- $params = array_merge($params, $optParams);
- return $this->call('runpagespeed', array($params), "Postman_Google_Service_Pagespeedonline_Result");
- }
-}
-
-
-
-
-class Postman_Google_Service_Pagespeedonline_Result extends Postman_Google_Collection
-{
- protected $collection_key = 'invalidRules';
- protected $internal_gapi_mappings = array(
- );
- protected $formattedResultsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResults';
- protected $formattedResultsDataType = '';
- public $id;
- public $invalidRules;
- public $kind;
- protected $pageStatsType = 'Postman_Google_Service_Pagespeedonline_ResultPageStats';
- protected $pageStatsDataType = '';
- public $responseCode;
- public $score;
- protected $screenshotType = 'Postman_Google_Service_Pagespeedonline_ResultScreenshot';
- protected $screenshotDataType = '';
- public $title;
- protected $versionType = 'Postman_Google_Service_Pagespeedonline_ResultVersion';
- protected $versionDataType = '';
-
-
- public function setFormattedResults(Postman_Google_Service_Pagespeedonline_ResultFormattedResults $formattedResults)
- {
- $this->formattedResults = $formattedResults;
- }
- public function getFormattedResults()
- {
- return $this->formattedResults;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInvalidRules($invalidRules)
- {
- $this->invalidRules = $invalidRules;
- }
- public function getInvalidRules()
- {
- return $this->invalidRules;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPageStats(Postman_Google_Service_Pagespeedonline_ResultPageStats $pageStats)
- {
- $this->pageStats = $pageStats;
- }
- public function getPageStats()
- {
- return $this->pageStats;
- }
- public function setResponseCode($responseCode)
- {
- $this->responseCode = $responseCode;
- }
- public function getResponseCode()
- {
- return $this->responseCode;
- }
- public function setScore($score)
- {
- $this->score = $score;
- }
- public function getScore()
- {
- return $this->score;
- }
- public function setScreenshot(Postman_Google_Service_Pagespeedonline_ResultScreenshot $screenshot)
- {
- $this->screenshot = $screenshot;
- }
- public function getScreenshot()
- {
- return $this->screenshot;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setVersion(Postman_Google_Service_Pagespeedonline_ResultVersion $version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResults extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $locale;
- protected $ruleResultsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElement';
- protected $ruleResultsDataType = 'map';
-
-
- public function setLocale($locale)
- {
- $this->locale = $locale;
- }
- public function getLocale()
- {
- return $this->locale;
- }
- public function setRuleResults($ruleResults)
- {
- $this->ruleResults = $ruleResults;
- }
- public function getRuleResults()
- {
- return $this->ruleResults;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResults extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElement extends Postman_Google_Collection
-{
- protected $collection_key = 'urlBlocks';
- protected $internal_gapi_mappings = array(
- );
- public $localizedRuleName;
- public $ruleImpact;
- protected $urlBlocksType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocks';
- protected $urlBlocksDataType = 'array';
-
-
- public function setLocalizedRuleName($localizedRuleName)
- {
- $this->localizedRuleName = $localizedRuleName;
- }
- public function getLocalizedRuleName()
- {
- return $this->localizedRuleName;
- }
- public function setRuleImpact($ruleImpact)
- {
- $this->ruleImpact = $ruleImpact;
- }
- public function getRuleImpact()
- {
- return $this->ruleImpact;
- }
- public function setUrlBlocks($urlBlocks)
- {
- $this->urlBlocks = $urlBlocks;
- }
- public function getUrlBlocks()
- {
- return $this->urlBlocks;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocks extends Postman_Google_Collection
-{
- protected $collection_key = 'urls';
- protected $internal_gapi_mappings = array(
- );
- protected $headerType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksHeader';
- protected $headerDataType = '';
- protected $urlsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrls';
- protected $urlsDataType = 'array';
-
-
- public function setHeader(Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksHeader $header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
- public function setUrls($urls)
- {
- $this->urls = $urls;
- }
- public function getUrls()
- {
- return $this->urls;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksHeader extends Postman_Google_Collection
-{
- protected $collection_key = 'args';
- protected $internal_gapi_mappings = array(
- );
- protected $argsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksHeaderArgs';
- protected $argsDataType = 'array';
- public $format;
-
-
- public function setArgs($args)
- {
- $this->args = $args;
- }
- public function getArgs()
- {
- return $this->args;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksHeaderArgs extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrls extends Postman_Google_Collection
-{
- protected $collection_key = 'details';
- protected $internal_gapi_mappings = array(
- );
- protected $detailsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsDetails';
- protected $detailsDataType = 'array';
- protected $resultType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsResult';
- protected $resultDataType = '';
-
-
- public function setDetails($details)
- {
- $this->details = $details;
- }
- public function getDetails()
- {
- return $this->details;
- }
- public function setResult(Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsResult $result)
- {
- $this->result = $result;
- }
- public function getResult()
- {
- return $this->result;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'args';
- protected $internal_gapi_mappings = array(
- );
- protected $argsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsDetailsArgs';
- protected $argsDataType = 'array';
- public $format;
-
-
- public function setArgs($args)
- {
- $this->args = $args;
- }
- public function getArgs()
- {
- return $this->args;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsDetailsArgs extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsResult extends Postman_Google_Collection
-{
- protected $collection_key = 'args';
- protected $internal_gapi_mappings = array(
- );
- protected $argsType = 'Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsResultArgs';
- protected $argsDataType = 'array';
- public $format;
-
-
- public function setArgs($args)
- {
- $this->args = $args;
- }
- public function getArgs()
- {
- return $this->args;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultFormattedResultsRuleResultsElementUrlBlocksUrlsResultArgs extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultPageStats extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $cssResponseBytes;
- public $flashResponseBytes;
- public $htmlResponseBytes;
- public $imageResponseBytes;
- public $javascriptResponseBytes;
- public $numberCssResources;
- public $numberHosts;
- public $numberJsResources;
- public $numberResources;
- public $numberStaticResources;
- public $otherResponseBytes;
- public $textResponseBytes;
- public $totalRequestBytes;
-
-
- public function setCssResponseBytes($cssResponseBytes)
- {
- $this->cssResponseBytes = $cssResponseBytes;
- }
- public function getCssResponseBytes()
- {
- return $this->cssResponseBytes;
- }
- public function setFlashResponseBytes($flashResponseBytes)
- {
- $this->flashResponseBytes = $flashResponseBytes;
- }
- public function getFlashResponseBytes()
- {
- return $this->flashResponseBytes;
- }
- public function setHtmlResponseBytes($htmlResponseBytes)
- {
- $this->htmlResponseBytes = $htmlResponseBytes;
- }
- public function getHtmlResponseBytes()
- {
- return $this->htmlResponseBytes;
- }
- public function setImageResponseBytes($imageResponseBytes)
- {
- $this->imageResponseBytes = $imageResponseBytes;
- }
- public function getImageResponseBytes()
- {
- return $this->imageResponseBytes;
- }
- public function setJavascriptResponseBytes($javascriptResponseBytes)
- {
- $this->javascriptResponseBytes = $javascriptResponseBytes;
- }
- public function getJavascriptResponseBytes()
- {
- return $this->javascriptResponseBytes;
- }
- public function setNumberCssResources($numberCssResources)
- {
- $this->numberCssResources = $numberCssResources;
- }
- public function getNumberCssResources()
- {
- return $this->numberCssResources;
- }
- public function setNumberHosts($numberHosts)
- {
- $this->numberHosts = $numberHosts;
- }
- public function getNumberHosts()
- {
- return $this->numberHosts;
- }
- public function setNumberJsResources($numberJsResources)
- {
- $this->numberJsResources = $numberJsResources;
- }
- public function getNumberJsResources()
- {
- return $this->numberJsResources;
- }
- public function setNumberResources($numberResources)
- {
- $this->numberResources = $numberResources;
- }
- public function getNumberResources()
- {
- return $this->numberResources;
- }
- public function setNumberStaticResources($numberStaticResources)
- {
- $this->numberStaticResources = $numberStaticResources;
- }
- public function getNumberStaticResources()
- {
- return $this->numberStaticResources;
- }
- public function setOtherResponseBytes($otherResponseBytes)
- {
- $this->otherResponseBytes = $otherResponseBytes;
- }
- public function getOtherResponseBytes()
- {
- return $this->otherResponseBytes;
- }
- public function setTextResponseBytes($textResponseBytes)
- {
- $this->textResponseBytes = $textResponseBytes;
- }
- public function getTextResponseBytes()
- {
- return $this->textResponseBytes;
- }
- public function setTotalRequestBytes($totalRequestBytes)
- {
- $this->totalRequestBytes = $totalRequestBytes;
- }
- public function getTotalRequestBytes()
- {
- return $this->totalRequestBytes;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultScreenshot extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "mimeType" => "mime_type",
- );
- public $data;
- public $height;
- public $mimeType;
- public $width;
-
-
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setMimeType($mimeType)
- {
- $this->mimeType = $mimeType;
- }
- public function getMimeType()
- {
- return $this->mimeType;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Pagespeedonline_ResultVersion extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $major;
- public $minor;
-
-
- public function setMajor($major)
- {
- $this->major = $major;
- }
- public function getMajor()
- {
- return $this->major;
- }
- public function setMinor($minor)
- {
- $this->minor = $minor;
- }
- public function getMinor()
- {
- return $this->minor;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Plus.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Plus.php
deleted file mode 100644
index 70aa159..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Plus.php
+++ /dev/null
@@ -1,3498 +0,0 @@
-
- * The Google+ API enables developers to build on top of the Google+ platform.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Plus extends Postman_Google_Service -{ - /** Know your basic profile info and list of people in your circles.. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - /** Know who you are on Google. */ - const PLUS_ME = - "https://www.googleapis.com/auth/plus.me"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** View your basic profile info. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $activities; - public $comments; - public $moments; - public $people; - - - /** - * Constructs the internal representation of the Plus service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'plus/v1/'; - $this->version = 'v1'; - $this->serviceName = 'plus'; - - $this->activities = new Postman_Google_Service_Plus_Activities_Resource( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'get' => array( - 'path' => 'activities/{activityId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/activities/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'search' => array( - 'path' => 'activities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'query' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->comments = new Postman_Google_Service_Plus_Comments_Resource( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'get' => array( - 'path' => 'comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'activities/{activityId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->moments = new Postman_Google_Service_Plus_Moments_Resource( - $this, - $this->serviceName, - 'moments', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'people/{userId}/moments/{collection}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debug' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/moments/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'targetUrl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'remove' => array( - 'path' => 'moments/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->people = new Postman_Google_Service_Plus_People_Resource( - $this, - $this->serviceName, - 'people', - array( - 'methods' => array( - 'get' => array( - 'path' => 'people/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'listByActivity' => array( - 'path' => 'activities/{activityId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'search' => array( - 'path' => 'people', - 'httpMethod' => 'GET', - 'parameters' => array( - 'query' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "activities" collection of methods. - * Typical usage is: - *
- * $plusService = new Postman_Google_Service_Plus(...);
- * $activities = $plusService->activities;
- *
- */
-class Postman_Google_Service_Plus_Activities_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get an activity. (activities.get)
- *
- * @param string $activityId The ID of the activity to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Plus_Activity
- */
- public function get($activityId, $optParams = array())
- {
- $params = array('activityId' => $activityId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Plus_Activity");
- }
-
- /**
- * List all of the activities in the specified collection for a particular user.
- * (activities.listActivities)
- *
- * @param string $userId The ID of the user to get activities for. The special
- * value "me" can be used to indicate the authenticated user.
- * @param string $collection The collection of activities to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of activities to include in
- * the response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_Plus_ActivityFeed
- */
- public function listActivities($userId, $collection, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Plus_ActivityFeed");
- }
-
- /**
- * Search public activities. (activities.search)
- *
- * @param string $query Full-text search query string.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy Specifies how to order search results.
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response. This
- * token can be of any length.
- * @opt_param string maxResults The maximum number of activities to include in
- * the response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @opt_param string language Specify the preferred language to search with. See
- * search language codes for available values.
- * @return Postman_Google_Service_Plus_ActivityFeed
- */
- public function search($query, $optParams = array())
- {
- $params = array('query' => $query);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Plus_ActivityFeed");
- }
-}
-
-/**
- * The "comments" collection of methods.
- * Typical usage is:
- *
- * $plusService = new Postman_Google_Service_Plus(...);
- * $comments = $plusService->comments;
- *
- */
-class Postman_Google_Service_Plus_Comments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get a comment. (comments.get)
- *
- * @param string $commentId The ID of the comment to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Plus_Comment
- */
- public function get($commentId, $optParams = array())
- {
- $params = array('commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Plus_Comment");
- }
-
- /**
- * List all of the comments for an activity. (comments.listComments)
- *
- * @param string $activityId The ID of the activity to get comments for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string sortOrder The order in which to sort the list of comments.
- * @opt_param string maxResults The maximum number of comments to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_Plus_CommentFeed
- */
- public function listComments($activityId, $optParams = array())
- {
- $params = array('activityId' => $activityId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Plus_CommentFeed");
- }
-}
-
-/**
- * The "moments" collection of methods.
- * Typical usage is:
- *
- * $plusService = new Postman_Google_Service_Plus(...);
- * $moments = $plusService->moments;
- *
- */
-class Postman_Google_Service_Plus_Moments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Record a moment representing a user's action such as making a purchase or
- * commenting on a blog. (moments.insert)
- *
- * @param string $userId The ID of the user to record actions for. The only
- * valid values are "me" and the ID of the authenticated user.
- * @param string $collection The collection to which to write moments.
- * @param Postman_Google_Moment $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool debug Return the moment as written. Should be used only for
- * debugging.
- * @return Postman_Google_Service_Plus_Moment
- */
- public function insert($userId, $collection, Postman_Google_Service_Plus_Moment $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Plus_Moment");
- }
-
- /**
- * List all of the moments for a particular user. (moments.listMoments)
- *
- * @param string $userId The ID of the user to get moments for. The special
- * value "me" can be used to indicate the authenticated user.
- * @param string $collection The collection of moments to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxResults The maximum number of moments to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string targetUrl Only moments containing this targetUrl will be
- * returned.
- * @opt_param string type Only moments of this type will be returned.
- * @return Postman_Google_Service_Plus_MomentsFeed
- */
- public function listMoments($userId, $collection, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Plus_MomentsFeed");
- }
-
- /**
- * Delete a moment. (moments.remove)
- *
- * @param string $id The ID of the moment to delete.
- * @param array $optParams Optional parameters.
- */
- public function remove($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('remove', array($params));
- }
-}
-
-/**
- * The "people" collection of methods.
- * Typical usage is:
- *
- * $plusService = new Postman_Google_Service_Plus(...);
- * $people = $plusService->people;
- *
- */
-class Postman_Google_Service_Plus_People_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get a person's profile. If your app uses scope
- * https://www.googleapis.com/auth/plus.login, this method is guaranteed to
- * return ageRange and language. (people.get)
- *
- * @param string $userId The ID of the person to get the profile for. The
- * special value "me" can be used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Plus_Person
- */
- public function get($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Plus_Person");
- }
-
- /**
- * List all of the people in the specified collection. (people.listPeople)
- *
- * @param string $userId Get the collection of people for the person identified.
- * Use "me" to indicate the authenticated user.
- * @param string $collection The collection of people to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy The order to return people in.
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of people to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_Plus_PeopleFeed
- */
- public function listPeople($userId, $collection, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Plus_PeopleFeed");
- }
-
- /**
- * List all of the people in the specified collection for a particular activity.
- * (people.listByActivity)
- *
- * @param string $activityId The ID of the activity to get the list of people
- * for.
- * @param string $collection The collection of people to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of people to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_Plus_PeopleFeed
- */
- public function listByActivity($activityId, $collection, $optParams = array())
- {
- $params = array('activityId' => $activityId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('listByActivity', array($params), "Postman_Google_Service_Plus_PeopleFeed");
- }
-
- /**
- * Search all public profiles. (people.search)
- *
- * @param string $query Specify a query string for full text search of public
- * text in all profiles.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response. This
- * token can be of any length.
- * @opt_param string maxResults The maximum number of people to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @opt_param string language Specify the preferred language to search with. See
- * search language codes for available values.
- * @return Postman_Google_Service_Plus_PeopleFeed
- */
- public function search($query, $optParams = array())
- {
- $params = array('query' => $query);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_Plus_PeopleFeed");
- }
-}
-
-
-
-
-class Postman_Google_Service_Plus_Acl extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $description;
- protected $itemsType = 'Postman_Google_Service_Plus_PlusAclentryResource';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Plus_Activity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accessType = 'Postman_Google_Service_Plus_Acl';
- protected $accessDataType = '';
- protected $actorType = 'Postman_Google_Service_Plus_ActivityActor';
- protected $actorDataType = '';
- public $address;
- public $annotation;
- public $crosspostSource;
- public $etag;
- public $geocode;
- public $id;
- public $kind;
- protected $locationType = 'Postman_Google_Service_Plus_Place';
- protected $locationDataType = '';
- protected $objectType = 'Postman_Google_Service_Plus_ActivityObject';
- protected $objectDataType = '';
- public $placeId;
- public $placeName;
- protected $providerType = 'Postman_Google_Service_Plus_ActivityProvider';
- protected $providerDataType = '';
- public $published;
- public $radius;
- public $title;
- public $updated;
- public $url;
- public $verb;
-
-
- public function setAccess(Postman_Google_Service_Plus_Acl $access)
- {
- $this->access = $access;
- }
- public function getAccess()
- {
- return $this->access;
- }
- public function setActor(Postman_Google_Service_Plus_ActivityActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setAnnotation($annotation)
- {
- $this->annotation = $annotation;
- }
- public function getAnnotation()
- {
- return $this->annotation;
- }
- public function setCrosspostSource($crosspostSource)
- {
- $this->crosspostSource = $crosspostSource;
- }
- public function getCrosspostSource()
- {
- return $this->crosspostSource;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGeocode($geocode)
- {
- $this->geocode = $geocode;
- }
- public function getGeocode()
- {
- return $this->geocode;
- }
- 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 setLocation(Postman_Google_Service_Plus_Place $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setObject(Postman_Google_Service_Plus_ActivityObject $object)
- {
- $this->object = $object;
- }
- public function getObject()
- {
- return $this->object;
- }
- public function setPlaceId($placeId)
- {
- $this->placeId = $placeId;
- }
- public function getPlaceId()
- {
- return $this->placeId;
- }
- public function setPlaceName($placeName)
- {
- $this->placeName = $placeName;
- }
- public function getPlaceName()
- {
- return $this->placeName;
- }
- public function setProvider(Postman_Google_Service_Plus_ActivityProvider $provider)
- {
- $this->provider = $provider;
- }
- public function getProvider()
- {
- return $this->provider;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setRadius($radius)
- {
- $this->radius = $radius;
- }
- public function getRadius()
- {
- return $this->radius;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setVerb($verb)
- {
- $this->verb = $verb;
- }
- public function getVerb()
- {
- return $this->verb;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_Plus_ActivityActorImage';
- protected $imageDataType = '';
- protected $nameType = 'Postman_Google_Service_Plus_ActivityActorName';
- protected $nameDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Plus_ActivityActorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setName(Postman_Google_Service_Plus_ActivityActorName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityActorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityActorName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $givenName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- protected $itemsType = 'Postman_Google_Service_Plus_Activity';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
- public $title;
- public $updated;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObject extends Postman_Google_Collection
-{
- protected $collection_key = 'attachments';
- protected $internal_gapi_mappings = array(
- );
- protected $actorType = 'Postman_Google_Service_Plus_ActivityObjectActor';
- protected $actorDataType = '';
- protected $attachmentsType = 'Postman_Google_Service_Plus_ActivityObjectAttachments';
- protected $attachmentsDataType = 'array';
- public $content;
- public $id;
- public $objectType;
- public $originalContent;
- protected $plusonersType = 'Postman_Google_Service_Plus_ActivityObjectPlusoners';
- protected $plusonersDataType = '';
- protected $repliesType = 'Postman_Google_Service_Plus_ActivityObjectReplies';
- protected $repliesDataType = '';
- protected $resharersType = 'Postman_Google_Service_Plus_ActivityObjectResharers';
- protected $resharersDataType = '';
- public $url;
-
-
- public function setActor(Postman_Google_Service_Plus_ActivityObjectActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setAttachments($attachments)
- {
- $this->attachments = $attachments;
- }
- public function getAttachments()
- {
- return $this->attachments;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOriginalContent($originalContent)
- {
- $this->originalContent = $originalContent;
- }
- public function getOriginalContent()
- {
- return $this->originalContent;
- }
- public function setPlusoners(Postman_Google_Service_Plus_ActivityObjectPlusoners $plusoners)
- {
- $this->plusoners = $plusoners;
- }
- public function getPlusoners()
- {
- return $this->plusoners;
- }
- public function setReplies(Postman_Google_Service_Plus_ActivityObjectReplies $replies)
- {
- $this->replies = $replies;
- }
- public function getReplies()
- {
- return $this->replies;
- }
- public function setResharers(Postman_Google_Service_Plus_ActivityObjectResharers $resharers)
- {
- $this->resharers = $resharers;
- }
- public function getResharers()
- {
- return $this->resharers;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_Plus_ActivityObjectActorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Plus_ActivityObjectActorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectActorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectAttachments extends Postman_Google_Collection
-{
- protected $collection_key = 'thumbnails';
- protected $internal_gapi_mappings = array(
- );
- public $content;
- public $displayName;
- protected $embedType = 'Postman_Google_Service_Plus_ActivityObjectAttachmentsEmbed';
- protected $embedDataType = '';
- protected $fullImageType = 'Postman_Google_Service_Plus_ActivityObjectAttachmentsFullImage';
- protected $fullImageDataType = '';
- public $id;
- protected $imageType = 'Postman_Google_Service_Plus_ActivityObjectAttachmentsImage';
- protected $imageDataType = '';
- public $objectType;
- protected $thumbnailsType = 'Postman_Google_Service_Plus_ActivityObjectAttachmentsThumbnails';
- protected $thumbnailsDataType = 'array';
- public $url;
-
-
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmbed(Postman_Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
- {
- $this->embed = $embed;
- }
- public function getEmbed()
- {
- return $this->embed;
- }
- public function setFullImage(Postman_Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
- {
- $this->fullImage = $fullImage;
- }
- public function getFullImage()
- {
- return $this->fullImage;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Plus_ActivityObjectAttachmentsImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setThumbnails($thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $url;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectAttachmentsImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- protected $imageType = 'Postman_Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setImage(Postman_Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectPlusoners extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectReplies extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityObjectResharers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Plus_ActivityProvider extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $title;
-
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_Plus_Comment extends Postman_Google_Collection
-{
- protected $collection_key = 'inReplyTo';
- protected $internal_gapi_mappings = array(
- );
- protected $actorType = 'Postman_Google_Service_Plus_CommentActor';
- protected $actorDataType = '';
- public $etag;
- public $id;
- protected $inReplyToType = 'Postman_Google_Service_Plus_CommentInReplyTo';
- protected $inReplyToDataType = 'array';
- public $kind;
- protected $objectType = 'Postman_Google_Service_Plus_CommentObject';
- protected $objectDataType = '';
- protected $plusonersType = 'Postman_Google_Service_Plus_CommentPlusoners';
- protected $plusonersDataType = '';
- public $published;
- public $selfLink;
- public $updated;
- public $verb;
-
-
- public function setActor(Postman_Google_Service_Plus_CommentActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInReplyTo($inReplyTo)
- {
- $this->inReplyTo = $inReplyTo;
- }
- public function getInReplyTo()
- {
- return $this->inReplyTo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setObject(Postman_Google_Service_Plus_CommentObject $object)
- {
- $this->object = $object;
- }
- public function getObject()
- {
- return $this->object;
- }
- public function setPlusoners(Postman_Google_Service_Plus_CommentPlusoners $plusoners)
- {
- $this->plusoners = $plusoners;
- }
- public function getPlusoners()
- {
- return $this->plusoners;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVerb($verb)
- {
- $this->verb = $verb;
- }
- public function getVerb()
- {
- return $this->verb;
- }
-}
-
-class Postman_Google_Service_Plus_CommentActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_Plus_CommentActorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Plus_CommentActorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_CommentActorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_CommentFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- protected $itemsType = 'Postman_Google_Service_Plus_Comment';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $title;
- public $updated;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Plus_CommentInReplyTo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $url;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_CommentObject extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $content;
- public $objectType;
- public $originalContent;
-
-
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOriginalContent($originalContent)
- {
- $this->originalContent = $originalContent;
- }
- public function getOriginalContent()
- {
- return $this->originalContent;
- }
-}
-
-class Postman_Google_Service_Plus_CommentPlusoners extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $totalItems;
-
-
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Plus_ItemScope extends Postman_Google_Collection
-{
- protected $collection_key = 'performers';
- protected $internal_gapi_mappings = array(
- "associatedMedia" => "associated_media",
- );
- protected $aboutType = 'Postman_Google_Service_Plus_ItemScope';
- protected $aboutDataType = '';
- public $additionalName;
- protected $addressType = 'Postman_Google_Service_Plus_ItemScope';
- protected $addressDataType = '';
- public $addressCountry;
- public $addressLocality;
- public $addressRegion;
- protected $associatedMediaType = 'Postman_Google_Service_Plus_ItemScope';
- protected $associatedMediaDataType = 'array';
- public $attendeeCount;
- protected $attendeesType = 'Postman_Google_Service_Plus_ItemScope';
- protected $attendeesDataType = 'array';
- protected $audioType = 'Postman_Google_Service_Plus_ItemScope';
- protected $audioDataType = '';
- protected $authorType = 'Postman_Google_Service_Plus_ItemScope';
- protected $authorDataType = 'array';
- public $bestRating;
- public $birthDate;
- protected $byArtistType = 'Postman_Google_Service_Plus_ItemScope';
- protected $byArtistDataType = '';
- public $caption;
- public $contentSize;
- public $contentUrl;
- protected $contributorType = 'Postman_Google_Service_Plus_ItemScope';
- protected $contributorDataType = 'array';
- public $dateCreated;
- public $dateModified;
- public $datePublished;
- public $description;
- public $duration;
- public $embedUrl;
- public $endDate;
- public $familyName;
- public $gender;
- protected $geoType = 'Postman_Google_Service_Plus_ItemScope';
- protected $geoDataType = '';
- public $givenName;
- public $height;
- public $id;
- public $image;
- protected $inAlbumType = 'Postman_Google_Service_Plus_ItemScope';
- protected $inAlbumDataType = '';
- public $kind;
- public $latitude;
- protected $locationType = 'Postman_Google_Service_Plus_ItemScope';
- protected $locationDataType = '';
- public $longitude;
- public $name;
- protected $partOfTVSeriesType = 'Postman_Google_Service_Plus_ItemScope';
- protected $partOfTVSeriesDataType = '';
- protected $performersType = 'Postman_Google_Service_Plus_ItemScope';
- protected $performersDataType = 'array';
- public $playerType;
- public $postOfficeBoxNumber;
- public $postalCode;
- public $ratingValue;
- protected $reviewRatingType = 'Postman_Google_Service_Plus_ItemScope';
- protected $reviewRatingDataType = '';
- public $startDate;
- public $streetAddress;
- public $text;
- protected $thumbnailType = 'Postman_Google_Service_Plus_ItemScope';
- protected $thumbnailDataType = '';
- public $thumbnailUrl;
- public $tickerSymbol;
- public $type;
- public $url;
- public $width;
- public $worstRating;
-
-
- public function setAbout(Postman_Google_Service_Plus_ItemScope $about)
- {
- $this->about = $about;
- }
- public function getAbout()
- {
- return $this->about;
- }
- public function setAdditionalName($additionalName)
- {
- $this->additionalName = $additionalName;
- }
- public function getAdditionalName()
- {
- return $this->additionalName;
- }
- public function setAddress(Postman_Google_Service_Plus_ItemScope $address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setAddressCountry($addressCountry)
- {
- $this->addressCountry = $addressCountry;
- }
- public function getAddressCountry()
- {
- return $this->addressCountry;
- }
- public function setAddressLocality($addressLocality)
- {
- $this->addressLocality = $addressLocality;
- }
- public function getAddressLocality()
- {
- return $this->addressLocality;
- }
- public function setAddressRegion($addressRegion)
- {
- $this->addressRegion = $addressRegion;
- }
- public function getAddressRegion()
- {
- return $this->addressRegion;
- }
- public function setAssociatedMedia($associatedMedia)
- {
- $this->associatedMedia = $associatedMedia;
- }
- public function getAssociatedMedia()
- {
- return $this->associatedMedia;
- }
- public function setAttendeeCount($attendeeCount)
- {
- $this->attendeeCount = $attendeeCount;
- }
- public function getAttendeeCount()
- {
- return $this->attendeeCount;
- }
- public function setAttendees($attendees)
- {
- $this->attendees = $attendees;
- }
- public function getAttendees()
- {
- return $this->attendees;
- }
- public function setAudio(Postman_Google_Service_Plus_ItemScope $audio)
- {
- $this->audio = $audio;
- }
- public function getAudio()
- {
- return $this->audio;
- }
- public function setAuthor($author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setBestRating($bestRating)
- {
- $this->bestRating = $bestRating;
- }
- public function getBestRating()
- {
- return $this->bestRating;
- }
- public function setBirthDate($birthDate)
- {
- $this->birthDate = $birthDate;
- }
- public function getBirthDate()
- {
- return $this->birthDate;
- }
- public function setByArtist(Postman_Google_Service_Plus_ItemScope $byArtist)
- {
- $this->byArtist = $byArtist;
- }
- public function getByArtist()
- {
- return $this->byArtist;
- }
- public function setCaption($caption)
- {
- $this->caption = $caption;
- }
- public function getCaption()
- {
- return $this->caption;
- }
- public function setContentSize($contentSize)
- {
- $this->contentSize = $contentSize;
- }
- public function getContentSize()
- {
- return $this->contentSize;
- }
- public function setContentUrl($contentUrl)
- {
- $this->contentUrl = $contentUrl;
- }
- public function getContentUrl()
- {
- return $this->contentUrl;
- }
- public function setContributor($contributor)
- {
- $this->contributor = $contributor;
- }
- public function getContributor()
- {
- return $this->contributor;
- }
- public function setDateCreated($dateCreated)
- {
- $this->dateCreated = $dateCreated;
- }
- public function getDateCreated()
- {
- return $this->dateCreated;
- }
- public function setDateModified($dateModified)
- {
- $this->dateModified = $dateModified;
- }
- public function getDateModified()
- {
- return $this->dateModified;
- }
- public function setDatePublished($datePublished)
- {
- $this->datePublished = $datePublished;
- }
- public function getDatePublished()
- {
- return $this->datePublished;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDuration($duration)
- {
- $this->duration = $duration;
- }
- public function getDuration()
- {
- return $this->duration;
- }
- public function setEmbedUrl($embedUrl)
- {
- $this->embedUrl = $embedUrl;
- }
- public function getEmbedUrl()
- {
- return $this->embedUrl;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setGender($gender)
- {
- $this->gender = $gender;
- }
- public function getGender()
- {
- return $this->gender;
- }
- public function setGeo(Postman_Google_Service_Plus_ItemScope $geo)
- {
- $this->geo = $geo;
- }
- public function getGeo()
- {
- return $this->geo;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage($image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setInAlbum(Postman_Google_Service_Plus_ItemScope $inAlbum)
- {
- $this->inAlbum = $inAlbum;
- }
- public function getInAlbum()
- {
- return $this->inAlbum;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLocation(Postman_Google_Service_Plus_ItemScope $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPartOfTVSeries(Postman_Google_Service_Plus_ItemScope $partOfTVSeries)
- {
- $this->partOfTVSeries = $partOfTVSeries;
- }
- public function getPartOfTVSeries()
- {
- return $this->partOfTVSeries;
- }
- public function setPerformers($performers)
- {
- $this->performers = $performers;
- }
- public function getPerformers()
- {
- return $this->performers;
- }
- public function setPlayerType($playerType)
- {
- $this->playerType = $playerType;
- }
- public function getPlayerType()
- {
- return $this->playerType;
- }
- public function setPostOfficeBoxNumber($postOfficeBoxNumber)
- {
- $this->postOfficeBoxNumber = $postOfficeBoxNumber;
- }
- public function getPostOfficeBoxNumber()
- {
- return $this->postOfficeBoxNumber;
- }
- public function setPostalCode($postalCode)
- {
- $this->postalCode = $postalCode;
- }
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- public function setRatingValue($ratingValue)
- {
- $this->ratingValue = $ratingValue;
- }
- public function getRatingValue()
- {
- return $this->ratingValue;
- }
- public function setReviewRating(Postman_Google_Service_Plus_ItemScope $reviewRating)
- {
- $this->reviewRating = $reviewRating;
- }
- public function getReviewRating()
- {
- return $this->reviewRating;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setStreetAddress($streetAddress)
- {
- $this->streetAddress = $streetAddress;
- }
- public function getStreetAddress()
- {
- return $this->streetAddress;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
- public function setThumbnail(Postman_Google_Service_Plus_ItemScope $thumbnail)
- {
- $this->thumbnail = $thumbnail;
- }
- public function getThumbnail()
- {
- return $this->thumbnail;
- }
- public function setThumbnailUrl($thumbnailUrl)
- {
- $this->thumbnailUrl = $thumbnailUrl;
- }
- public function getThumbnailUrl()
- {
- return $this->thumbnailUrl;
- }
- public function setTickerSymbol($tickerSymbol)
- {
- $this->tickerSymbol = $tickerSymbol;
- }
- public function getTickerSymbol()
- {
- return $this->tickerSymbol;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
- public function setWorstRating($worstRating)
- {
- $this->worstRating = $worstRating;
- }
- public function getWorstRating()
- {
- return $this->worstRating;
- }
-}
-
-class Postman_Google_Service_Plus_Moment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- protected $objectType = 'Postman_Google_Service_Plus_ItemScope';
- protected $objectDataType = '';
- protected $resultType = 'Postman_Google_Service_Plus_ItemScope';
- protected $resultDataType = '';
- public $startDate;
- protected $targetType = 'Postman_Google_Service_Plus_ItemScope';
- protected $targetDataType = '';
- 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 setObject(Postman_Google_Service_Plus_ItemScope $object)
- {
- $this->object = $object;
- }
- public function getObject()
- {
- return $this->object;
- }
- public function setResult(Postman_Google_Service_Plus_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(Postman_Google_Service_Plus_ItemScope $target)
- {
- $this->target = $target;
- }
- public function getTarget()
- {
- return $this->target;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Plus_MomentsFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Plus_Moment';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
- public $title;
- public $updated;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Plus_PeopleFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Plus_Person';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
- public $title;
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_Plus_Person extends Postman_Google_Collection
-{
- protected $collection_key = 'urls';
- protected $internal_gapi_mappings = array(
- );
- public $aboutMe;
- protected $ageRangeType = 'Postman_Google_Service_Plus_PersonAgeRange';
- protected $ageRangeDataType = '';
- public $birthday;
- public $braggingRights;
- public $circledByCount;
- protected $coverType = 'Postman_Google_Service_Plus_PersonCover';
- protected $coverDataType = '';
- public $currentLocation;
- public $displayName;
- public $domain;
- protected $emailsType = 'Postman_Google_Service_Plus_PersonEmails';
- protected $emailsDataType = 'array';
- public $etag;
- public $gender;
- public $id;
- protected $imageType = 'Postman_Google_Service_Plus_PersonImage';
- protected $imageDataType = '';
- public $isPlusUser;
- public $kind;
- public $language;
- protected $nameType = 'Postman_Google_Service_Plus_PersonName';
- protected $nameDataType = '';
- public $nickname;
- public $objectType;
- public $occupation;
- protected $organizationsType = 'Postman_Google_Service_Plus_PersonOrganizations';
- protected $organizationsDataType = 'array';
- protected $placesLivedType = 'Postman_Google_Service_Plus_PersonPlacesLived';
- protected $placesLivedDataType = 'array';
- public $plusOneCount;
- public $relationshipStatus;
- public $skills;
- public $tagline;
- public $url;
- protected $urlsType = 'Postman_Google_Service_Plus_PersonUrls';
- protected $urlsDataType = 'array';
- public $verified;
-
-
- public function setAboutMe($aboutMe)
- {
- $this->aboutMe = $aboutMe;
- }
- public function getAboutMe()
- {
- return $this->aboutMe;
- }
- public function setAgeRange(Postman_Google_Service_Plus_PersonAgeRange $ageRange)
- {
- $this->ageRange = $ageRange;
- }
- public function getAgeRange()
- {
- return $this->ageRange;
- }
- public function setBirthday($birthday)
- {
- $this->birthday = $birthday;
- }
- public function getBirthday()
- {
- return $this->birthday;
- }
- public function setBraggingRights($braggingRights)
- {
- $this->braggingRights = $braggingRights;
- }
- public function getBraggingRights()
- {
- return $this->braggingRights;
- }
- public function setCircledByCount($circledByCount)
- {
- $this->circledByCount = $circledByCount;
- }
- public function getCircledByCount()
- {
- return $this->circledByCount;
- }
- public function setCover(Postman_Google_Service_Plus_PersonCover $cover)
- {
- $this->cover = $cover;
- }
- public function getCover()
- {
- return $this->cover;
- }
- public function setCurrentLocation($currentLocation)
- {
- $this->currentLocation = $currentLocation;
- }
- public function getCurrentLocation()
- {
- return $this->currentLocation;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setEmails($emails)
- {
- $this->emails = $emails;
- }
- public function getEmails()
- {
- return $this->emails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGender($gender)
- {
- $this->gender = $gender;
- }
- public function getGender()
- {
- return $this->gender;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_Plus_PersonImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setIsPlusUser($isPlusUser)
- {
- $this->isPlusUser = $isPlusUser;
- }
- public function getIsPlusUser()
- {
- return $this->isPlusUser;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setName(Postman_Google_Service_Plus_PersonName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNickname($nickname)
- {
- $this->nickname = $nickname;
- }
- public function getNickname()
- {
- return $this->nickname;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOccupation($occupation)
- {
- $this->occupation = $occupation;
- }
- public function getOccupation()
- {
- return $this->occupation;
- }
- public function setOrganizations($organizations)
- {
- $this->organizations = $organizations;
- }
- public function getOrganizations()
- {
- return $this->organizations;
- }
- public function setPlacesLived($placesLived)
- {
- $this->placesLived = $placesLived;
- }
- public function getPlacesLived()
- {
- return $this->placesLived;
- }
- public function setPlusOneCount($plusOneCount)
- {
- $this->plusOneCount = $plusOneCount;
- }
- public function getPlusOneCount()
- {
- return $this->plusOneCount;
- }
- public function setRelationshipStatus($relationshipStatus)
- {
- $this->relationshipStatus = $relationshipStatus;
- }
- public function getRelationshipStatus()
- {
- return $this->relationshipStatus;
- }
- public function setSkills($skills)
- {
- $this->skills = $skills;
- }
- public function getSkills()
- {
- return $this->skills;
- }
- public function setTagline($tagline)
- {
- $this->tagline = $tagline;
- }
- public function getTagline()
- {
- return $this->tagline;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setUrls($urls)
- {
- $this->urls = $urls;
- }
- public function getUrls()
- {
- return $this->urls;
- }
- public function setVerified($verified)
- {
- $this->verified = $verified;
- }
- public function getVerified()
- {
- return $this->verified;
- }
-}
-
-class Postman_Google_Service_Plus_PersonAgeRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $max;
- public $min;
-
-
- public function setMax($max)
- {
- $this->max = $max;
- }
- public function getMax()
- {
- return $this->max;
- }
- public function setMin($min)
- {
- $this->min = $min;
- }
- public function getMin()
- {
- return $this->min;
- }
-}
-
-class Postman_Google_Service_Plus_PersonCover extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $coverInfoType = 'Postman_Google_Service_Plus_PersonCoverCoverInfo';
- protected $coverInfoDataType = '';
- protected $coverPhotoType = 'Postman_Google_Service_Plus_PersonCoverCoverPhoto';
- protected $coverPhotoDataType = '';
- public $layout;
-
-
- public function setCoverInfo(Postman_Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
- {
- $this->coverInfo = $coverInfo;
- }
- public function getCoverInfo()
- {
- return $this->coverInfo;
- }
- public function setCoverPhoto(Postman_Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
- {
- $this->coverPhoto = $coverPhoto;
- }
- public function getCoverPhoto()
- {
- return $this->coverPhoto;
- }
- public function setLayout($layout)
- {
- $this->layout = $layout;
- }
- public function getLayout()
- {
- return $this->layout;
- }
-}
-
-class Postman_Google_Service_Plus_PersonCoverCoverInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $leftImageOffset;
- public $topImageOffset;
-
-
- public function setLeftImageOffset($leftImageOffset)
- {
- $this->leftImageOffset = $leftImageOffset;
- }
- public function getLeftImageOffset()
- {
- return $this->leftImageOffset;
- }
- public function setTopImageOffset($topImageOffset)
- {
- $this->topImageOffset = $topImageOffset;
- }
- public function getTopImageOffset()
- {
- return $this->topImageOffset;
- }
-}
-
-class Postman_Google_Service_Plus_PersonCoverCoverPhoto extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_Plus_PersonEmails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Plus_PersonImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $isDefault;
- public $url;
-
-
- public function setIsDefault($isDefault)
- {
- $this->isDefault = $isDefault;
- }
- public function getIsDefault()
- {
- return $this->isDefault;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_Plus_PersonName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $formatted;
- public $givenName;
- public $honorificPrefix;
- public $honorificSuffix;
- public $middleName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setFormatted($formatted)
- {
- $this->formatted = $formatted;
- }
- public function getFormatted()
- {
- return $this->formatted;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
- public function setHonorificPrefix($honorificPrefix)
- {
- $this->honorificPrefix = $honorificPrefix;
- }
- public function getHonorificPrefix()
- {
- return $this->honorificPrefix;
- }
- public function setHonorificSuffix($honorificSuffix)
- {
- $this->honorificSuffix = $honorificSuffix;
- }
- public function getHonorificSuffix()
- {
- return $this->honorificSuffix;
- }
- public function setMiddleName($middleName)
- {
- $this->middleName = $middleName;
- }
- public function getMiddleName()
- {
- return $this->middleName;
- }
-}
-
-class Postman_Google_Service_Plus_PersonOrganizations extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $department;
- public $description;
- public $endDate;
- public $location;
- public $name;
- public $primary;
- public $startDate;
- public $title;
- public $type;
-
-
- public function setDepartment($department)
- {
- $this->department = $department;
- }
- public function getDepartment()
- {
- return $this->department;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Plus_PersonPlacesLived extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $primary;
- public $value;
-
-
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Plus_PersonUrls extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $label;
- public $type;
- public $value;
-
-
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Plus_Place extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $addressType = 'Postman_Google_Service_Plus_PlaceAddress';
- protected $addressDataType = '';
- public $displayName;
- public $id;
- public $kind;
- protected $positionType = 'Postman_Google_Service_Plus_PlacePosition';
- protected $positionDataType = '';
-
-
- public function setAddress(Postman_Google_Service_Plus_PlaceAddress $address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- 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 setPosition(Postman_Google_Service_Plus_PlacePosition $position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
-}
-
-class Postman_Google_Service_Plus_PlaceAddress extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formatted;
-
-
- public function setFormatted($formatted)
- {
- $this->formatted = $formatted;
- }
- public function getFormatted()
- {
- return $this->formatted;
- }
-}
-
-class Postman_Google_Service_Plus_PlacePosition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $latitude;
- public $longitude;
-
-
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Plus_PlusAclentryResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- public $type;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/PlusDomains.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/PlusDomains.php
deleted file mode 100644
index 6dbc600..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/PlusDomains.php
+++ /dev/null
@@ -1,3712 +0,0 @@
-
- * The Google+ API enables developers to build on top of the Google+ platform.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_PlusDomains extends Postman_Google_Service -{ - /** View your circles and the people and pages in them. */ - const PLUS_CIRCLES_READ = - "https://www.googleapis.com/auth/plus.circles.read"; - /** Manage your circles and add people and pages. People and pages you add to your circles will be notified. Others may see this information publicly. People you add to circles can use Hangouts with you.. */ - const PLUS_CIRCLES_WRITE = - "https://www.googleapis.com/auth/plus.circles.write"; - /** Know your basic profile info and list of people in your circles.. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - /** Know who you are on Google. */ - const PLUS_ME = - "https://www.googleapis.com/auth/plus.me"; - /** Send your photos and videos to Google+. */ - const PLUS_MEDIA_UPLOAD = - "https://www.googleapis.com/auth/plus.media.upload"; - /** View your own Google+ profile and profiles visible to you. */ - const PLUS_PROFILES_READ = - "https://www.googleapis.com/auth/plus.profiles.read"; - /** View your Google+ posts, comments, and stream. */ - const PLUS_STREAM_READ = - "https://www.googleapis.com/auth/plus.stream.read"; - /** Manage your Google+ posts, comments, and stream. */ - const PLUS_STREAM_WRITE = - "https://www.googleapis.com/auth/plus.stream.write"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** View your basic profile info. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $activities; - public $audiences; - public $circles; - public $comments; - public $media; - public $people; - - - /** - * Constructs the internal representation of the PlusDomains service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'plusDomains/v1/'; - $this->version = 'v1'; - $this->serviceName = 'plusDomains'; - - $this->activities = new Postman_Google_Service_PlusDomains_Activities_Resource( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'get' => array( - 'path' => 'activities/{activityId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'people/{userId}/activities', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'preview' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/activities/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->audiences = new Postman_Google_Service_PlusDomains_Audiences_Resource( - $this, - $this->serviceName, - 'audiences', - array( - 'methods' => array( - 'list' => array( - 'path' => 'people/{userId}/audiences', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->circles = new Postman_Google_Service_PlusDomains_Circles_Resource( - $this, - $this->serviceName, - 'circles', - array( - 'methods' => array( - 'addPeople' => array( - 'path' => 'circles/{circleId}/people', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'email' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'get' => array( - 'path' => 'circles/{circleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'people/{userId}/circles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/circles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'circles/{circleId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'remove' => array( - 'path' => 'circles/{circleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'removePeople' => array( - 'path' => 'circles/{circleId}/people', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'email' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'update' => array( - 'path' => 'circles/{circleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->comments = new Postman_Google_Service_PlusDomains_Comments_Resource( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'get' => array( - 'path' => 'comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'activities/{activityId}/comments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'activities/{activityId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->media = new Postman_Google_Service_PlusDomains_Media_Resource( - $this, - $this->serviceName, - 'media', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'people/{userId}/media/{collection}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->people = new Postman_Google_Service_PlusDomains_People_Resource( - $this, - $this->serviceName, - 'people', - array( - 'methods' => array( - 'get' => array( - 'path' => 'people/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'listByActivity' => array( - 'path' => 'activities/{activityId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'listByCircle' => array( - 'path' => 'circles/{circleId}/people', - 'httpMethod' => 'GET', - 'parameters' => array( - 'circleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "activities" collection of methods. - * Typical usage is: - *
- * $plusDomainsService = new Postman_Google_Service_PlusDomains(...);
- * $activities = $plusDomainsService->activities;
- *
- */
-class Postman_Google_Service_PlusDomains_Activities_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get an activity. (activities.get)
- *
- * @param string $activityId The ID of the activity to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Activity
- */
- public function get($activityId, $optParams = array())
- {
- $params = array('activityId' => $activityId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_PlusDomains_Activity");
- }
-
- /**
- * Create a new activity for the authenticated user. (activities.insert)
- *
- * @param string $userId The ID of the user to create the activity on behalf of.
- * Its value should be "me", to indicate the authenticated user.
- * @param Postman_Google_Activity $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool preview If "true", extract the potential media attachments
- * for a URL. The response will include all possible attachments for a URL,
- * including video, photos, and articles based on the content of the page.
- * @return Postman_Google_Service_PlusDomains_Activity
- */
- public function insert($userId, Postman_Google_Service_PlusDomains_Activity $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_PlusDomains_Activity");
- }
-
- /**
- * List all of the activities in the specified collection for a particular user.
- * (activities.listActivities)
- *
- * @param string $userId The ID of the user to get activities for. The special
- * value "me" can be used to indicate the authenticated user.
- * @param string $collection The collection of activities to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of activities to include in
- * the response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_ActivityFeed
- */
- public function listActivities($userId, $collection, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_PlusDomains_ActivityFeed");
- }
-}
-
-/**
- * The "audiences" collection of methods.
- * Typical usage is:
- *
- * $plusDomainsService = new Postman_Google_Service_PlusDomains(...);
- * $audiences = $plusDomainsService->audiences;
- *
- */
-class Postman_Google_Service_PlusDomains_Audiences_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List all of the audiences to which a user can share.
- * (audiences.listAudiences)
- *
- * @param string $userId The ID of the user to get audiences for. The special
- * value "me" can be used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of circles to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_AudiencesFeed
- */
- public function listAudiences($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_PlusDomains_AudiencesFeed");
- }
-}
-
-/**
- * The "circles" collection of methods.
- * Typical usage is:
- *
- * $plusDomainsService = new Postman_Google_Service_PlusDomains(...);
- * $circles = $plusDomainsService->circles;
- *
- */
-class Postman_Google_Service_PlusDomains_Circles_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Add a person to a circle. Google+ limits certain circle operations, including
- * the number of circle adds. Learn More. (circles.addPeople)
- *
- * @param string $circleId The ID of the circle to add the person to.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string userId IDs of the people to add to the circle. Optional,
- * can be repeated.
- * @opt_param string email Email of the people to add to the circle. Optional,
- * can be repeated.
- * @return Postman_Google_Service_PlusDomains_Circle
- */
- public function addPeople($circleId, $optParams = array())
- {
- $params = array('circleId' => $circleId);
- $params = array_merge($params, $optParams);
- return $this->call('addPeople', array($params), "Postman_Google_Service_PlusDomains_Circle");
- }
-
- /**
- * Get a circle. (circles.get)
- *
- * @param string $circleId The ID of the circle to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Circle
- */
- public function get($circleId, $optParams = array())
- {
- $params = array('circleId' => $circleId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_PlusDomains_Circle");
- }
-
- /**
- * Create a new circle for the authenticated user. (circles.insert)
- *
- * @param string $userId The ID of the user to create the circle on behalf of.
- * The value "me" can be used to indicate the authenticated user.
- * @param Postman_Google_Circle $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Circle
- */
- public function insert($userId, Postman_Google_Service_PlusDomains_Circle $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_PlusDomains_Circle");
- }
-
- /**
- * List all of the circles for a user. (circles.listCircles)
- *
- * @param string $userId The ID of the user to get circles for. The special
- * value "me" can be used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of circles to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_CircleFeed
- */
- public function listCircles($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_PlusDomains_CircleFeed");
- }
-
- /**
- * Update a circle's description. This method supports patch semantics.
- * (circles.patch)
- *
- * @param string $circleId The ID of the circle to update.
- * @param Postman_Google_Circle $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Circle
- */
- public function patch($circleId, Postman_Google_Service_PlusDomains_Circle $postBody, $optParams = array())
- {
- $params = array('circleId' => $circleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_PlusDomains_Circle");
- }
-
- /**
- * Delete a circle. (circles.remove)
- *
- * @param string $circleId The ID of the circle to delete.
- * @param array $optParams Optional parameters.
- */
- public function remove($circleId, $optParams = array())
- {
- $params = array('circleId' => $circleId);
- $params = array_merge($params, $optParams);
- return $this->call('remove', array($params));
- }
-
- /**
- * Remove a person from a circle. (circles.removePeople)
- *
- * @param string $circleId The ID of the circle to remove the person from.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string userId IDs of the people to remove from the circle.
- * Optional, can be repeated.
- * @opt_param string email Email of the people to add to the circle. Optional,
- * can be repeated.
- */
- public function removePeople($circleId, $optParams = array())
- {
- $params = array('circleId' => $circleId);
- $params = array_merge($params, $optParams);
- return $this->call('removePeople', array($params));
- }
-
- /**
- * Update a circle's description. (circles.update)
- *
- * @param string $circleId The ID of the circle to update.
- * @param Postman_Google_Circle $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Circle
- */
- public function update($circleId, Postman_Google_Service_PlusDomains_Circle $postBody, $optParams = array())
- {
- $params = array('circleId' => $circleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_PlusDomains_Circle");
- }
-}
-
-/**
- * The "comments" collection of methods.
- * Typical usage is:
- *
- * $plusDomainsService = new Postman_Google_Service_PlusDomains(...);
- * $comments = $plusDomainsService->comments;
- *
- */
-class Postman_Google_Service_PlusDomains_Comments_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get a comment. (comments.get)
- *
- * @param string $commentId The ID of the comment to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Comment
- */
- public function get($commentId, $optParams = array())
- {
- $params = array('commentId' => $commentId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_PlusDomains_Comment");
- }
-
- /**
- * Create a new comment in reply to an activity. (comments.insert)
- *
- * @param string $activityId The ID of the activity to reply to.
- * @param Postman_Google_Comment $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Comment
- */
- public function insert($activityId, Postman_Google_Service_PlusDomains_Comment $postBody, $optParams = array())
- {
- $params = array('activityId' => $activityId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_PlusDomains_Comment");
- }
-
- /**
- * List all of the comments for an activity. (comments.listComments)
- *
- * @param string $activityId The ID of the activity to get comments for.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string sortOrder The order in which to sort the list of comments.
- * @opt_param string maxResults The maximum number of comments to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_CommentFeed
- */
- public function listComments($activityId, $optParams = array())
- {
- $params = array('activityId' => $activityId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_PlusDomains_CommentFeed");
- }
-}
-
-/**
- * The "media" collection of methods.
- * Typical usage is:
- *
- * $plusDomainsService = new Postman_Google_Service_PlusDomains(...);
- * $media = $plusDomainsService->media;
- *
- */
-class Postman_Google_Service_PlusDomains_Media_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Add a new media item to an album. The current upload size limitations are
- * 36MB for a photo and 1GB for a video. Uploads do not count against quota if
- * photos are less than 2048 pixels on their longest side or videos are less
- * than 15 minutes in length. (media.insert)
- *
- * @param string $userId The ID of the user to create the activity on behalf of.
- * @param string $collection
- * @param Postman_Google_Media $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Media
- */
- public function insert($userId, $collection, Postman_Google_Service_PlusDomains_Media $postBody, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_PlusDomains_Media");
- }
-}
-
-/**
- * The "people" collection of methods.
- * Typical usage is:
- *
- * $plusDomainsService = new Postman_Google_Service_PlusDomains(...);
- * $people = $plusDomainsService->people;
- *
- */
-class Postman_Google_Service_PlusDomains_People_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get a person's profile. (people.get)
- *
- * @param string $userId The ID of the person to get the profile for. The
- * special value "me" can be used to indicate the authenticated user.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_PlusDomains_Person
- */
- public function get($userId, $optParams = array())
- {
- $params = array('userId' => $userId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_PlusDomains_Person");
- }
-
- /**
- * List all of the people in the specified collection. (people.listPeople)
- *
- * @param string $userId Get the collection of people for the person identified.
- * Use "me" to indicate the authenticated user.
- * @param string $collection The collection of people to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string orderBy The order to return people in.
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of people to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_PeopleFeed
- */
- public function listPeople($userId, $collection, $optParams = array())
- {
- $params = array('userId' => $userId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_PlusDomains_PeopleFeed");
- }
-
- /**
- * List all of the people in the specified collection for a particular activity.
- * (people.listByActivity)
- *
- * @param string $activityId The ID of the activity to get the list of people
- * for.
- * @param string $collection The collection of people to list.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of people to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_PeopleFeed
- */
- public function listByActivity($activityId, $collection, $optParams = array())
- {
- $params = array('activityId' => $activityId, 'collection' => $collection);
- $params = array_merge($params, $optParams);
- return $this->call('listByActivity', array($params), "Postman_Google_Service_PlusDomains_PeopleFeed");
- }
-
- /**
- * List all of the people who are members of a circle. (people.listByCircle)
- *
- * @param string $circleId The ID of the circle to get the members of.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The continuation token, which is used to page
- * through large result sets. To get the next page of results, set this
- * parameter to the value of "nextPageToken" from the previous response.
- * @opt_param string maxResults The maximum number of people to include in the
- * response, which is used for paging. For any response, the actual number
- * returned might be less than the specified maxResults.
- * @return Postman_Google_Service_PlusDomains_PeopleFeed
- */
- public function listByCircle($circleId, $optParams = array())
- {
- $params = array('circleId' => $circleId);
- $params = array_merge($params, $optParams);
- return $this->call('listByCircle', array($params), "Postman_Google_Service_PlusDomains_PeopleFeed");
- }
-}
-
-
-
-
-class Postman_Google_Service_PlusDomains_Acl extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $domainRestricted;
- protected $itemsType = 'Postman_Google_Service_PlusDomains_PlusDomainsAclentryResource';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDomainRestricted($domainRestricted)
- {
- $this->domainRestricted = $domainRestricted;
- }
- public function getDomainRestricted()
- {
- return $this->domainRestricted;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Activity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accessType = 'Postman_Google_Service_PlusDomains_Acl';
- protected $accessDataType = '';
- protected $actorType = 'Postman_Google_Service_PlusDomains_ActivityActor';
- protected $actorDataType = '';
- public $address;
- public $annotation;
- public $crosspostSource;
- public $etag;
- public $geocode;
- public $id;
- public $kind;
- protected $locationType = 'Postman_Google_Service_PlusDomains_Place';
- protected $locationDataType = '';
- protected $objectType = 'Postman_Google_Service_PlusDomains_ActivityObject';
- protected $objectDataType = '';
- public $placeId;
- public $placeName;
- protected $providerType = 'Postman_Google_Service_PlusDomains_ActivityProvider';
- protected $providerDataType = '';
- public $published;
- public $radius;
- public $title;
- public $updated;
- public $url;
- public $verb;
-
-
- public function setAccess(Postman_Google_Service_PlusDomains_Acl $access)
- {
- $this->access = $access;
- }
- public function getAccess()
- {
- return $this->access;
- }
- public function setActor(Postman_Google_Service_PlusDomains_ActivityActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setAnnotation($annotation)
- {
- $this->annotation = $annotation;
- }
- public function getAnnotation()
- {
- return $this->annotation;
- }
- public function setCrosspostSource($crosspostSource)
- {
- $this->crosspostSource = $crosspostSource;
- }
- public function getCrosspostSource()
- {
- return $this->crosspostSource;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGeocode($geocode)
- {
- $this->geocode = $geocode;
- }
- public function getGeocode()
- {
- return $this->geocode;
- }
- 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 setLocation(Postman_Google_Service_PlusDomains_Place $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setObject(Postman_Google_Service_PlusDomains_ActivityObject $object)
- {
- $this->object = $object;
- }
- public function getObject()
- {
- return $this->object;
- }
- public function setPlaceId($placeId)
- {
- $this->placeId = $placeId;
- }
- public function getPlaceId()
- {
- return $this->placeId;
- }
- public function setPlaceName($placeName)
- {
- $this->placeName = $placeName;
- }
- public function getPlaceName()
- {
- return $this->placeName;
- }
- public function setProvider(Postman_Google_Service_PlusDomains_ActivityProvider $provider)
- {
- $this->provider = $provider;
- }
- public function getProvider()
- {
- return $this->provider;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setRadius($radius)
- {
- $this->radius = $radius;
- }
- public function getRadius()
- {
- return $this->radius;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setVerb($verb)
- {
- $this->verb = $verb;
- }
- public function getVerb()
- {
- return $this->verb;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_PlusDomains_ActivityActorImage';
- protected $imageDataType = '';
- protected $nameType = 'Postman_Google_Service_PlusDomains_ActivityActorName';
- protected $nameDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_PlusDomains_ActivityActorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setName(Postman_Google_Service_PlusDomains_ActivityActorName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityActorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityActorName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $givenName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- protected $itemsType = 'Postman_Google_Service_PlusDomains_Activity';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
- public $title;
- public $updated;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObject extends Postman_Google_Collection
-{
- protected $collection_key = 'attachments';
- protected $internal_gapi_mappings = array(
- );
- protected $actorType = 'Postman_Google_Service_PlusDomains_ActivityObjectActor';
- protected $actorDataType = '';
- protected $attachmentsType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachments';
- protected $attachmentsDataType = 'array';
- public $content;
- public $id;
- public $objectType;
- public $originalContent;
- protected $plusonersType = 'Postman_Google_Service_PlusDomains_ActivityObjectPlusoners';
- protected $plusonersDataType = '';
- protected $repliesType = 'Postman_Google_Service_PlusDomains_ActivityObjectReplies';
- protected $repliesDataType = '';
- protected $resharersType = 'Postman_Google_Service_PlusDomains_ActivityObjectResharers';
- protected $resharersDataType = '';
- protected $statusForViewerType = 'Postman_Google_Service_PlusDomains_ActivityObjectStatusForViewer';
- protected $statusForViewerDataType = '';
- public $url;
-
-
- public function setActor(Postman_Google_Service_PlusDomains_ActivityObjectActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setAttachments($attachments)
- {
- $this->attachments = $attachments;
- }
- public function getAttachments()
- {
- return $this->attachments;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOriginalContent($originalContent)
- {
- $this->originalContent = $originalContent;
- }
- public function getOriginalContent()
- {
- return $this->originalContent;
- }
- public function setPlusoners(Postman_Google_Service_PlusDomains_ActivityObjectPlusoners $plusoners)
- {
- $this->plusoners = $plusoners;
- }
- public function getPlusoners()
- {
- return $this->plusoners;
- }
- public function setReplies(Postman_Google_Service_PlusDomains_ActivityObjectReplies $replies)
- {
- $this->replies = $replies;
- }
- public function getReplies()
- {
- return $this->replies;
- }
- public function setResharers(Postman_Google_Service_PlusDomains_ActivityObjectResharers $resharers)
- {
- $this->resharers = $resharers;
- }
- public function getResharers()
- {
- return $this->resharers;
- }
- public function setStatusForViewer(Postman_Google_Service_PlusDomains_ActivityObjectStatusForViewer $statusForViewer)
- {
- $this->statusForViewer = $statusForViewer;
- }
- public function getStatusForViewer()
- {
- return $this->statusForViewer;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_PlusDomains_ActivityObjectActorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_PlusDomains_ActivityObjectActorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectActorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachments extends Postman_Google_Collection
-{
- protected $collection_key = 'thumbnails';
- protected $internal_gapi_mappings = array(
- );
- public $content;
- public $displayName;
- protected $embedType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed';
- protected $embedDataType = '';
- protected $fullImageType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage';
- protected $fullImageDataType = '';
- public $id;
- protected $imageType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsImage';
- protected $imageDataType = '';
- public $objectType;
- protected $previewThumbnailsType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails';
- protected $previewThumbnailsDataType = 'array';
- protected $thumbnailsType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnails';
- protected $thumbnailsDataType = 'array';
- public $url;
-
-
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEmbed(Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed $embed)
- {
- $this->embed = $embed;
- }
- public function getEmbed()
- {
- return $this->embed;
- }
- public function setFullImage(Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage $fullImage)
- {
- $this->fullImage = $fullImage;
- }
- public function getFullImage()
- {
- return $this->fullImage;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setPreviewThumbnails($previewThumbnails)
- {
- $this->previewThumbnails = $previewThumbnails;
- }
- public function getPreviewThumbnails()
- {
- return $this->previewThumbnails;
- }
- public function setThumbnails($thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $url;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- protected $imageType = 'Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setImage(Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectPlusoners extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectReplies extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectResharers extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $selfLink;
- public $totalItems;
-
-
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityObjectStatusForViewer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $canComment;
- public $canPlusone;
- public $canUpdate;
- public $isPlusOned;
- public $resharingDisabled;
-
-
- public function setCanComment($canComment)
- {
- $this->canComment = $canComment;
- }
- public function getCanComment()
- {
- return $this->canComment;
- }
- public function setCanPlusone($canPlusone)
- {
- $this->canPlusone = $canPlusone;
- }
- public function getCanPlusone()
- {
- return $this->canPlusone;
- }
- public function setCanUpdate($canUpdate)
- {
- $this->canUpdate = $canUpdate;
- }
- public function getCanUpdate()
- {
- return $this->canUpdate;
- }
- public function setIsPlusOned($isPlusOned)
- {
- $this->isPlusOned = $isPlusOned;
- }
- public function getIsPlusOned()
- {
- return $this->isPlusOned;
- }
- public function setResharingDisabled($resharingDisabled)
- {
- $this->resharingDisabled = $resharingDisabled;
- }
- public function getResharingDisabled()
- {
- return $this->resharingDisabled;
- }
-}
-
-class Postman_Google_Service_PlusDomains_ActivityProvider extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $title;
-
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Audience extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemType = 'Postman_Google_Service_PlusDomains_PlusDomainsAclentryResource';
- protected $itemDataType = '';
- public $kind;
- public $memberCount;
- public $visibility;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItem(Postman_Google_Service_PlusDomains_PlusDomainsAclentryResource $item)
- {
- $this->item = $item;
- }
- public function getItem()
- {
- return $this->item;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMemberCount($memberCount)
- {
- $this->memberCount = $memberCount;
- }
- public function getMemberCount()
- {
- return $this->memberCount;
- }
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- }
- public function getVisibility()
- {
- return $this->visibility;
- }
-}
-
-class Postman_Google_Service_PlusDomains_AudiencesFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_PlusDomains_Audience';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Circle extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $displayName;
- public $etag;
- public $id;
- public $kind;
- protected $peopleType = 'Postman_Google_Service_PlusDomains_CirclePeople';
- protected $peopleDataType = '';
- public $selfLink;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setPeople(Postman_Google_Service_PlusDomains_CirclePeople $people)
- {
- $this->people = $people;
- }
- public function getPeople()
- {
- return $this->people;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CircleFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_PlusDomains_Circle';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $selfLink;
- public $title;
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CirclePeople extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $totalItems;
-
-
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Comment extends Postman_Google_Collection
-{
- protected $collection_key = 'inReplyTo';
- protected $internal_gapi_mappings = array(
- );
- protected $actorType = 'Postman_Google_Service_PlusDomains_CommentActor';
- protected $actorDataType = '';
- public $etag;
- public $id;
- protected $inReplyToType = 'Postman_Google_Service_PlusDomains_CommentInReplyTo';
- protected $inReplyToDataType = 'array';
- public $kind;
- protected $objectType = 'Postman_Google_Service_PlusDomains_CommentObject';
- protected $objectDataType = '';
- protected $plusonersType = 'Postman_Google_Service_PlusDomains_CommentPlusoners';
- protected $plusonersDataType = '';
- public $published;
- public $selfLink;
- public $updated;
- public $verb;
-
-
- public function setActor(Postman_Google_Service_PlusDomains_CommentActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInReplyTo($inReplyTo)
- {
- $this->inReplyTo = $inReplyTo;
- }
- public function getInReplyTo()
- {
- return $this->inReplyTo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setObject(Postman_Google_Service_PlusDomains_CommentObject $object)
- {
- $this->object = $object;
- }
- public function getObject()
- {
- return $this->object;
- }
- public function setPlusoners(Postman_Google_Service_PlusDomains_CommentPlusoners $plusoners)
- {
- $this->plusoners = $plusoners;
- }
- public function getPlusoners()
- {
- return $this->plusoners;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setVerb($verb)
- {
- $this->verb = $verb;
- }
- public function getVerb()
- {
- return $this->verb;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CommentActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_PlusDomains_CommentActorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_PlusDomains_CommentActorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CommentActorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CommentFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- protected $itemsType = 'Postman_Google_Service_PlusDomains_Comment';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextLink;
- public $nextPageToken;
- public $title;
- public $updated;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- 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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CommentInReplyTo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $url;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CommentObject extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $content;
- public $objectType;
- public $originalContent;
-
-
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOriginalContent($originalContent)
- {
- $this->originalContent = $originalContent;
- }
- public function getOriginalContent()
- {
- return $this->originalContent;
- }
-}
-
-class Postman_Google_Service_PlusDomains_CommentPlusoners extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $totalItems;
-
-
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Media extends Postman_Google_Collection
-{
- protected $collection_key = 'streams';
- protected $internal_gapi_mappings = array(
- );
- protected $authorType = 'Postman_Google_Service_PlusDomains_MediaAuthor';
- protected $authorDataType = '';
- public $displayName;
- public $etag;
- protected $exifType = 'Postman_Google_Service_PlusDomains_MediaExif';
- protected $exifDataType = '';
- public $height;
- public $id;
- public $kind;
- public $mediaCreatedTime;
- public $mediaUrl;
- public $published;
- public $sizeBytes;
- protected $streamsType = 'Postman_Google_Service_PlusDomains_Videostream';
- protected $streamsDataType = 'array';
- public $summary;
- public $updated;
- public $url;
- public $videoDuration;
- public $videoStatus;
- public $width;
-
-
- public function setAuthor(Postman_Google_Service_PlusDomains_MediaAuthor $author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setExif(Postman_Google_Service_PlusDomains_MediaExif $exif)
- {
- $this->exif = $exif;
- }
- public function getExif()
- {
- return $this->exif;
- }
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- 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 setMediaCreatedTime($mediaCreatedTime)
- {
- $this->mediaCreatedTime = $mediaCreatedTime;
- }
- public function getMediaCreatedTime()
- {
- return $this->mediaCreatedTime;
- }
- public function setMediaUrl($mediaUrl)
- {
- $this->mediaUrl = $mediaUrl;
- }
- public function getMediaUrl()
- {
- return $this->mediaUrl;
- }
- public function setPublished($published)
- {
- $this->published = $published;
- }
- public function getPublished()
- {
- return $this->published;
- }
- public function setSizeBytes($sizeBytes)
- {
- $this->sizeBytes = $sizeBytes;
- }
- public function getSizeBytes()
- {
- return $this->sizeBytes;
- }
- public function setStreams($streams)
- {
- $this->streams = $streams;
- }
- public function getStreams()
- {
- return $this->streams;
- }
- public function setSummary($summary)
- {
- $this->summary = $summary;
- }
- public function getSummary()
- {
- return $this->summary;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setVideoDuration($videoDuration)
- {
- $this->videoDuration = $videoDuration;
- }
- public function getVideoDuration()
- {
- return $this->videoDuration;
- }
- public function setVideoStatus($videoStatus)
- {
- $this->videoStatus = $videoStatus;
- }
- public function getVideoStatus()
- {
- return $this->videoStatus;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_PlusDomains_MediaAuthor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- protected $imageType = 'Postman_Google_Service_PlusDomains_MediaAuthorImage';
- protected $imageDataType = '';
- public $url;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_PlusDomains_MediaAuthorImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_MediaAuthorImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $url;
-
-
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_MediaExif extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $time;
-
-
- public function setTime($time)
- {
- $this->time = $time;
- }
- public function getTime()
- {
- return $this->time;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PeopleFeed extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_PlusDomains_Person';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
- public $title;
- public $totalItems;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Person extends Postman_Google_Collection
-{
- protected $collection_key = 'urls';
- protected $internal_gapi_mappings = array(
- );
- public $aboutMe;
- public $birthday;
- public $braggingRights;
- public $circledByCount;
- protected $coverType = 'Postman_Google_Service_PlusDomains_PersonCover';
- protected $coverDataType = '';
- public $currentLocation;
- public $displayName;
- public $domain;
- protected $emailsType = 'Postman_Google_Service_PlusDomains_PersonEmails';
- protected $emailsDataType = 'array';
- public $etag;
- public $gender;
- public $id;
- protected $imageType = 'Postman_Google_Service_PlusDomains_PersonImage';
- protected $imageDataType = '';
- public $isPlusUser;
- public $kind;
- protected $nameType = 'Postman_Google_Service_PlusDomains_PersonName';
- protected $nameDataType = '';
- public $nickname;
- public $objectType;
- public $occupation;
- protected $organizationsType = 'Postman_Google_Service_PlusDomains_PersonOrganizations';
- protected $organizationsDataType = 'array';
- protected $placesLivedType = 'Postman_Google_Service_PlusDomains_PersonPlacesLived';
- protected $placesLivedDataType = 'array';
- public $plusOneCount;
- public $relationshipStatus;
- public $skills;
- public $tagline;
- public $url;
- protected $urlsType = 'Postman_Google_Service_PlusDomains_PersonUrls';
- protected $urlsDataType = 'array';
- public $verified;
-
-
- public function setAboutMe($aboutMe)
- {
- $this->aboutMe = $aboutMe;
- }
- public function getAboutMe()
- {
- return $this->aboutMe;
- }
- public function setBirthday($birthday)
- {
- $this->birthday = $birthday;
- }
- public function getBirthday()
- {
- return $this->birthday;
- }
- public function setBraggingRights($braggingRights)
- {
- $this->braggingRights = $braggingRights;
- }
- public function getBraggingRights()
- {
- return $this->braggingRights;
- }
- public function setCircledByCount($circledByCount)
- {
- $this->circledByCount = $circledByCount;
- }
- public function getCircledByCount()
- {
- return $this->circledByCount;
- }
- public function setCover(Postman_Google_Service_PlusDomains_PersonCover $cover)
- {
- $this->cover = $cover;
- }
- public function getCover()
- {
- return $this->cover;
- }
- public function setCurrentLocation($currentLocation)
- {
- $this->currentLocation = $currentLocation;
- }
- public function getCurrentLocation()
- {
- return $this->currentLocation;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setEmails($emails)
- {
- $this->emails = $emails;
- }
- public function getEmails()
- {
- return $this->emails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGender($gender)
- {
- $this->gender = $gender;
- }
- public function getGender()
- {
- return $this->gender;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setImage(Postman_Google_Service_PlusDomains_PersonImage $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setIsPlusUser($isPlusUser)
- {
- $this->isPlusUser = $isPlusUser;
- }
- public function getIsPlusUser()
- {
- return $this->isPlusUser;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setName(Postman_Google_Service_PlusDomains_PersonName $name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNickname($nickname)
- {
- $this->nickname = $nickname;
- }
- public function getNickname()
- {
- return $this->nickname;
- }
- public function setObjectType($objectType)
- {
- $this->objectType = $objectType;
- }
- public function getObjectType()
- {
- return $this->objectType;
- }
- public function setOccupation($occupation)
- {
- $this->occupation = $occupation;
- }
- public function getOccupation()
- {
- return $this->occupation;
- }
- public function setOrganizations($organizations)
- {
- $this->organizations = $organizations;
- }
- public function getOrganizations()
- {
- return $this->organizations;
- }
- public function setPlacesLived($placesLived)
- {
- $this->placesLived = $placesLived;
- }
- public function getPlacesLived()
- {
- return $this->placesLived;
- }
- public function setPlusOneCount($plusOneCount)
- {
- $this->plusOneCount = $plusOneCount;
- }
- public function getPlusOneCount()
- {
- return $this->plusOneCount;
- }
- public function setRelationshipStatus($relationshipStatus)
- {
- $this->relationshipStatus = $relationshipStatus;
- }
- public function getRelationshipStatus()
- {
- return $this->relationshipStatus;
- }
- public function setSkills($skills)
- {
- $this->skills = $skills;
- }
- public function getSkills()
- {
- return $this->skills;
- }
- public function setTagline($tagline)
- {
- $this->tagline = $tagline;
- }
- public function getTagline()
- {
- return $this->tagline;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setUrls($urls)
- {
- $this->urls = $urls;
- }
- public function getUrls()
- {
- return $this->urls;
- }
- public function setVerified($verified)
- {
- $this->verified = $verified;
- }
- public function getVerified()
- {
- return $this->verified;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonCover extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $coverInfoType = 'Postman_Google_Service_PlusDomains_PersonCoverCoverInfo';
- protected $coverInfoDataType = '';
- protected $coverPhotoType = 'Postman_Google_Service_PlusDomains_PersonCoverCoverPhoto';
- protected $coverPhotoDataType = '';
- public $layout;
-
-
- public function setCoverInfo(Postman_Google_Service_PlusDomains_PersonCoverCoverInfo $coverInfo)
- {
- $this->coverInfo = $coverInfo;
- }
- public function getCoverInfo()
- {
- return $this->coverInfo;
- }
- public function setCoverPhoto(Postman_Google_Service_PlusDomains_PersonCoverCoverPhoto $coverPhoto)
- {
- $this->coverPhoto = $coverPhoto;
- }
- public function getCoverPhoto()
- {
- return $this->coverPhoto;
- }
- public function setLayout($layout)
- {
- $this->layout = $layout;
- }
- public function getLayout()
- {
- return $this->layout;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonCoverCoverInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $leftImageOffset;
- public $topImageOffset;
-
-
- public function setLeftImageOffset($leftImageOffset)
- {
- $this->leftImageOffset = $leftImageOffset;
- }
- public function getLeftImageOffset()
- {
- return $this->leftImageOffset;
- }
- public function setTopImageOffset($topImageOffset)
- {
- $this->topImageOffset = $topImageOffset;
- }
- public function getTopImageOffset()
- {
- return $this->topImageOffset;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonCoverCoverPhoto extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonEmails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
- public $value;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonImage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $isDefault;
- public $url;
-
-
- public function setIsDefault($isDefault)
- {
- $this->isDefault = $isDefault;
- }
- public function getIsDefault()
- {
- return $this->isDefault;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonName extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $familyName;
- public $formatted;
- public $givenName;
- public $honorificPrefix;
- public $honorificSuffix;
- public $middleName;
-
-
- public function setFamilyName($familyName)
- {
- $this->familyName = $familyName;
- }
- public function getFamilyName()
- {
- return $this->familyName;
- }
- public function setFormatted($formatted)
- {
- $this->formatted = $formatted;
- }
- public function getFormatted()
- {
- return $this->formatted;
- }
- public function setGivenName($givenName)
- {
- $this->givenName = $givenName;
- }
- public function getGivenName()
- {
- return $this->givenName;
- }
- public function setHonorificPrefix($honorificPrefix)
- {
- $this->honorificPrefix = $honorificPrefix;
- }
- public function getHonorificPrefix()
- {
- return $this->honorificPrefix;
- }
- public function setHonorificSuffix($honorificSuffix)
- {
- $this->honorificSuffix = $honorificSuffix;
- }
- public function getHonorificSuffix()
- {
- return $this->honorificSuffix;
- }
- public function setMiddleName($middleName)
- {
- $this->middleName = $middleName;
- }
- public function getMiddleName()
- {
- return $this->middleName;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonOrganizations extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $department;
- public $description;
- public $endDate;
- public $location;
- public $name;
- public $primary;
- public $startDate;
- public $title;
- public $type;
-
-
- public function setDepartment($department)
- {
- $this->department = $department;
- }
- public function getDepartment()
- {
- return $this->department;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setStartDate($startDate)
- {
- $this->startDate = $startDate;
- }
- public function getStartDate()
- {
- return $this->startDate;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonPlacesLived extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $primary;
- public $value;
-
-
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PersonUrls extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $label;
- public $type;
- public $value;
-
-
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Place extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $addressType = 'Postman_Google_Service_PlusDomains_PlaceAddress';
- protected $addressDataType = '';
- public $displayName;
- public $id;
- public $kind;
- protected $positionType = 'Postman_Google_Service_PlusDomains_PlacePosition';
- protected $positionDataType = '';
-
-
- public function setAddress(Postman_Google_Service_PlusDomains_PlaceAddress $address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- 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 setPosition(Postman_Google_Service_PlusDomains_PlacePosition $position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PlaceAddress extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $formatted;
-
-
- public function setFormatted($formatted)
- {
- $this->formatted = $formatted;
- }
- public function getFormatted()
- {
- return $this->formatted;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PlacePosition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $latitude;
- public $longitude;
-
-
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_PlusDomains_PlusDomainsAclentryResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $displayName;
- public $id;
- public $type;
-
-
- public function setDisplayName($displayName)
- {
- $this->displayName = $displayName;
- }
- public function getDisplayName()
- {
- return $this->displayName;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_PlusDomains_Videostream extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $type;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Prediction.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Prediction.php
deleted file mode 100644
index 86cc4c1..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Prediction.php
+++ /dev/null
@@ -1,1227 +0,0 @@
-
- * Lets you access a cloud hosted machine learning service that makes it easy to
- * build smart apps
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Prediction extends Postman_Google_Service -{ - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - /** Manage your data in the Google Prediction API. */ - const PREDICTION = - "https://www.googleapis.com/auth/prediction"; - - public $hostedmodels; - public $trainedmodels; - - - /** - * Constructs the internal representation of the Prediction service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'prediction/v1.6/projects/'; - $this->version = 'v1.6'; - $this->serviceName = 'prediction'; - - $this->hostedmodels = new Postman_Google_Service_Prediction_Hostedmodels_Resource( - $this, - $this->serviceName, - 'hostedmodels', - array( - 'methods' => array( - 'predict' => array( - 'path' => '{project}/hostedmodels/{hostedModelName}/predict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hostedModelName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->trainedmodels = new Postman_Google_Service_Prediction_Trainedmodels_Resource( - $this, - $this->serviceName, - 'trainedmodels', - array( - 'methods' => array( - 'analyze' => array( - 'path' => '{project}/trainedmodels/{id}/analyze', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/trainedmodels/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/trainedmodels/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/trainedmodels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/trainedmodels/list', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'predict' => array( - 'path' => '{project}/trainedmodels/{id}/predict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/trainedmodels/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "hostedmodels" collection of methods. - * Typical usage is: - *
- * $predictionService = new Postman_Google_Service_Prediction(...);
- * $hostedmodels = $predictionService->hostedmodels;
- *
- */
-class Postman_Google_Service_Prediction_Hostedmodels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Submit input and request an output against a hosted model.
- * (hostedmodels.predict)
- *
- * @param string $project The project associated with the model.
- * @param string $hostedModelName The name of a hosted model.
- * @param Postman_Google_Input $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Prediction_Output
- */
- public function predict($project, $hostedModelName, Postman_Google_Service_Prediction_Input $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'hostedModelName' => $hostedModelName, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('predict', array($params), "Postman_Google_Service_Prediction_Output");
- }
-}
-
-/**
- * The "trainedmodels" collection of methods.
- * Typical usage is:
- *
- * $predictionService = new Postman_Google_Service_Prediction(...);
- * $trainedmodels = $predictionService->trainedmodels;
- *
- */
-class Postman_Google_Service_Prediction_Trainedmodels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get analysis of the model and the data the model was trained on.
- * (trainedmodels.analyze)
- *
- * @param string $project The project associated with the model.
- * @param string $id The unique name for the predictive model.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Prediction_Analyze
- */
- public function analyze($project, $id, $optParams = array())
- {
- $params = array('project' => $project, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('analyze', array($params), "Postman_Google_Service_Prediction_Analyze");
- }
-
- /**
- * Delete a trained model. (trainedmodels.delete)
- *
- * @param string $project The project associated with the model.
- * @param string $id The unique name for the predictive model.
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $id, $optParams = array())
- {
- $params = array('project' => $project, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Check training status of your model. (trainedmodels.get)
- *
- * @param string $project The project associated with the model.
- * @param string $id The unique name for the predictive model.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Prediction_Insert2
- */
- public function get($project, $id, $optParams = array())
- {
- $params = array('project' => $project, 'id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Prediction_Insert2");
- }
-
- /**
- * Train a Prediction API model. (trainedmodels.insert)
- *
- * @param string $project The project associated with the model.
- * @param Postman_Google_Insert $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Prediction_Insert2
- */
- public function insert($project, Postman_Google_Service_Prediction_Insert $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Prediction_Insert2");
- }
-
- /**
- * List available models. (trainedmodels.listTrainedmodels)
- *
- * @param string $project The project associated with the model.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Pagination token.
- * @opt_param string maxResults Maximum number of results to return.
- * @return Postman_Google_Service_Prediction_PredictionList
- */
- public function listTrainedmodels($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Prediction_PredictionList");
- }
-
- /**
- * Submit model id and request a prediction. (trainedmodels.predict)
- *
- * @param string $project The project associated with the model.
- * @param string $id The unique name for the predictive model.
- * @param Postman_Google_Input $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Prediction_Output
- */
- public function predict($project, $id, Postman_Google_Service_Prediction_Input $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('predict', array($params), "Postman_Google_Service_Prediction_Output");
- }
-
- /**
- * Add new data to a trained model. (trainedmodels.update)
- *
- * @param string $project The project associated with the model.
- * @param string $id The unique name for the predictive model.
- * @param Postman_Google_Update $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Prediction_Insert2
- */
- public function update($project, $id, Postman_Google_Service_Prediction_Update $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Prediction_Insert2");
- }
-}
-
-
-
-
-class Postman_Google_Service_Prediction_Analyze extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $dataDescriptionType = 'Postman_Google_Service_Prediction_AnalyzeDataDescription';
- protected $dataDescriptionDataType = '';
- public $errors;
- public $id;
- public $kind;
- protected $modelDescriptionType = 'Postman_Google_Service_Prediction_AnalyzeModelDescription';
- protected $modelDescriptionDataType = '';
- public $selfLink;
-
-
- public function setDataDescription(Postman_Google_Service_Prediction_AnalyzeDataDescription $dataDescription)
- {
- $this->dataDescription = $dataDescription;
- }
- public function getDataDescription()
- {
- return $this->dataDescription;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- 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 setModelDescription(Postman_Google_Service_Prediction_AnalyzeModelDescription $modelDescription)
- {
- $this->modelDescription = $modelDescription;
- }
- public function getModelDescription()
- {
- return $this->modelDescription;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescription extends Postman_Google_Collection
-{
- protected $collection_key = 'features';
- protected $internal_gapi_mappings = array(
- );
- protected $featuresType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeatures';
- protected $featuresDataType = 'array';
- protected $outputFeatureType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature';
- protected $outputFeatureDataType = '';
-
-
- public function setFeatures($features)
- {
- $this->features = $features;
- }
- public function getFeatures()
- {
- return $this->features;
- }
- public function setOutputFeature(Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature $outputFeature)
- {
- $this->outputFeature = $outputFeature;
- }
- public function getOutputFeature()
- {
- return $this->outputFeature;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeatures extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $categoricalType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical';
- protected $categoricalDataType = '';
- public $index;
- protected $numericType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric';
- protected $numericDataType = '';
- protected $textType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText';
- protected $textDataType = '';
-
-
- public function setCategorical(Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical $categorical)
- {
- $this->categorical = $categorical;
- }
- public function getCategorical()
- {
- return $this->categorical;
- }
- public function setIndex($index)
- {
- $this->index = $index;
- }
- public function getIndex()
- {
- return $this->index;
- }
- public function setNumeric(Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric $numeric)
- {
- $this->numeric = $numeric;
- }
- public function getNumeric()
- {
- return $this->numeric;
- }
- public function setText(Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText $text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical extends Postman_Google_Collection
-{
- protected $collection_key = 'values';
- protected $internal_gapi_mappings = array(
- );
- public $count;
- protected $valuesType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategoricalValues';
- protected $valuesDataType = 'array';
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setValues($values)
- {
- $this->values = $values;
- }
- public function getValues()
- {
- return $this->values;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategoricalValues extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $value;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $mean;
- public $variance;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setMean($mean)
- {
- $this->mean = $mean;
- }
- public function getMean()
- {
- return $this->mean;
- }
- public function setVariance($variance)
- {
- $this->variance = $variance;
- }
- public function getVariance()
- {
- return $this->variance;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature extends Postman_Google_Collection
-{
- protected $collection_key = 'text';
- protected $internal_gapi_mappings = array(
- );
- protected $numericType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric';
- protected $numericDataType = '';
- protected $textType = 'Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureText';
- protected $textDataType = 'array';
-
-
- public function setNumeric(Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric $numeric)
- {
- $this->numeric = $numeric;
- }
- public function getNumeric()
- {
- return $this->numeric;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $mean;
- public $variance;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setMean($mean)
- {
- $this->mean = $mean;
- }
- public function getMean()
- {
- return $this->mean;
- }
- public function setVariance($variance)
- {
- $this->variance = $variance;
- }
- public function getVariance()
- {
- return $this->variance;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureText extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $value;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeErrors extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Prediction_AnalyzeModelDescription extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $confusionMatrix;
- public $confusionMatrixRowTotals;
- protected $modelinfoType = 'Postman_Google_Service_Prediction_Insert2';
- protected $modelinfoDataType = '';
-
-
- public function setConfusionMatrix($confusionMatrix)
- {
- $this->confusionMatrix = $confusionMatrix;
- }
- public function getConfusionMatrix()
- {
- return $this->confusionMatrix;
- }
- public function setConfusionMatrixRowTotals($confusionMatrixRowTotals)
- {
- $this->confusionMatrixRowTotals = $confusionMatrixRowTotals;
- }
- public function getConfusionMatrixRowTotals()
- {
- return $this->confusionMatrixRowTotals;
- }
- public function setModelinfo(Postman_Google_Service_Prediction_Insert2 $modelinfo)
- {
- $this->modelinfo = $modelinfo;
- }
- public function getModelinfo()
- {
- return $this->modelinfo;
- }
-}
-
-class Postman_Google_Service_Prediction_AnalyzeModelDescriptionConfusionMatrix extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Prediction_AnalyzeModelDescriptionConfusionMatrixElement extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Prediction_AnalyzeModelDescriptionConfusionMatrixRowTotals extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Prediction_Input extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $inputType = 'Postman_Google_Service_Prediction_InputInput';
- protected $inputDataType = '';
-
-
- public function setInput(Postman_Google_Service_Prediction_InputInput $input)
- {
- $this->input = $input;
- }
- public function getInput()
- {
- return $this->input;
- }
-}
-
-class Postman_Google_Service_Prediction_InputInput extends Postman_Google_Collection
-{
- protected $collection_key = 'csvInstance';
- protected $internal_gapi_mappings = array(
- );
- public $csvInstance;
-
-
- public function setCsvInstance($csvInstance)
- {
- $this->csvInstance = $csvInstance;
- }
- public function getCsvInstance()
- {
- return $this->csvInstance;
- }
-}
-
-class Postman_Google_Service_Prediction_Insert extends Postman_Google_Collection
-{
- protected $collection_key = 'utility';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $modelType;
- public $sourceModel;
- public $storageDataLocation;
- public $storagePMMLLocation;
- public $storagePMMLModelLocation;
- protected $trainingInstancesType = 'Postman_Google_Service_Prediction_InsertTrainingInstances';
- protected $trainingInstancesDataType = 'array';
- public $utility;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setModelType($modelType)
- {
- $this->modelType = $modelType;
- }
- public function getModelType()
- {
- return $this->modelType;
- }
- public function setSourceModel($sourceModel)
- {
- $this->sourceModel = $sourceModel;
- }
- public function getSourceModel()
- {
- return $this->sourceModel;
- }
- public function setStorageDataLocation($storageDataLocation)
- {
- $this->storageDataLocation = $storageDataLocation;
- }
- public function getStorageDataLocation()
- {
- return $this->storageDataLocation;
- }
- public function setStoragePMMLLocation($storagePMMLLocation)
- {
- $this->storagePMMLLocation = $storagePMMLLocation;
- }
- public function getStoragePMMLLocation()
- {
- return $this->storagePMMLLocation;
- }
- public function setStoragePMMLModelLocation($storagePMMLModelLocation)
- {
- $this->storagePMMLModelLocation = $storagePMMLModelLocation;
- }
- public function getStoragePMMLModelLocation()
- {
- return $this->storagePMMLModelLocation;
- }
- public function setTrainingInstances($trainingInstances)
- {
- $this->trainingInstances = $trainingInstances;
- }
- public function getTrainingInstances()
- {
- return $this->trainingInstances;
- }
- public function setUtility($utility)
- {
- $this->utility = $utility;
- }
- public function getUtility()
- {
- return $this->utility;
- }
-}
-
-class Postman_Google_Service_Prediction_Insert2 extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $created;
- public $id;
- public $kind;
- protected $modelInfoType = 'Postman_Google_Service_Prediction_Insert2ModelInfo';
- protected $modelInfoDataType = '';
- public $modelType;
- public $selfLink;
- public $storageDataLocation;
- public $storagePMMLLocation;
- public $storagePMMLModelLocation;
- public $trainingComplete;
- public $trainingStatus;
-
-
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- 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 setModelInfo(Postman_Google_Service_Prediction_Insert2ModelInfo $modelInfo)
- {
- $this->modelInfo = $modelInfo;
- }
- public function getModelInfo()
- {
- return $this->modelInfo;
- }
- public function setModelType($modelType)
- {
- $this->modelType = $modelType;
- }
- public function getModelType()
- {
- return $this->modelType;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStorageDataLocation($storageDataLocation)
- {
- $this->storageDataLocation = $storageDataLocation;
- }
- public function getStorageDataLocation()
- {
- return $this->storageDataLocation;
- }
- public function setStoragePMMLLocation($storagePMMLLocation)
- {
- $this->storagePMMLLocation = $storagePMMLLocation;
- }
- public function getStoragePMMLLocation()
- {
- return $this->storagePMMLLocation;
- }
- public function setStoragePMMLModelLocation($storagePMMLModelLocation)
- {
- $this->storagePMMLModelLocation = $storagePMMLModelLocation;
- }
- public function getStoragePMMLModelLocation()
- {
- return $this->storagePMMLModelLocation;
- }
- public function setTrainingComplete($trainingComplete)
- {
- $this->trainingComplete = $trainingComplete;
- }
- public function getTrainingComplete()
- {
- return $this->trainingComplete;
- }
- public function setTrainingStatus($trainingStatus)
- {
- $this->trainingStatus = $trainingStatus;
- }
- public function getTrainingStatus()
- {
- return $this->trainingStatus;
- }
-}
-
-class Postman_Google_Service_Prediction_Insert2ModelInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $classWeightedAccuracy;
- public $classificationAccuracy;
- public $meanSquaredError;
- public $modelType;
- public $numberInstances;
- public $numberLabels;
-
-
- public function setClassWeightedAccuracy($classWeightedAccuracy)
- {
- $this->classWeightedAccuracy = $classWeightedAccuracy;
- }
- public function getClassWeightedAccuracy()
- {
- return $this->classWeightedAccuracy;
- }
- public function setClassificationAccuracy($classificationAccuracy)
- {
- $this->classificationAccuracy = $classificationAccuracy;
- }
- public function getClassificationAccuracy()
- {
- return $this->classificationAccuracy;
- }
- public function setMeanSquaredError($meanSquaredError)
- {
- $this->meanSquaredError = $meanSquaredError;
- }
- public function getMeanSquaredError()
- {
- return $this->meanSquaredError;
- }
- public function setModelType($modelType)
- {
- $this->modelType = $modelType;
- }
- public function getModelType()
- {
- return $this->modelType;
- }
- public function setNumberInstances($numberInstances)
- {
- $this->numberInstances = $numberInstances;
- }
- public function getNumberInstances()
- {
- return $this->numberInstances;
- }
- public function setNumberLabels($numberLabels)
- {
- $this->numberLabels = $numberLabels;
- }
- public function getNumberLabels()
- {
- return $this->numberLabels;
- }
-}
-
-class Postman_Google_Service_Prediction_InsertTrainingInstances extends Postman_Google_Collection
-{
- protected $collection_key = 'csvInstance';
- protected $internal_gapi_mappings = array(
- );
- public $csvInstance;
- public $output;
-
-
- public function setCsvInstance($csvInstance)
- {
- $this->csvInstance = $csvInstance;
- }
- public function getCsvInstance()
- {
- return $this->csvInstance;
- }
- public function setOutput($output)
- {
- $this->output = $output;
- }
- public function getOutput()
- {
- return $this->output;
- }
-}
-
-class Postman_Google_Service_Prediction_InsertUtility extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Prediction_Output extends Postman_Google_Collection
-{
- protected $collection_key = 'outputMulti';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $outputLabel;
- protected $outputMultiType = 'Postman_Google_Service_Prediction_OutputOutputMulti';
- protected $outputMultiDataType = 'array';
- public $outputValue;
- public $selfLink;
-
-
- 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 setOutputLabel($outputLabel)
- {
- $this->outputLabel = $outputLabel;
- }
- public function getOutputLabel()
- {
- return $this->outputLabel;
- }
- public function setOutputMulti($outputMulti)
- {
- $this->outputMulti = $outputMulti;
- }
- public function getOutputMulti()
- {
- return $this->outputMulti;
- }
- public function setOutputValue($outputValue)
- {
- $this->outputValue = $outputValue;
- }
- public function getOutputValue()
- {
- return $this->outputValue;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Prediction_OutputOutputMulti extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $label;
- public $score;
-
-
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setScore($score)
- {
- $this->score = $score;
- }
- public function getScore()
- {
- return $this->score;
- }
-}
-
-class Postman_Google_Service_Prediction_PredictionList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Prediction_Insert2';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Prediction_Update extends Postman_Google_Collection
-{
- protected $collection_key = 'csvInstance';
- protected $internal_gapi_mappings = array(
- );
- public $csvInstance;
- public $output;
-
-
- public function setCsvInstance($csvInstance)
- {
- $this->csvInstance = $csvInstance;
- }
- public function getCsvInstance()
- {
- return $this->csvInstance;
- }
- public function setOutput($output)
- {
- $this->output = $output;
- }
- public function getOutput()
- {
- return $this->output;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Pubsub.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Pubsub.php
deleted file mode 100644
index 579f3d5..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Pubsub.php
+++ /dev/null
@@ -1,980 +0,0 @@
-
- * Provides reliable, many-to-many, asynchronous messaging between applications.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Pubsub extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage Pub/Sub topics and subscriptions. */ - const PUBSUB = - "https://www.googleapis.com/auth/pubsub"; - - public $subscriptions; - public $topics; - - - /** - * Constructs the internal representation of the Pubsub service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'pubsub/v1beta1/'; - $this->version = 'v1beta1'; - $this->serviceName = 'pubsub'; - - $this->subscriptions = new Postman_Google_Service_Pubsub_Subscriptions_Resource( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'acknowledge' => array( - 'path' => 'subscriptions/acknowledge', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'create' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'subscriptions/{+subscription}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'subscriptions/{+subscription}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'modifyAckDeadline' => array( - 'path' => 'subscriptions/modifyAckDeadline', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'modifyPushConfig' => array( - 'path' => 'subscriptions/modifyPushConfig', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'pull' => array( - 'path' => 'subscriptions/pull', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'pullBatch' => array( - 'path' => 'subscriptions/pullBatch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->topics = new Postman_Google_Service_Pubsub_Topics_Resource( - $this, - $this->serviceName, - 'topics', - array( - 'methods' => array( - 'create' => array( - 'path' => 'topics', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'topics/{+topic}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'topics/{+topic}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'topics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'publish' => array( - 'path' => 'topics/publish', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'publishBatch' => array( - 'path' => 'topics/publishBatch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "subscriptions" collection of methods. - * Typical usage is: - *
- * $pubsubService = new Postman_Google_Service_Pubsub(...);
- * $subscriptions = $pubsubService->subscriptions;
- *
- */
-class Postman_Google_Service_Pubsub_Subscriptions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Acknowledges a particular received message: the Pub/Sub system can remove the
- * given message from the subscription. Acknowledging a message whose Ack
- * deadline has expired may succeed, but the message could have been already
- * redelivered. Acknowledging a message more than once will not result in an
- * error. This is only used for messages received via pull.
- * (subscriptions.acknowledge)
- *
- * @param Postman_Google_AcknowledgeRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function acknowledge(Postman_Google_Service_Pubsub_AcknowledgeRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('acknowledge', array($params));
- }
-
- /**
- * Creates a subscription on a given topic for a given subscriber. If the
- * subscription already exists, returns ALREADY_EXISTS. If the corresponding
- * topic doesn't exist, returns NOT_FOUND.
- *
- * If the name is not provided in the request, the server will assign a random
- * name for this subscription on the same project as the topic.
- * (subscriptions.create)
- *
- * @param Postman_Google_Subscription $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_Subscription
- */
- public function create(Postman_Google_Service_Pubsub_Subscription $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Pubsub_Subscription");
- }
-
- /**
- * Deletes an existing subscription. All pending messages in the subscription
- * are immediately dropped. Calls to Pull after deletion will return NOT_FOUND.
- * (subscriptions.delete)
- *
- * @param string $subscription The subscription to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($subscription, $optParams = array())
- {
- $params = array('subscription' => $subscription);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the configuration details of a subscription. (subscriptions.get)
- *
- * @param string $subscription The name of the subscription to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_Subscription
- */
- public function get($subscription, $optParams = array())
- {
- $params = array('subscription' => $subscription);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Pubsub_Subscription");
- }
-
- /**
- * Lists matching subscriptions. (subscriptions.listSubscriptions)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The value obtained in the last
- * ListSubscriptionsResponse for continuation.
- * @opt_param int maxResults Maximum number of subscriptions to return.
- * @opt_param string query A valid label query expression.
- * @return Postman_Google_Service_Pubsub_ListSubscriptionsResponse
- */
- public function listSubscriptions($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Pubsub_ListSubscriptionsResponse");
- }
-
- /**
- * Modifies the Ack deadline for a message received from a pull request.
- * (subscriptions.modifyAckDeadline)
- *
- * @param Postman_Google_ModifyAckDeadlineRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function modifyAckDeadline(Postman_Google_Service_Pubsub_ModifyAckDeadlineRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('modifyAckDeadline', array($params));
- }
-
- /**
- * Modifies the PushConfig for a specified subscription. This method can be used
- * to suspend the flow of messages to an end point by clearing the PushConfig
- * field in the request. Messages will be accumulated for delivery even if no
- * push configuration is defined or while the configuration is modified.
- * (subscriptions.modifyPushConfig)
- *
- * @param Postman_Google_ModifyPushConfigRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function modifyPushConfig(Postman_Google_Service_Pubsub_ModifyPushConfigRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('modifyPushConfig', array($params));
- }
-
- /**
- * Pulls a single message from the server. If return_immediately is true, and no
- * messages are available in the subscription, this method returns
- * FAILED_PRECONDITION. The system is free to return an UNAVAILABLE error if no
- * messages are available in a reasonable amount of time (to reduce system
- * load). (subscriptions.pull)
- *
- * @param Postman_Google_PullRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_PullResponse
- */
- public function pull(Postman_Google_Service_Pubsub_PullRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('pull', array($params), "Postman_Google_Service_Pubsub_PullResponse");
- }
-
- /**
- * Pulls messages from the server. Returns an empty list if there are no
- * messages available in the backlog. The system is free to return UNAVAILABLE
- * if there too many pull requests outstanding for a given subscription.
- * (subscriptions.pullBatch)
- *
- * @param Postman_Google_PullBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_PullBatchResponse
- */
- public function pullBatch(Postman_Google_Service_Pubsub_PullBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('pullBatch', array($params), "Postman_Google_Service_Pubsub_PullBatchResponse");
- }
-}
-
-/**
- * The "topics" collection of methods.
- * Typical usage is:
- *
- * $pubsubService = new Postman_Google_Service_Pubsub(...);
- * $topics = $pubsubService->topics;
- *
- */
-class Postman_Google_Service_Pubsub_Topics_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates the given topic with the given name. (topics.create)
- *
- * @param Postman_Google_Topic $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_Topic
- */
- public function create(Postman_Google_Service_Pubsub_Topic $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_Pubsub_Topic");
- }
-
- /**
- * Deletes the topic with the given name. All subscriptions to this topic are
- * also deleted. Returns NOT_FOUND if the topic does not exist. After a topic is
- * deleted, a new topic may be created with the same name. (topics.delete)
- *
- * @param string $topic Name of the topic to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($topic, $optParams = array())
- {
- $params = array('topic' => $topic);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets the configuration of a topic. Since the topic only has the name
- * attribute, this method is only useful to check the existence of a topic. If
- * other attributes are added in the future, they will be returned here.
- * (topics.get)
- *
- * @param string $topic The name of the topic to get.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_Topic
- */
- public function get($topic, $optParams = array())
- {
- $params = array('topic' => $topic);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Pubsub_Topic");
- }
-
- /**
- * Lists matching topics. (topics.listTopics)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The value obtained in the last ListTopicsResponse
- * for continuation.
- * @opt_param int maxResults Maximum number of topics to return.
- * @opt_param string query A valid label query expression.
- * @return Postman_Google_Service_Pubsub_ListTopicsResponse
- */
- public function listTopics($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Pubsub_ListTopicsResponse");
- }
-
- /**
- * Adds a message to the topic. Returns NOT_FOUND if the topic does not exist.
- * (topics.publish)
- *
- * @param Postman_Google_PublishRequest $postBody
- * @param array $optParams Optional parameters.
- */
- public function publish(Postman_Google_Service_Pubsub_PublishRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('publish', array($params));
- }
-
- /**
- * Adds one or more messages to the topic. Returns NOT_FOUND if the topic does
- * not exist. (topics.publishBatch)
- *
- * @param Postman_Google_PublishBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Pubsub_PublishBatchResponse
- */
- public function publishBatch(Postman_Google_Service_Pubsub_PublishBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('publishBatch', array($params), "Postman_Google_Service_Pubsub_PublishBatchResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Pubsub_AcknowledgeRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'ackId';
- protected $internal_gapi_mappings = array(
- );
- public $ackId;
- public $subscription;
-
-
- public function setAckId($ackId)
- {
- $this->ackId = $ackId;
- }
- public function getAckId()
- {
- return $this->ackId;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
-}
-
-class Postman_Google_Service_Pubsub_Label extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $numValue;
- public $strValue;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setNumValue($numValue)
- {
- $this->numValue = $numValue;
- }
- public function getNumValue()
- {
- return $this->numValue;
- }
- public function setStrValue($strValue)
- {
- $this->strValue = $strValue;
- }
- public function getStrValue()
- {
- return $this->strValue;
- }
-}
-
-class Postman_Google_Service_Pubsub_ListSubscriptionsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'subscription';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $subscriptionType = 'Postman_Google_Service_Pubsub_Subscription';
- protected $subscriptionDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
-}
-
-class Postman_Google_Service_Pubsub_ListTopicsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'topic';
- protected $internal_gapi_mappings = array(
- );
- public $nextPageToken;
- protected $topicType = 'Postman_Google_Service_Pubsub_Topic';
- protected $topicDataType = 'array';
-
-
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setTopic($topic)
- {
- $this->topic = $topic;
- }
- public function getTopic()
- {
- return $this->topic;
- }
-}
-
-class Postman_Google_Service_Pubsub_ModifyAckDeadlineRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $ackDeadlineSeconds;
- public $ackId;
- public $subscription;
-
-
- public function setAckDeadlineSeconds($ackDeadlineSeconds)
- {
- $this->ackDeadlineSeconds = $ackDeadlineSeconds;
- }
- public function getAckDeadlineSeconds()
- {
- return $this->ackDeadlineSeconds;
- }
- public function setAckId($ackId)
- {
- $this->ackId = $ackId;
- }
- public function getAckId()
- {
- return $this->ackId;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
-}
-
-class Postman_Google_Service_Pubsub_ModifyPushConfigRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $pushConfigType = 'Postman_Google_Service_Pubsub_PushConfig';
- protected $pushConfigDataType = '';
- public $subscription;
-
-
- public function setPushConfig(Postman_Google_Service_Pubsub_PushConfig $pushConfig)
- {
- $this->pushConfig = $pushConfig;
- }
- public function getPushConfig()
- {
- return $this->pushConfig;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
-}
-
-class Postman_Google_Service_Pubsub_PublishBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'messages';
- protected $internal_gapi_mappings = array(
- );
- protected $messagesType = 'Postman_Google_Service_Pubsub_PubsubMessage';
- protected $messagesDataType = 'array';
- public $topic;
-
-
- public function setMessages($messages)
- {
- $this->messages = $messages;
- }
- public function getMessages()
- {
- return $this->messages;
- }
- public function setTopic($topic)
- {
- $this->topic = $topic;
- }
- public function getTopic()
- {
- return $this->topic;
- }
-}
-
-class Postman_Google_Service_Pubsub_PublishBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'messageIds';
- protected $internal_gapi_mappings = array(
- );
- public $messageIds;
-
-
- public function setMessageIds($messageIds)
- {
- $this->messageIds = $messageIds;
- }
- public function getMessageIds()
- {
- return $this->messageIds;
- }
-}
-
-class Postman_Google_Service_Pubsub_PublishRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $messageType = 'Postman_Google_Service_Pubsub_PubsubMessage';
- protected $messageDataType = '';
- public $topic;
-
-
- public function setMessage(Postman_Google_Service_Pubsub_PubsubMessage $message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setTopic($topic)
- {
- $this->topic = $topic;
- }
- public function getTopic()
- {
- return $this->topic;
- }
-}
-
-class Postman_Google_Service_Pubsub_PubsubEvent extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $deleted;
- protected $messageType = 'Postman_Google_Service_Pubsub_PubsubMessage';
- protected $messageDataType = '';
- public $subscription;
- public $truncated;
-
-
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setMessage(Postman_Google_Service_Pubsub_PubsubMessage $message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
- public function setTruncated($truncated)
- {
- $this->truncated = $truncated;
- }
- public function getTruncated()
- {
- return $this->truncated;
- }
-}
-
-class Postman_Google_Service_Pubsub_PubsubMessage extends Postman_Google_Collection
-{
- protected $collection_key = 'label';
- protected $internal_gapi_mappings = array(
- );
- public $data;
- protected $labelType = 'Postman_Google_Service_Pubsub_Label';
- protected $labelDataType = 'array';
- public $messageId;
-
-
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setLabel($label)
- {
- $this->label = $label;
- }
- public function getLabel()
- {
- return $this->label;
- }
- public function setMessageId($messageId)
- {
- $this->messageId = $messageId;
- }
- public function getMessageId()
- {
- return $this->messageId;
- }
-}
-
-class Postman_Google_Service_Pubsub_PullBatchRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $maxEvents;
- public $returnImmediately;
- public $subscription;
-
-
- public function setMaxEvents($maxEvents)
- {
- $this->maxEvents = $maxEvents;
- }
- public function getMaxEvents()
- {
- return $this->maxEvents;
- }
- public function setReturnImmediately($returnImmediately)
- {
- $this->returnImmediately = $returnImmediately;
- }
- public function getReturnImmediately()
- {
- return $this->returnImmediately;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
-}
-
-class Postman_Google_Service_Pubsub_PullBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'pullResponses';
- protected $internal_gapi_mappings = array(
- );
- protected $pullResponsesType = 'Postman_Google_Service_Pubsub_PullResponse';
- protected $pullResponsesDataType = 'array';
-
-
- public function setPullResponses($pullResponses)
- {
- $this->pullResponses = $pullResponses;
- }
- public function getPullResponses()
- {
- return $this->pullResponses;
- }
-}
-
-class Postman_Google_Service_Pubsub_PullRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $returnImmediately;
- public $subscription;
-
-
- public function setReturnImmediately($returnImmediately)
- {
- $this->returnImmediately = $returnImmediately;
- }
- public function getReturnImmediately()
- {
- return $this->returnImmediately;
- }
- public function setSubscription($subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
-}
-
-class Postman_Google_Service_Pubsub_PullResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $ackId;
- protected $pubsubEventType = 'Postman_Google_Service_Pubsub_PubsubEvent';
- protected $pubsubEventDataType = '';
-
-
- public function setAckId($ackId)
- {
- $this->ackId = $ackId;
- }
- public function getAckId()
- {
- return $this->ackId;
- }
- public function setPubsubEvent(Postman_Google_Service_Pubsub_PubsubEvent $pubsubEvent)
- {
- $this->pubsubEvent = $pubsubEvent;
- }
- public function getPubsubEvent()
- {
- return $this->pubsubEvent;
- }
-}
-
-class Postman_Google_Service_Pubsub_PushConfig extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $pushEndpoint;
-
-
- public function setPushEndpoint($pushEndpoint)
- {
- $this->pushEndpoint = $pushEndpoint;
- }
- public function getPushEndpoint()
- {
- return $this->pushEndpoint;
- }
-}
-
-class Postman_Google_Service_Pubsub_Subscription extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $ackDeadlineSeconds;
- public $name;
- protected $pushConfigType = 'Postman_Google_Service_Pubsub_PushConfig';
- protected $pushConfigDataType = '';
- public $topic;
-
-
- public function setAckDeadlineSeconds($ackDeadlineSeconds)
- {
- $this->ackDeadlineSeconds = $ackDeadlineSeconds;
- }
- public function getAckDeadlineSeconds()
- {
- return $this->ackDeadlineSeconds;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPushConfig(Postman_Google_Service_Pubsub_PushConfig $pushConfig)
- {
- $this->pushConfig = $pushConfig;
- }
- public function getPushConfig()
- {
- return $this->pushConfig;
- }
- public function setTopic($topic)
- {
- $this->topic = $topic;
- }
- public function getTopic()
- {
- return $this->topic;
- }
-}
-
-class Postman_Google_Service_Pubsub_Topic extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/QPXExpress.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/QPXExpress.php
deleted file mode 100644
index ff2d25f..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/QPXExpress.php
+++ /dev/null
@@ -1,1537 +0,0 @@
-
- * Lets you find the least expensive flights between an origin and a
- * destination.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_QPXExpress extends Postman_Google_Service -{ - - - public $trips; - - - /** - * Constructs the internal representation of the QPXExpress service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'qpxExpress/v1/trips/'; - $this->version = 'v1'; - $this->serviceName = 'qpxExpress'; - - $this->trips = new Postman_Google_Service_QPXExpress_Trips_Resource( - $this, - $this->serviceName, - 'trips', - array( - 'methods' => array( - 'search' => array( - 'path' => 'search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "trips" collection of methods. - * Typical usage is: - *
- * $qpxExpressService = new Postman_Google_Service_QPXExpress(...);
- * $trips = $qpxExpressService->trips;
- *
- */
-class Postman_Google_Service_QPXExpress_Trips_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of flights. (trips.search)
- *
- * @param Postman_Google_TripsSearchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_QPXExpress_TripsSearchResponse
- */
- public function search(Postman_Google_Service_QPXExpress_TripsSearchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('search', array($params), "Postman_Google_Service_QPXExpress_TripsSearchResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_QPXExpress_AircraftData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $kind;
- public $name;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_QPXExpress_AirportData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $city;
- public $code;
- public $kind;
- public $name;
-
-
- public function setCity($city)
- {
- $this->city = $city;
- }
- public function getCity()
- {
- return $this->city;
- }
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_QPXExpress_BagDescriptor extends Postman_Google_Collection
-{
- protected $collection_key = 'description';
- protected $internal_gapi_mappings = array(
- );
- public $commercialName;
- public $count;
- public $description;
- public $kind;
- public $subcode;
-
-
- public function setCommercialName($commercialName)
- {
- $this->commercialName = $commercialName;
- }
- public function getCommercialName()
- {
- return $this->commercialName;
- }
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSubcode($subcode)
- {
- $this->subcode = $subcode;
- }
- public function getSubcode()
- {
- return $this->subcode;
- }
-}
-
-class Postman_Google_Service_QPXExpress_CarrierData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $kind;
- public $name;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_QPXExpress_CityData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $country;
- public $kind;
- public $name;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- 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;
- }
-}
-
-class Postman_Google_Service_QPXExpress_Data extends Postman_Google_Collection
-{
- protected $collection_key = 'tax';
- protected $internal_gapi_mappings = array(
- );
- protected $aircraftType = 'Postman_Google_Service_QPXExpress_AircraftData';
- protected $aircraftDataType = 'array';
- protected $airportType = 'Postman_Google_Service_QPXExpress_AirportData';
- protected $airportDataType = 'array';
- protected $carrierType = 'Postman_Google_Service_QPXExpress_CarrierData';
- protected $carrierDataType = 'array';
- protected $cityType = 'Postman_Google_Service_QPXExpress_CityData';
- protected $cityDataType = 'array';
- public $kind;
- protected $taxType = 'Postman_Google_Service_QPXExpress_TaxData';
- protected $taxDataType = 'array';
-
-
- public function setAircraft($aircraft)
- {
- $this->aircraft = $aircraft;
- }
- public function getAircraft()
- {
- return $this->aircraft;
- }
- public function setAirport($airport)
- {
- $this->airport = $airport;
- }
- public function getAirport()
- {
- return $this->airport;
- }
- public function setCarrier($carrier)
- {
- $this->carrier = $carrier;
- }
- public function getCarrier()
- {
- return $this->carrier;
- }
- public function setCity($city)
- {
- $this->city = $city;
- }
- public function getCity()
- {
- return $this->city;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTax($tax)
- {
- $this->tax = $tax;
- }
- public function getTax()
- {
- return $this->tax;
- }
-}
-
-class Postman_Google_Service_QPXExpress_FareInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $basisCode;
- public $carrier;
- public $destination;
- public $id;
- public $kind;
- public $origin;
- public $private;
-
-
- public function setBasisCode($basisCode)
- {
- $this->basisCode = $basisCode;
- }
- public function getBasisCode()
- {
- return $this->basisCode;
- }
- public function setCarrier($carrier)
- {
- $this->carrier = $carrier;
- }
- public function getCarrier()
- {
- return $this->carrier;
- }
- public function setDestination($destination)
- {
- $this->destination = $destination;
- }
- public function getDestination()
- {
- return $this->destination;
- }
- 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 setOrigin($origin)
- {
- $this->origin = $origin;
- }
- public function getOrigin()
- {
- return $this->origin;
- }
- public function setPrivate($private)
- {
- $this->private = $private;
- }
- public function getPrivate()
- {
- return $this->private;
- }
-}
-
-class Postman_Google_Service_QPXExpress_FlightInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $carrier;
- public $number;
-
-
- public function setCarrier($carrier)
- {
- $this->carrier = $carrier;
- }
- public function getCarrier()
- {
- return $this->carrier;
- }
- public function setNumber($number)
- {
- $this->number = $number;
- }
- public function getNumber()
- {
- return $this->number;
- }
-}
-
-class Postman_Google_Service_QPXExpress_FreeBaggageAllowance extends Postman_Google_Collection
-{
- protected $collection_key = 'bagDescriptor';
- protected $internal_gapi_mappings = array(
- );
- protected $bagDescriptorType = 'Postman_Google_Service_QPXExpress_BagDescriptor';
- protected $bagDescriptorDataType = 'array';
- public $kilos;
- public $kilosPerPiece;
- public $kind;
- public $pieces;
- public $pounds;
-
-
- public function setBagDescriptor($bagDescriptor)
- {
- $this->bagDescriptor = $bagDescriptor;
- }
- public function getBagDescriptor()
- {
- return $this->bagDescriptor;
- }
- public function setKilos($kilos)
- {
- $this->kilos = $kilos;
- }
- public function getKilos()
- {
- return $this->kilos;
- }
- public function setKilosPerPiece($kilosPerPiece)
- {
- $this->kilosPerPiece = $kilosPerPiece;
- }
- public function getKilosPerPiece()
- {
- return $this->kilosPerPiece;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPieces($pieces)
- {
- $this->pieces = $pieces;
- }
- public function getPieces()
- {
- return $this->pieces;
- }
- public function setPounds($pounds)
- {
- $this->pounds = $pounds;
- }
- public function getPounds()
- {
- return $this->pounds;
- }
-}
-
-class Postman_Google_Service_QPXExpress_LegInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $aircraft;
- public $arrivalTime;
- public $changePlane;
- public $connectionDuration;
- public $departureTime;
- public $destination;
- public $destinationTerminal;
- public $duration;
- public $id;
- public $kind;
- public $meal;
- public $mileage;
- public $onTimePerformance;
- public $operatingDisclosure;
- public $origin;
- public $originTerminal;
- public $secure;
-
-
- public function setAircraft($aircraft)
- {
- $this->aircraft = $aircraft;
- }
- public function getAircraft()
- {
- return $this->aircraft;
- }
- public function setArrivalTime($arrivalTime)
- {
- $this->arrivalTime = $arrivalTime;
- }
- public function getArrivalTime()
- {
- return $this->arrivalTime;
- }
- public function setChangePlane($changePlane)
- {
- $this->changePlane = $changePlane;
- }
- public function getChangePlane()
- {
- return $this->changePlane;
- }
- public function setConnectionDuration($connectionDuration)
- {
- $this->connectionDuration = $connectionDuration;
- }
- public function getConnectionDuration()
- {
- return $this->connectionDuration;
- }
- public function setDepartureTime($departureTime)
- {
- $this->departureTime = $departureTime;
- }
- public function getDepartureTime()
- {
- return $this->departureTime;
- }
- public function setDestination($destination)
- {
- $this->destination = $destination;
- }
- public function getDestination()
- {
- return $this->destination;
- }
- public function setDestinationTerminal($destinationTerminal)
- {
- $this->destinationTerminal = $destinationTerminal;
- }
- public function getDestinationTerminal()
- {
- return $this->destinationTerminal;
- }
- public function setDuration($duration)
- {
- $this->duration = $duration;
- }
- public function getDuration()
- {
- return $this->duration;
- }
- 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 setMeal($meal)
- {
- $this->meal = $meal;
- }
- public function getMeal()
- {
- return $this->meal;
- }
- public function setMileage($mileage)
- {
- $this->mileage = $mileage;
- }
- public function getMileage()
- {
- return $this->mileage;
- }
- public function setOnTimePerformance($onTimePerformance)
- {
- $this->onTimePerformance = $onTimePerformance;
- }
- public function getOnTimePerformance()
- {
- return $this->onTimePerformance;
- }
- public function setOperatingDisclosure($operatingDisclosure)
- {
- $this->operatingDisclosure = $operatingDisclosure;
- }
- public function getOperatingDisclosure()
- {
- return $this->operatingDisclosure;
- }
- public function setOrigin($origin)
- {
- $this->origin = $origin;
- }
- public function getOrigin()
- {
- return $this->origin;
- }
- public function setOriginTerminal($originTerminal)
- {
- $this->originTerminal = $originTerminal;
- }
- public function getOriginTerminal()
- {
- return $this->originTerminal;
- }
- public function setSecure($secure)
- {
- $this->secure = $secure;
- }
- public function getSecure()
- {
- return $this->secure;
- }
-}
-
-class Postman_Google_Service_QPXExpress_PassengerCounts extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adultCount;
- public $childCount;
- public $infantInLapCount;
- public $infantInSeatCount;
- public $kind;
- public $seniorCount;
-
-
- public function setAdultCount($adultCount)
- {
- $this->adultCount = $adultCount;
- }
- public function getAdultCount()
- {
- return $this->adultCount;
- }
- public function setChildCount($childCount)
- {
- $this->childCount = $childCount;
- }
- public function getChildCount()
- {
- return $this->childCount;
- }
- public function setInfantInLapCount($infantInLapCount)
- {
- $this->infantInLapCount = $infantInLapCount;
- }
- public function getInfantInLapCount()
- {
- return $this->infantInLapCount;
- }
- public function setInfantInSeatCount($infantInSeatCount)
- {
- $this->infantInSeatCount = $infantInSeatCount;
- }
- public function getInfantInSeatCount()
- {
- return $this->infantInSeatCount;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSeniorCount($seniorCount)
- {
- $this->seniorCount = $seniorCount;
- }
- public function getSeniorCount()
- {
- return $this->seniorCount;
- }
-}
-
-class Postman_Google_Service_QPXExpress_PricingInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'tax';
- protected $internal_gapi_mappings = array(
- );
- public $baseFareTotal;
- protected $fareType = 'Postman_Google_Service_QPXExpress_FareInfo';
- protected $fareDataType = 'array';
- public $fareCalculation;
- public $kind;
- public $latestTicketingTime;
- protected $passengersType = 'Postman_Google_Service_QPXExpress_PassengerCounts';
- protected $passengersDataType = '';
- public $ptc;
- public $refundable;
- public $saleFareTotal;
- public $saleTaxTotal;
- public $saleTotal;
- protected $segmentPricingType = 'Postman_Google_Service_QPXExpress_SegmentPricing';
- protected $segmentPricingDataType = 'array';
- protected $taxType = 'Postman_Google_Service_QPXExpress_TaxInfo';
- protected $taxDataType = 'array';
-
-
- public function setBaseFareTotal($baseFareTotal)
- {
- $this->baseFareTotal = $baseFareTotal;
- }
- public function getBaseFareTotal()
- {
- return $this->baseFareTotal;
- }
- public function setFare($fare)
- {
- $this->fare = $fare;
- }
- public function getFare()
- {
- return $this->fare;
- }
- public function setFareCalculation($fareCalculation)
- {
- $this->fareCalculation = $fareCalculation;
- }
- public function getFareCalculation()
- {
- return $this->fareCalculation;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLatestTicketingTime($latestTicketingTime)
- {
- $this->latestTicketingTime = $latestTicketingTime;
- }
- public function getLatestTicketingTime()
- {
- return $this->latestTicketingTime;
- }
- public function setPassengers(Postman_Google_Service_QPXExpress_PassengerCounts $passengers)
- {
- $this->passengers = $passengers;
- }
- public function getPassengers()
- {
- return $this->passengers;
- }
- public function setPtc($ptc)
- {
- $this->ptc = $ptc;
- }
- public function getPtc()
- {
- return $this->ptc;
- }
- public function setRefundable($refundable)
- {
- $this->refundable = $refundable;
- }
- public function getRefundable()
- {
- return $this->refundable;
- }
- public function setSaleFareTotal($saleFareTotal)
- {
- $this->saleFareTotal = $saleFareTotal;
- }
- public function getSaleFareTotal()
- {
- return $this->saleFareTotal;
- }
- public function setSaleTaxTotal($saleTaxTotal)
- {
- $this->saleTaxTotal = $saleTaxTotal;
- }
- public function getSaleTaxTotal()
- {
- return $this->saleTaxTotal;
- }
- public function setSaleTotal($saleTotal)
- {
- $this->saleTotal = $saleTotal;
- }
- public function getSaleTotal()
- {
- return $this->saleTotal;
- }
- public function setSegmentPricing($segmentPricing)
- {
- $this->segmentPricing = $segmentPricing;
- }
- public function getSegmentPricing()
- {
- return $this->segmentPricing;
- }
- public function setTax($tax)
- {
- $this->tax = $tax;
- }
- public function getTax()
- {
- return $this->tax;
- }
-}
-
-class Postman_Google_Service_QPXExpress_SegmentInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'leg';
- protected $internal_gapi_mappings = array(
- );
- public $bookingCode;
- public $bookingCodeCount;
- public $cabin;
- public $connectionDuration;
- public $duration;
- protected $flightType = 'Postman_Google_Service_QPXExpress_FlightInfo';
- protected $flightDataType = '';
- public $id;
- public $kind;
- protected $legType = 'Postman_Google_Service_QPXExpress_LegInfo';
- protected $legDataType = 'array';
- public $marriedSegmentGroup;
- public $subjectToGovernmentApproval;
-
-
- public function setBookingCode($bookingCode)
- {
- $this->bookingCode = $bookingCode;
- }
- public function getBookingCode()
- {
- return $this->bookingCode;
- }
- public function setBookingCodeCount($bookingCodeCount)
- {
- $this->bookingCodeCount = $bookingCodeCount;
- }
- public function getBookingCodeCount()
- {
- return $this->bookingCodeCount;
- }
- public function setCabin($cabin)
- {
- $this->cabin = $cabin;
- }
- public function getCabin()
- {
- return $this->cabin;
- }
- public function setConnectionDuration($connectionDuration)
- {
- $this->connectionDuration = $connectionDuration;
- }
- public function getConnectionDuration()
- {
- return $this->connectionDuration;
- }
- public function setDuration($duration)
- {
- $this->duration = $duration;
- }
- public function getDuration()
- {
- return $this->duration;
- }
- public function setFlight(Postman_Google_Service_QPXExpress_FlightInfo $flight)
- {
- $this->flight = $flight;
- }
- public function getFlight()
- {
- return $this->flight;
- }
- 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 setLeg($leg)
- {
- $this->leg = $leg;
- }
- public function getLeg()
- {
- return $this->leg;
- }
- public function setMarriedSegmentGroup($marriedSegmentGroup)
- {
- $this->marriedSegmentGroup = $marriedSegmentGroup;
- }
- public function getMarriedSegmentGroup()
- {
- return $this->marriedSegmentGroup;
- }
- public function setSubjectToGovernmentApproval($subjectToGovernmentApproval)
- {
- $this->subjectToGovernmentApproval = $subjectToGovernmentApproval;
- }
- public function getSubjectToGovernmentApproval()
- {
- return $this->subjectToGovernmentApproval;
- }
-}
-
-class Postman_Google_Service_QPXExpress_SegmentPricing extends Postman_Google_Collection
-{
- protected $collection_key = 'freeBaggageOption';
- protected $internal_gapi_mappings = array(
- );
- public $fareId;
- protected $freeBaggageOptionType = 'Postman_Google_Service_QPXExpress_FreeBaggageAllowance';
- protected $freeBaggageOptionDataType = 'array';
- public $kind;
- public $segmentId;
-
-
- public function setFareId($fareId)
- {
- $this->fareId = $fareId;
- }
- public function getFareId()
- {
- return $this->fareId;
- }
- public function setFreeBaggageOption($freeBaggageOption)
- {
- $this->freeBaggageOption = $freeBaggageOption;
- }
- public function getFreeBaggageOption()
- {
- return $this->freeBaggageOption;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSegmentId($segmentId)
- {
- $this->segmentId = $segmentId;
- }
- public function getSegmentId()
- {
- return $this->segmentId;
- }
-}
-
-class Postman_Google_Service_QPXExpress_SliceInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'segment';
- protected $internal_gapi_mappings = array(
- );
- public $duration;
- public $kind;
- protected $segmentType = 'Postman_Google_Service_QPXExpress_SegmentInfo';
- protected $segmentDataType = 'array';
-
-
- public function setDuration($duration)
- {
- $this->duration = $duration;
- }
- public function getDuration()
- {
- return $this->duration;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSegment($segment)
- {
- $this->segment = $segment;
- }
- public function getSegment()
- {
- return $this->segment;
- }
-}
-
-class Postman_Google_Service_QPXExpress_SliceInput extends Postman_Google_Collection
-{
- protected $collection_key = 'prohibitedCarrier';
- protected $internal_gapi_mappings = array(
- );
- public $alliance;
- public $date;
- public $destination;
- public $kind;
- public $maxConnectionDuration;
- public $maxStops;
- public $origin;
- public $permittedCarrier;
- protected $permittedDepartureTimeType = 'Postman_Google_Service_QPXExpress_TimeOfDayRange';
- protected $permittedDepartureTimeDataType = '';
- public $preferredCabin;
- public $prohibitedCarrier;
-
-
- public function setAlliance($alliance)
- {
- $this->alliance = $alliance;
- }
- public function getAlliance()
- {
- return $this->alliance;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setDestination($destination)
- {
- $this->destination = $destination;
- }
- public function getDestination()
- {
- return $this->destination;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxConnectionDuration($maxConnectionDuration)
- {
- $this->maxConnectionDuration = $maxConnectionDuration;
- }
- public function getMaxConnectionDuration()
- {
- return $this->maxConnectionDuration;
- }
- public function setMaxStops($maxStops)
- {
- $this->maxStops = $maxStops;
- }
- public function getMaxStops()
- {
- return $this->maxStops;
- }
- public function setOrigin($origin)
- {
- $this->origin = $origin;
- }
- public function getOrigin()
- {
- return $this->origin;
- }
- public function setPermittedCarrier($permittedCarrier)
- {
- $this->permittedCarrier = $permittedCarrier;
- }
- public function getPermittedCarrier()
- {
- return $this->permittedCarrier;
- }
- public function setPermittedDepartureTime(Postman_Google_Service_QPXExpress_TimeOfDayRange $permittedDepartureTime)
- {
- $this->permittedDepartureTime = $permittedDepartureTime;
- }
- public function getPermittedDepartureTime()
- {
- return $this->permittedDepartureTime;
- }
- public function setPreferredCabin($preferredCabin)
- {
- $this->preferredCabin = $preferredCabin;
- }
- public function getPreferredCabin()
- {
- return $this->preferredCabin;
- }
- public function setProhibitedCarrier($prohibitedCarrier)
- {
- $this->prohibitedCarrier = $prohibitedCarrier;
- }
- public function getProhibitedCarrier()
- {
- return $this->prohibitedCarrier;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TaxData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- public $name;
-
-
- 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;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TaxInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $chargeType;
- public $code;
- public $country;
- public $id;
- public $kind;
- public $salePrice;
-
-
- public function setChargeType($chargeType)
- {
- $this->chargeType = $chargeType;
- }
- public function getChargeType()
- {
- return $this->chargeType;
- }
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- 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 setSalePrice($salePrice)
- {
- $this->salePrice = $salePrice;
- }
- public function getSalePrice()
- {
- return $this->salePrice;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TimeOfDayRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $earliestTime;
- public $kind;
- public $latestTime;
-
-
- public function setEarliestTime($earliestTime)
- {
- $this->earliestTime = $earliestTime;
- }
- public function getEarliestTime()
- {
- return $this->earliestTime;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLatestTime($latestTime)
- {
- $this->latestTime = $latestTime;
- }
- public function getLatestTime()
- {
- return $this->latestTime;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TripOption extends Postman_Google_Collection
-{
- protected $collection_key = 'slice';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $kind;
- protected $pricingType = 'Postman_Google_Service_QPXExpress_PricingInfo';
- protected $pricingDataType = 'array';
- public $saleTotal;
- protected $sliceType = 'Postman_Google_Service_QPXExpress_SliceInfo';
- protected $sliceDataType = 'array';
-
-
- 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 setPricing($pricing)
- {
- $this->pricing = $pricing;
- }
- public function getPricing()
- {
- return $this->pricing;
- }
- public function setSaleTotal($saleTotal)
- {
- $this->saleTotal = $saleTotal;
- }
- public function getSaleTotal()
- {
- return $this->saleTotal;
- }
- public function setSlice($slice)
- {
- $this->slice = $slice;
- }
- public function getSlice()
- {
- return $this->slice;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TripOptionsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'slice';
- protected $internal_gapi_mappings = array(
- );
- public $maxPrice;
- protected $passengersType = 'Postman_Google_Service_QPXExpress_PassengerCounts';
- protected $passengersDataType = '';
- public $refundable;
- public $saleCountry;
- protected $sliceType = 'Postman_Google_Service_QPXExpress_SliceInput';
- protected $sliceDataType = 'array';
- public $solutions;
-
-
- public function setMaxPrice($maxPrice)
- {
- $this->maxPrice = $maxPrice;
- }
- public function getMaxPrice()
- {
- return $this->maxPrice;
- }
- public function setPassengers(Postman_Google_Service_QPXExpress_PassengerCounts $passengers)
- {
- $this->passengers = $passengers;
- }
- public function getPassengers()
- {
- return $this->passengers;
- }
- public function setRefundable($refundable)
- {
- $this->refundable = $refundable;
- }
- public function getRefundable()
- {
- return $this->refundable;
- }
- public function setSaleCountry($saleCountry)
- {
- $this->saleCountry = $saleCountry;
- }
- public function getSaleCountry()
- {
- return $this->saleCountry;
- }
- public function setSlice($slice)
- {
- $this->slice = $slice;
- }
- public function getSlice()
- {
- return $this->slice;
- }
- public function setSolutions($solutions)
- {
- $this->solutions = $solutions;
- }
- public function getSolutions()
- {
- return $this->solutions;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TripOptionsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'tripOption';
- protected $internal_gapi_mappings = array(
- );
- protected $dataType = 'Postman_Google_Service_QPXExpress_Data';
- protected $dataDataType = '';
- public $kind;
- public $requestId;
- protected $tripOptionType = 'Postman_Google_Service_QPXExpress_TripOption';
- protected $tripOptionDataType = 'array';
-
-
- public function setData(Postman_Google_Service_QPXExpress_Data $data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRequestId($requestId)
- {
- $this->requestId = $requestId;
- }
- public function getRequestId()
- {
- return $this->requestId;
- }
- public function setTripOption($tripOption)
- {
- $this->tripOption = $tripOption;
- }
- public function getTripOption()
- {
- return $this->tripOption;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TripsSearchRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $requestType = 'Postman_Google_Service_QPXExpress_TripOptionsRequest';
- protected $requestDataType = '';
-
-
- public function setRequest(Postman_Google_Service_QPXExpress_TripOptionsRequest $request)
- {
- $this->request = $request;
- }
- public function getRequest()
- {
- return $this->request;
- }
-}
-
-class Postman_Google_Service_QPXExpress_TripsSearchResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- protected $tripsType = 'Postman_Google_Service_QPXExpress_TripOptionsResponse';
- protected $tripsDataType = '';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTrips(Postman_Google_Service_QPXExpress_TripOptionsResponse $trips)
- {
- $this->trips = $trips;
- }
- public function getTrips()
- {
- return $this->trips;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Replicapool.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Replicapool.php
deleted file mode 100644
index 60388c6..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Replicapool.php
+++ /dev/null
@@ -1,1273 +0,0 @@
-
- * The Google Compute Engine Instance Group Manager API provides groups of
- * homogenous Compute Engine Instances.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Replicapool extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - - public $instanceGroupManagers; - public $zoneOperations; - - - /** - * Constructs the internal representation of the Replicapool service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'replicapool/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'replicapool'; - - $this->instanceGroupManagers = new Postman_Google_Service_Replicapool_InstanceGroupManagers_Resource( - $this, - $this->serviceName, - 'instanceGroupManagers', - array( - 'methods' => array( - 'abandonInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/abandonInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'size' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'recreateInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resize' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'size' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'setInstanceTemplate' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setTargetPools' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->zoneOperations = new Postman_Google_Service_Replicapool_ZoneOperations_Resource( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "instanceGroupManagers" collection of methods. - * Typical usage is: - *
- * $replicapoolService = new Postman_Google_Service_Replicapool(...);
- * $instanceGroupManagers = $replicapoolService->instanceGroupManagers;
- *
- */
-class Postman_Google_Service_Replicapool_InstanceGroupManagers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Removes the specified instances from the managed instance group, and from any
- * target pools of which they were members, without deleting the instances.
- * (instanceGroupManagers.abandonInstances)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager The name of the instance group manager.
- * @param Postman_Google_InstanceGroupManagersAbandonInstancesRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function abandonInstances($project, $zone, $instanceGroupManager, Postman_Google_Service_Replicapool_InstanceGroupManagersAbandonInstancesRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('abandonInstances', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Deletes the instance group manager and all instances contained within. If
- * you'd like to delete the manager without deleting the instances, you must
- * first abandon the instances to remove them from the group.
- * (instanceGroupManagers.delete)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager Name of the Instance Group Manager
- * resource to delete.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function delete($project, $zone, $instanceGroupManager, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Deletes the specified instances. The instances are removed from the instance
- * group and any target pools of which they are a member, then deleted. The
- * targetSize of the instance group manager is reduced by the number of
- * instances deleted. (instanceGroupManagers.deleteInstances)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager The name of the instance group manager.
- * @param Postman_Google_InstanceGroupManagersDeleteInstancesRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function deleteInstances($project, $zone, $instanceGroupManager, Postman_Google_Service_Replicapool_InstanceGroupManagersDeleteInstancesRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('deleteInstances', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Returns the specified Instance Group Manager resource.
- * (instanceGroupManagers.get)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager Name of the instance resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_InstanceGroupManager
- */
- public function get($project, $zone, $instanceGroupManager, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Replicapool_InstanceGroupManager");
- }
-
- /**
- * Creates an instance group manager, as well as the instance group and the
- * specified number of instances. (instanceGroupManagers.insert)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param int $size Number of instances that should exist.
- * @param Postman_Google_InstanceGroupManager $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function insert($project, $zone, $size, Postman_Google_Service_Replicapool_InstanceGroupManager $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'size' => $size, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Retrieves the list of Instance Group Manager resources contained within the
- * specified zone. (instanceGroupManagers.listInstanceGroupManagers)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Replicapool_InstanceGroupManagerList
- */
- public function listInstanceGroupManagers($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Replicapool_InstanceGroupManagerList");
- }
-
- /**
- * Recreates the specified instances. The instances are deleted, then recreated
- * using the instance group manager's current instance template.
- * (instanceGroupManagers.recreateInstances)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager The name of the instance group manager.
- * @param Postman_Google_InstanceGroupManagersRecreateInstancesRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function recreateInstances($project, $zone, $instanceGroupManager, Postman_Google_Service_Replicapool_InstanceGroupManagersRecreateInstancesRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('recreateInstances', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Resizes the managed instance group up or down. If resized up, new instances
- * are created using the current instance template. If resized down, instances
- * are removed in the order outlined in Resizing a managed instance group.
- * (instanceGroupManagers.resize)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager The name of the instance group manager.
- * @param int $size Number of instances that should exist in this Instance Group
- * Manager.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function resize($project, $zone, $instanceGroupManager, $size, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'size' => $size);
- $params = array_merge($params, $optParams);
- return $this->call('resize', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Sets the instance template to use when creating new instances in this group.
- * Existing instances are not affected.
- * (instanceGroupManagers.setInstanceTemplate)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager The name of the instance group manager.
- * @param Postman_Google_InstanceGroupManagersSetInstanceTemplateRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function setInstanceTemplate($project, $zone, $instanceGroupManager, Postman_Google_Service_Replicapool_InstanceGroupManagersSetInstanceTemplateRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setInstanceTemplate', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Modifies the target pools to which all new instances in this group are
- * assigned. Existing instances in the group are not affected.
- * (instanceGroupManagers.setTargetPools)
- *
- * @param string $project The Google Developers Console project name.
- * @param string $zone The name of the zone in which the instance group manager
- * resides.
- * @param string $instanceGroupManager The name of the instance group manager.
- * @param Postman_Google_InstanceGroupManagersSetTargetPoolsRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function setTargetPools($project, $zone, $instanceGroupManager, Postman_Google_Service_Replicapool_InstanceGroupManagersSetTargetPoolsRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setTargetPools', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-}
-
-/**
- * The "zoneOperations" collection of methods.
- * Typical usage is:
- *
- * $replicapoolService = new Postman_Google_Service_Replicapool(...);
- * $zoneOperations = $replicapoolService->zoneOperations;
- *
- */
-class Postman_Google_Service_Replicapool_ZoneOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the specified zone-specific operation resource.
- * (zoneOperations.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $operation Name of the operation resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapool_Operation
- */
- public function get($project, $zone, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Replicapool_Operation");
- }
-
- /**
- * Retrieves the list of operation resources contained within the specified
- * zone. (zoneOperations.listZoneOperations)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Replicapool_OperationList
- */
- public function listZoneOperations($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Replicapool_OperationList");
- }
-}
-
-
-
-
-class Postman_Google_Service_Replicapool_InstanceGroupManager extends Postman_Google_Collection
-{
- protected $collection_key = 'targetPools';
- protected $internal_gapi_mappings = array(
- );
- public $baseInstanceName;
- public $creationTimestamp;
- public $currentSize;
- public $description;
- public $fingerprint;
- public $group;
- public $id;
- public $instanceTemplate;
- public $kind;
- public $name;
- public $selfLink;
- public $targetPools;
- public $targetSize;
-
-
- public function setBaseInstanceName($baseInstanceName)
- {
- $this->baseInstanceName = $baseInstanceName;
- }
- public function getBaseInstanceName()
- {
- return $this->baseInstanceName;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setCurrentSize($currentSize)
- {
- $this->currentSize = $currentSize;
- }
- public function getCurrentSize()
- {
- return $this->currentSize;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setGroup($group)
- {
- $this->group = $group;
- }
- public function getGroup()
- {
- return $this->group;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInstanceTemplate($instanceTemplate)
- {
- $this->instanceTemplate = $instanceTemplate;
- }
- public function getInstanceTemplate()
- {
- return $this->instanceTemplate;
- }
- 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;
- }
- public function setTargetPools($targetPools)
- {
- $this->targetPools = $targetPools;
- }
- public function getTargetPools()
- {
- return $this->targetPools;
- }
- public function setTargetSize($targetSize)
- {
- $this->targetSize = $targetSize;
- }
- public function getTargetSize()
- {
- return $this->targetSize;
- }
-}
-
-class Postman_Google_Service_Replicapool_InstanceGroupManagerList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Replicapool_InstanceGroupManager';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Replicapool_InstanceGroupManagersAbandonInstancesRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- public $instances;
-
-
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
-}
-
-class Postman_Google_Service_Replicapool_InstanceGroupManagersDeleteInstancesRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- public $instances;
-
-
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
-}
-
-class Postman_Google_Service_Replicapool_InstanceGroupManagersRecreateInstancesRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'instances';
- protected $internal_gapi_mappings = array(
- );
- public $instances;
-
-
- public function setInstances($instances)
- {
- $this->instances = $instances;
- }
- public function getInstances()
- {
- return $this->instances;
- }
-}
-
-class Postman_Google_Service_Replicapool_InstanceGroupManagersSetInstanceTemplateRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $instanceTemplate;
-
-
- public function setInstanceTemplate($instanceTemplate)
- {
- $this->instanceTemplate = $instanceTemplate;
- }
- public function getInstanceTemplate()
- {
- return $this->instanceTemplate;
- }
-}
-
-class Postman_Google_Service_Replicapool_InstanceGroupManagersSetTargetPoolsRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'targetPools';
- protected $internal_gapi_mappings = array(
- );
- public $fingerprint;
- public $targetPools;
-
-
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setTargetPools($targetPools)
- {
- $this->targetPools = $targetPools;
- }
- public function getTargetPools()
- {
- return $this->targetPools;
- }
-}
-
-class Postman_Google_Service_Replicapool_Operation extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $clientOperationId;
- public $creationTimestamp;
- public $endTime;
- protected $errorType = 'Postman_Google_Service_Replicapool_OperationError';
- protected $errorDataType = '';
- public $httpErrorMessage;
- public $httpErrorStatusCode;
- public $id;
- public $insertTime;
- public $kind;
- public $name;
- public $operationType;
- public $progress;
- public $region;
- public $selfLink;
- public $startTime;
- public $status;
- public $statusMessage;
- public $targetId;
- public $targetLink;
- public $user;
- protected $warningsType = 'Postman_Google_Service_Replicapool_OperationWarnings';
- protected $warningsDataType = 'array';
- public $zone;
-
-
- public function setClientOperationId($clientOperationId)
- {
- $this->clientOperationId = $clientOperationId;
- }
- public function getClientOperationId()
- {
- return $this->clientOperationId;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setError(Postman_Google_Service_Replicapool_OperationError $error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setHttpErrorMessage($httpErrorMessage)
- {
- $this->httpErrorMessage = $httpErrorMessage;
- }
- public function getHttpErrorMessage()
- {
- return $this->httpErrorMessage;
- }
- public function setHttpErrorStatusCode($httpErrorStatusCode)
- {
- $this->httpErrorStatusCode = $httpErrorStatusCode;
- }
- public function getHttpErrorStatusCode()
- {
- return $this->httpErrorStatusCode;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInsertTime($insertTime)
- {
- $this->insertTime = $insertTime;
- }
- public function getInsertTime()
- {
- return $this->insertTime;
- }
- 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 setOperationType($operationType)
- {
- $this->operationType = $operationType;
- }
- public function getOperationType()
- {
- return $this->operationType;
- }
- public function setProgress($progress)
- {
- $this->progress = $progress;
- }
- public function getProgress()
- {
- return $this->progress;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusMessage($statusMessage)
- {
- $this->statusMessage = $statusMessage;
- }
- public function getStatusMessage()
- {
- return $this->statusMessage;
- }
- public function setTargetId($targetId)
- {
- $this->targetId = $targetId;
- }
- public function getTargetId()
- {
- return $this->targetId;
- }
- public function setTargetLink($targetLink)
- {
- $this->targetLink = $targetLink;
- }
- public function getTargetLink()
- {
- return $this->targetLink;
- }
- public function setUser($user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Replicapool_OperationError extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $errorsType = 'Postman_Google_Service_Replicapool_OperationErrorErrors';
- protected $errorsDataType = 'array';
-
-
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_Replicapool_OperationErrorErrors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $location;
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Replicapool_OperationList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Replicapool_Operation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Replicapool_OperationWarnings extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Replicapool_OperationWarningsData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Replicapool_OperationWarningsData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Replicapoolupdater.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Replicapoolupdater.php
deleted file mode 100644
index aac3dcf..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Replicapoolupdater.php
+++ /dev/null
@@ -1,631 +0,0 @@
-
- * The Google Compute Engine Instance Group Updater API provides services for
- * updating groups of Compute Engine Instances.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Replicapoolupdater extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage replica pools. */ - const REPLICAPOOL = - "https://www.googleapis.com/auth/replicapool"; - /** View replica pools. */ - const REPLICAPOOL_READONLY = - "https://www.googleapis.com/auth/replicapool.readonly"; - - public $updates; - - - /** - * Constructs the internal representation of the Replicapoolupdater service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'replicapoolupdater/v1beta1/projects/'; - $this->version = 'v1beta1'; - $this->serviceName = 'replicapoolupdater'; - - $this->updates = new Postman_Google_Service_Replicapoolupdater_Updates_Resource( - $this, - $this->serviceName, - 'updates', - array( - 'methods' => array( - 'cancel' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates/{update}/cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'update' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates/{update}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'update' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'pause' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates/{update}/pause', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'update' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rollback' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates/{update}/rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'update' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rollforward' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/updates/{update}/rollforward', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'update' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "updates" collection of methods. - * Typical usage is: - *
- * $replicapoolupdaterService = new Postman_Google_Service_Replicapoolupdater(...);
- * $updates = $replicapoolupdaterService->updates;
- *
- */
-class Postman_Google_Service_Replicapoolupdater_Updates_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Called on the particular Update endpoint. Cancels the update in state PAUSED.
- * No-op if invoked in state CANCELLED. (updates.cancel)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param string $update Unique (in the context of a group) handle of an update.
- * @param array $optParams Optional parameters.
- */
- public function cancel($project, $zone, $instanceGroupManager, $update, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'update' => $update);
- $params = array_merge($params, $optParams);
- return $this->call('cancel', array($params));
- }
-
- /**
- * Called on the particular Update endpoint. Returns the Update resource.
- * (updates.get)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param string $update Unique (in the context of a group) handle of an update.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapoolupdater_Update
- */
- public function get($project, $zone, $instanceGroupManager, $update, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'update' => $update);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Replicapoolupdater_Update");
- }
-
- /**
- * Called on the collection endpoint. Inserts the new Update resource and starts
- * the update. (updates.insert)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param Postman_Google_Update $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Replicapoolupdater_InsertResponse
- */
- public function insert($project, $zone, $instanceGroupManager, Postman_Google_Service_Replicapoolupdater_Update $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Replicapoolupdater_InsertResponse");
- }
-
- /**
- * Called on the collection endpoint. Lists updates for a given instance group,
- * in reverse chronological order. Pagination is supported, see
- * ListRequestHeader. (updates.listUpdates)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Set this to the nextPageToken value returned by a
- * previous list request to obtain the next page of results from the previous
- * list request.
- * @opt_param int maxResults Maximum count of results to be returned. Acceptable
- * values are 1 to 100, inclusive. (Default: 50)
- * @return Postman_Google_Service_Replicapoolupdater_UpdateList
- */
- public function listUpdates($project, $zone, $instanceGroupManager, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Replicapoolupdater_UpdateList");
- }
-
- /**
- * Called on the particular Update endpoint. Pauses the update in state
- * ROLLING_FORWARD or ROLLING_BACK. No-op if invoked in state PAUSED.
- * (updates.pause)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param string $update Unique (in the context of a group) handle of an update.
- * @param array $optParams Optional parameters.
- */
- public function pause($project, $zone, $instanceGroupManager, $update, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'update' => $update);
- $params = array_merge($params, $optParams);
- return $this->call('pause', array($params));
- }
-
- /**
- * Called on the particular Update endpoint. Rolls back the update in state
- * ROLLING_FORWARD or PAUSED. No-op if invoked in state ROLLED_BACK or
- * ROLLING_BACK. (updates.rollback)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param string $update Unique (in the context of a group) handle of an update.
- * @param array $optParams Optional parameters.
- */
- public function rollback($project, $zone, $instanceGroupManager, $update, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'update' => $update);
- $params = array_merge($params, $optParams);
- return $this->call('rollback', array($params));
- }
-
- /**
- * Called on the particular Update endpoint. Rolls forward the update in state
- * ROLLING_BACK or PAUSED. No-op if invoked in state ROLLED_OUT or
- * ROLLING_FORWARD. (updates.rollforward)
- *
- * @param string $project Project ID for this request.
- * @param string $zone Zone for the instance group manager.
- * @param string $instanceGroupManager Name of the instance group manager for
- * this request.
- * @param string $update Unique (in the context of a group) handle of an update.
- * @param array $optParams Optional parameters.
- */
- public function rollforward($project, $zone, $instanceGroupManager, $update, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'update' => $update);
- $params = array_merge($params, $optParams);
- return $this->call('rollforward', array($params));
- }
-}
-
-
-
-
-class Postman_Google_Service_Replicapoolupdater_InsertResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $update;
-
-
- public function setUpdate($update)
- {
- $this->update = $update;
- }
- public function getUpdate()
- {
- return $this->update;
- }
-}
-
-class Postman_Google_Service_Replicapoolupdater_InstanceUpdate extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $instanceName;
- public $state;
-
-
- public function setInstanceName($instanceName)
- {
- $this->instanceName = $instanceName;
- }
- public function getInstanceName()
- {
- return $this->instanceName;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_Replicapoolupdater_Update extends Postman_Google_Collection
-{
- protected $collection_key = 'instanceUpdates';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $details;
- public $handle;
- public $instanceTemplate;
- protected $instanceUpdatesType = 'Postman_Google_Service_Replicapoolupdater_InstanceUpdate';
- protected $instanceUpdatesDataType = 'array';
- public $kind;
- protected $policyType = 'Postman_Google_Service_Replicapoolupdater_UpdatePolicy';
- protected $policyDataType = '';
- public $selfLink;
- public $state;
- public $targetState;
- public $user;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDetails($details)
- {
- $this->details = $details;
- }
- public function getDetails()
- {
- return $this->details;
- }
- public function setHandle($handle)
- {
- $this->handle = $handle;
- }
- public function getHandle()
- {
- return $this->handle;
- }
- public function setInstanceTemplate($instanceTemplate)
- {
- $this->instanceTemplate = $instanceTemplate;
- }
- public function getInstanceTemplate()
- {
- return $this->instanceTemplate;
- }
- public function setInstanceUpdates($instanceUpdates)
- {
- $this->instanceUpdates = $instanceUpdates;
- }
- public function getInstanceUpdates()
- {
- return $this->instanceUpdates;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPolicy(Postman_Google_Service_Replicapoolupdater_UpdatePolicy $policy)
- {
- $this->policy = $policy;
- }
- public function getPolicy()
- {
- return $this->policy;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setTargetState($targetState)
- {
- $this->targetState = $targetState;
- }
- public function getTargetState()
- {
- return $this->targetState;
- }
- public function setUser($user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
-}
-
-class Postman_Google_Service_Replicapoolupdater_UpdateList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Replicapoolupdater_Update';
- protected $itemsDataType = 'array';
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Replicapoolupdater_UpdatePolicy extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $canaryType = 'Postman_Google_Service_Replicapoolupdater_UpdatePolicyCanary';
- protected $canaryDataType = '';
- public $maxNumConcurrentInstances;
- public $sleepAfterInstanceRestartSec;
-
-
- public function setCanary(Postman_Google_Service_Replicapoolupdater_UpdatePolicyCanary $canary)
- {
- $this->canary = $canary;
- }
- public function getCanary()
- {
- return $this->canary;
- }
- public function setMaxNumConcurrentInstances($maxNumConcurrentInstances)
- {
- $this->maxNumConcurrentInstances = $maxNumConcurrentInstances;
- }
- public function getMaxNumConcurrentInstances()
- {
- return $this->maxNumConcurrentInstances;
- }
- public function setSleepAfterInstanceRestartSec($sleepAfterInstanceRestartSec)
- {
- $this->sleepAfterInstanceRestartSec = $sleepAfterInstanceRestartSec;
- }
- public function getSleepAfterInstanceRestartSec()
- {
- return $this->sleepAfterInstanceRestartSec;
- }
-}
-
-class Postman_Google_Service_Replicapoolupdater_UpdatePolicyCanary extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $numInstances;
-
-
- public function setNumInstances($numInstances)
- {
- $this->numInstances = $numInstances;
- }
- public function getNumInstances()
- {
- return $this->numInstances;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Reports.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Reports.php
deleted file mode 100644
index 029b560..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Reports.php
+++ /dev/null
@@ -1,1135 +0,0 @@
-
- * Allows the administrators of Google Apps customers to fetch reports about the
- * usage, collaboration, security and risk for their users.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Reports extends Postman_Google_Service -{ - /** View audit reports of Google Apps for your domain. */ - const ADMIN_REPORTS_AUDIT_READONLY = - "https://www.googleapis.com/auth/admin.reports.audit.readonly"; - /** View usage reports of Google Apps for your domain. */ - const ADMIN_REPORTS_USAGE_READONLY = - "https://www.googleapis.com/auth/admin.reports.usage.readonly"; - - public $activities; - public $channels; - public $customerUsageReports; - public $userUsageReport; - - - /** - * Constructs the internal representation of the Reports service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'admin/reports/v1/'; - $this->version = 'reports_v1'; - $this->serviceName = 'admin'; - - $this->activities = new Postman_Google_Service_Reports_Activities_Resource( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'list' => array( - 'path' => 'activity/users/{userKey}/applications/{applicationName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'applicationName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'actorIpAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'eventName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'activity/users/{userKey}/applications/{applicationName}/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'applicationName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'actorIpAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'eventName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Postman_Google_Service_Reports_Channels_Resource( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => '/admin/reports_v1/channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->customerUsageReports = new Postman_Google_Service_Reports_CustomerUsageReports_Resource( - $this, - $this->serviceName, - 'customerUsageReports', - array( - 'methods' => array( - 'get' => array( - 'path' => 'usage/dates/{date}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parameters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->userUsageReport = new Postman_Google_Service_Reports_UserUsageReport_Resource( - $this, - $this->serviceName, - 'userUsageReport', - array( - 'methods' => array( - 'get' => array( - 'path' => 'usage/users/{userKey}/dates/{date}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parameters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "activities" collection of methods. - * Typical usage is: - *
- * $adminService = new Postman_Google_Service_Reports(...);
- * $activities = $adminService->activities;
- *
- */
-class Postman_Google_Service_Reports_Activities_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of activities for a specific customer and application.
- * (activities.listActivities)
- *
- * @param string $userKey Represents the profile id or the user email for which
- * the data should be filtered. When 'all' is specified as the userKey, it
- * returns usageReports for all users.
- * @param string $applicationName Application name for which the events are to
- * be retrieved.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string startTime Return events which occured at or after this
- * time.
- * @opt_param string actorIpAddress IP Address of host where the event was
- * performed. Supports both IPv4 and IPv6 addresses.
- * @opt_param int maxResults Number of activity records to be shown in each
- * page.
- * @opt_param string eventName Name of the event being queried.
- * @opt_param string pageToken Token to specify next page.
- * @opt_param string filters Event parameters in the form [parameter1
- * name][operator][parameter1 value],[parameter2 name][operator][parameter2
- * value],...
- * @opt_param string endTime Return events which occured at or before this time.
- * @opt_param string customerId Represents the customer for which the data is to
- * be fetched.
- * @return Postman_Google_Service_Reports_Activities
- */
- public function listActivities($userKey, $applicationName, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'applicationName' => $applicationName);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Reports_Activities");
- }
-
- /**
- * Push changes to activities (activities.watch)
- *
- * @param string $userKey Represents the profile id or the user email for which
- * the data should be filtered. When 'all' is specified as the userKey, it
- * returns usageReports for all users.
- * @param string $applicationName Application name for which the events are to
- * be retrieved.
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string startTime Return events which occured at or after this
- * time.
- * @opt_param string actorIpAddress IP Address of host where the event was
- * performed. Supports both IPv4 and IPv6 addresses.
- * @opt_param int maxResults Number of activity records to be shown in each
- * page.
- * @opt_param string eventName Name of the event being queried.
- * @opt_param string pageToken Token to specify next page.
- * @opt_param string filters Event parameters in the form [parameter1
- * name][operator][parameter1 value],[parameter2 name][operator][parameter2
- * value],...
- * @opt_param string endTime Return events which occured at or before this time.
- * @opt_param string customerId Represents the customer for which the data is to
- * be fetched.
- * @return Postman_Google_Service_Reports_Channel
- */
- public function watch($userKey, $applicationName, Postman_Google_Service_Reports_Channel $postBody, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'applicationName' => $applicationName, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watch', array($params), "Postman_Google_Service_Reports_Channel");
- }
-}
-
-/**
- * The "channels" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Reports(...);
- * $channels = $adminService->channels;
- *
- */
-class Postman_Google_Service_Reports_Channels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Stop watching resources through this channel (channels.stop)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- */
- public function stop(Postman_Google_Service_Reports_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('stop', array($params));
- }
-}
-
-/**
- * The "customerUsageReports" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Reports(...);
- * $customerUsageReports = $adminService->customerUsageReports;
- *
- */
-class Postman_Google_Service_Reports_CustomerUsageReports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a report which is a collection of properties / statistics for a
- * specific customer. (customerUsageReports.get)
- *
- * @param string $date Represents the date in yyyy-mm-dd format for which the
- * data is to be fetched.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token to specify next page.
- * @opt_param string customerId Represents the customer for which the data is to
- * be fetched.
- * @opt_param string parameters Represents the application name, parameter name
- * pairs to fetch in csv as app_name1:param_name1, app_name2:param_name2.
- * @return Postman_Google_Service_Reports_UsageReports
- */
- public function get($date, $optParams = array())
- {
- $params = array('date' => $date);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Reports_UsageReports");
- }
-}
-
-/**
- * The "userUsageReport" collection of methods.
- * Typical usage is:
- *
- * $adminService = new Postman_Google_Service_Reports(...);
- * $userUsageReport = $adminService->userUsageReport;
- *
- */
-class Postman_Google_Service_Reports_UserUsageReport_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a report which is a collection of properties / statistics for a set
- * of users. (userUsageReport.get)
- *
- * @param string $userKey Represents the profile id or the user email for which
- * the data should be filtered.
- * @param string $date Represents the date in yyyy-mm-dd format for which the
- * data is to be fetched.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string parameters Represents the application name, parameter name
- * pairs to fetch in csv as app_name1:param_name1, app_name2:param_name2.
- * @opt_param string maxResults Maximum number of results to return. Maximum
- * allowed is 1000
- * @opt_param string pageToken Token to specify next page.
- * @opt_param string filters Represents the set of filters including parameter
- * operator value.
- * @opt_param string customerId Represents the customer for which the data is to
- * be fetched.
- * @return Postman_Google_Service_Reports_UsageReports
- */
- public function get($userKey, $date, $optParams = array())
- {
- $params = array('userKey' => $userKey, 'date' => $date);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Reports_UsageReports");
- }
-}
-
-
-
-
-class Postman_Google_Service_Reports_Activities extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Reports_Activity';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Reports_Activity extends Postman_Google_Collection
-{
- protected $collection_key = 'events';
- protected $internal_gapi_mappings = array(
- );
- protected $actorType = 'Postman_Google_Service_Reports_ActivityActor';
- protected $actorDataType = '';
- public $etag;
- protected $eventsType = 'Postman_Google_Service_Reports_ActivityEvents';
- protected $eventsDataType = 'array';
- protected $idType = 'Postman_Google_Service_Reports_ActivityId';
- protected $idDataType = '';
- public $ipAddress;
- public $kind;
- public $ownerDomain;
-
-
- public function setActor(Postman_Google_Service_Reports_ActivityActor $actor)
- {
- $this->actor = $actor;
- }
- public function getActor()
- {
- return $this->actor;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEvents($events)
- {
- $this->events = $events;
- }
- public function getEvents()
- {
- return $this->events;
- }
- public function setId(Postman_Google_Service_Reports_ActivityId $id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIpAddress($ipAddress)
- {
- $this->ipAddress = $ipAddress;
- }
- public function getIpAddress()
- {
- return $this->ipAddress;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOwnerDomain($ownerDomain)
- {
- $this->ownerDomain = $ownerDomain;
- }
- public function getOwnerDomain()
- {
- return $this->ownerDomain;
- }
-}
-
-class Postman_Google_Service_Reports_ActivityActor extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $callerType;
- public $email;
- public $key;
- public $profileId;
-
-
- public function setCallerType($callerType)
- {
- $this->callerType = $callerType;
- }
- public function getCallerType()
- {
- return $this->callerType;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
-}
-
-class Postman_Google_Service_Reports_ActivityEvents extends Postman_Google_Collection
-{
- protected $collection_key = 'parameters';
- protected $internal_gapi_mappings = array(
- );
- public $name;
- protected $parametersType = 'Postman_Google_Service_Reports_ActivityEventsParameters';
- protected $parametersDataType = 'array';
- public $type;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setParameters($parameters)
- {
- $this->parameters = $parameters;
- }
- public function getParameters()
- {
- return $this->parameters;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Reports_ActivityEventsParameters extends Postman_Google_Collection
-{
- protected $collection_key = 'multiValue';
- protected $internal_gapi_mappings = array(
- );
- public $boolValue;
- public $intValue;
- public $multiIntValue;
- public $multiValue;
- public $name;
- public $value;
-
-
- public function setBoolValue($boolValue)
- {
- $this->boolValue = $boolValue;
- }
- public function getBoolValue()
- {
- return $this->boolValue;
- }
- public function setIntValue($intValue)
- {
- $this->intValue = $intValue;
- }
- public function getIntValue()
- {
- return $this->intValue;
- }
- public function setMultiIntValue($multiIntValue)
- {
- $this->multiIntValue = $multiIntValue;
- }
- public function getMultiIntValue()
- {
- return $this->multiIntValue;
- }
- public function setMultiValue($multiValue)
- {
- $this->multiValue = $multiValue;
- }
- public function getMultiValue()
- {
- return $this->multiValue;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Reports_ActivityId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $applicationName;
- public $customerId;
- public $time;
- public $uniqueQualifier;
-
-
- public function setApplicationName($applicationName)
- {
- $this->applicationName = $applicationName;
- }
- public function getApplicationName()
- {
- return $this->applicationName;
- }
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setTime($time)
- {
- $this->time = $time;
- }
- public function getTime()
- {
- return $this->time;
- }
- public function setUniqueQualifier($uniqueQualifier)
- {
- $this->uniqueQualifier = $uniqueQualifier;
- }
- public function getUniqueQualifier()
- {
- return $this->uniqueQualifier;
- }
-}
-
-class Postman_Google_Service_Reports_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $expiration;
- public $id;
- public $kind;
- public $params;
- public $payload;
- public $resourceId;
- public $resourceUri;
- public $token;
- public $type;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setExpiration($expiration)
- {
- $this->expiration = $expiration;
- }
- public function getExpiration()
- {
- return $this->expiration;
- }
- 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 setParams($params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setResourceId($resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setResourceUri($resourceUri)
- {
- $this->resourceUri = $resourceUri;
- }
- public function getResourceUri()
- {
- return $this->resourceUri;
- }
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Reports_ChannelParams extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Reports_UsageReport extends Postman_Google_Collection
-{
- protected $collection_key = 'parameters';
- protected $internal_gapi_mappings = array(
- );
- public $date;
- protected $entityType = 'Postman_Google_Service_Reports_UsageReportEntity';
- protected $entityDataType = '';
- public $etag;
- public $kind;
- protected $parametersType = 'Postman_Google_Service_Reports_UsageReportParameters';
- protected $parametersDataType = 'array';
-
-
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setEntity(Postman_Google_Service_Reports_UsageReportEntity $entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setParameters($parameters)
- {
- $this->parameters = $parameters;
- }
- public function getParameters()
- {
- return $this->parameters;
- }
-}
-
-class Postman_Google_Service_Reports_UsageReportEntity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customerId;
- public $profileId;
- public $type;
- public $userEmail;
-
-
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setProfileId($profileId)
- {
- $this->profileId = $profileId;
- }
- public function getProfileId()
- {
- return $this->profileId;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUserEmail($userEmail)
- {
- $this->userEmail = $userEmail;
- }
- public function getUserEmail()
- {
- return $this->userEmail;
- }
-}
-
-class Postman_Google_Service_Reports_UsageReportParameters extends Postman_Google_Collection
-{
- protected $collection_key = 'msgValue';
- protected $internal_gapi_mappings = array(
- );
- public $boolValue;
- public $datetimeValue;
- public $intValue;
- public $msgValue;
- public $name;
- public $stringValue;
-
-
- public function setBoolValue($boolValue)
- {
- $this->boolValue = $boolValue;
- }
- public function getBoolValue()
- {
- return $this->boolValue;
- }
- public function setDatetimeValue($datetimeValue)
- {
- $this->datetimeValue = $datetimeValue;
- }
- public function getDatetimeValue()
- {
- return $this->datetimeValue;
- }
- public function setIntValue($intValue)
- {
- $this->intValue = $intValue;
- }
- public function getIntValue()
- {
- return $this->intValue;
- }
- public function setMsgValue($msgValue)
- {
- $this->msgValue = $msgValue;
- }
- public function getMsgValue()
- {
- return $this->msgValue;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setStringValue($stringValue)
- {
- $this->stringValue = $stringValue;
- }
- public function getStringValue()
- {
- return $this->stringValue;
- }
-}
-
-class Postman_Google_Service_Reports_UsageReportParametersMsgValue extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Reports_UsageReports extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- public $nextPageToken;
- protected $usageReportsType = 'Postman_Google_Service_Reports_UsageReport';
- protected $usageReportsDataType = 'array';
- protected $warningsType = 'Postman_Google_Service_Reports_UsageReportsWarnings';
- protected $warningsDataType = 'array';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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;
- }
- public function setUsageReports($usageReports)
- {
- $this->usageReports = $usageReports;
- }
- public function getUsageReports()
- {
- return $this->usageReports;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_Reports_UsageReportsWarnings extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Reports_UsageReportsWarningsData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Reports_UsageReportsWarningsData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Reseller.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Reseller.php
deleted file mode 100644
index 99afb93..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Reseller.php
+++ /dev/null
@@ -1,1115 +0,0 @@
-
- * Lets you create and manage your customers and their subscriptions.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Reseller extends Postman_Google_Service -{ - /** Manage users on your domain. */ - const APPS_ORDER = - "https://www.googleapis.com/auth/apps.order"; - /** Manage users on your domain. */ - const APPS_ORDER_READONLY = - "https://www.googleapis.com/auth/apps.order.readonly"; - - public $customers; - public $subscriptions; - - - /** - * Constructs the internal representation of the Reseller service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'apps/reseller/v1/'; - $this->version = 'v1'; - $this->serviceName = 'reseller'; - - $this->customers = new Postman_Google_Service_Reseller_Customers_Resource( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'customers/{customerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerAuthToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customers/{customerId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customers/{customerId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->subscriptions = new Postman_Google_Service_Reseller_Subscriptions_Resource( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'activate' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/activate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'changePlan' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changePlan', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'changeRenewalSettings' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeRenewalSettings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'changeSeats' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeSeats', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deletionType' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customers/{customerId}/subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerAuthToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerAuthToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'customerNamePrefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startPaidService' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/startPaidService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'suspend' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/suspend', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "customers" collection of methods. - * Typical usage is: - *
- * $resellerService = new Postman_Google_Service_Reseller(...);
- * $customers = $resellerService->customers;
- *
- */
-class Postman_Google_Service_Reseller_Customers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a customer resource if one exists and is owned by the reseller.
- * (customers.get)
- *
- * @param string $customerId Id of the Customer
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Customer
- */
- public function get($customerId, $optParams = array())
- {
- $params = array('customerId' => $customerId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Reseller_Customer");
- }
-
- /**
- * Creates a customer resource if one does not already exist. (customers.insert)
- *
- * @param Postman_Google_Customer $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customerAuthToken An auth token needed for inserting a
- * customer for which domain already exists. Can be generated at
- * https://www.google.com/a/cpanel//TransferToken. Optional.
- * @return Postman_Google_Service_Reseller_Customer
- */
- public function insert(Postman_Google_Service_Reseller_Customer $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Reseller_Customer");
- }
-
- /**
- * Update a customer resource if one it exists and is owned by the reseller.
- * This method supports patch semantics. (customers.patch)
- *
- * @param string $customerId Id of the Customer
- * @param Postman_Google_Customer $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Customer
- */
- public function patch($customerId, Postman_Google_Service_Reseller_Customer $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Reseller_Customer");
- }
-
- /**
- * Update a customer resource if one it exists and is owned by the reseller.
- * (customers.update)
- *
- * @param string $customerId Id of the Customer
- * @param Postman_Google_Customer $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Customer
- */
- public function update($customerId, Postman_Google_Service_Reseller_Customer $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Reseller_Customer");
- }
-}
-
-/**
- * The "subscriptions" collection of methods.
- * Typical usage is:
- *
- * $resellerService = new Postman_Google_Service_Reseller(...);
- * $subscriptions = $resellerService->subscriptions;
- *
- */
-class Postman_Google_Service_Reseller_Subscriptions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Activates a subscription previously suspended by the reseller
- * (subscriptions.activate)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function activate($customerId, $subscriptionId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
- $params = array_merge($params, $optParams);
- return $this->call('activate', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Changes the plan of a subscription (subscriptions.changePlan)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param Postman_Google_ChangePlanRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function changePlan($customerId, $subscriptionId, Postman_Google_Service_Reseller_ChangePlanRequest $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('changePlan', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Changes the renewal settings of a subscription
- * (subscriptions.changeRenewalSettings)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param Postman_Google_RenewalSettings $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function changeRenewalSettings($customerId, $subscriptionId, Postman_Google_Service_Reseller_RenewalSettings $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('changeRenewalSettings', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Changes the seats configuration of a subscription (subscriptions.changeSeats)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param Postman_Google_Seats $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function changeSeats($customerId, $subscriptionId, Postman_Google_Service_Reseller_Seats $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('changeSeats', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Cancels/Downgrades a subscription. (subscriptions.delete)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param string $deletionType Whether the subscription is to be fully cancelled
- * or downgraded
- * @param array $optParams Optional parameters.
- */
- public function delete($customerId, $subscriptionId, $deletionType, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'deletionType' => $deletionType);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a subscription of the customer. (subscriptions.get)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function get($customerId, $subscriptionId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Creates/Transfers a subscription for the customer. (subscriptions.insert)
- *
- * @param string $customerId Id of the Customer
- * @param Postman_Google_Subscription $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customerAuthToken An auth token needed for transferring a
- * subscription. Can be generated at https://www.google.com/a/cpanel/customer-
- * domain/TransferToken. Optional.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function insert($customerId, Postman_Google_Service_Reseller_Subscription $postBody, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Lists subscriptions of a reseller, optionally filtered by a customer name
- * prefix. (subscriptions.listSubscriptions)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string customerAuthToken An auth token needed if the customer is
- * not a resold customer of this reseller. Can be generated at
- * https://www.google.com/a/cpanel/customer-domain/TransferToken.Optional.
- * @opt_param string pageToken Token to specify next page in the list
- * @opt_param string customerId Id of the Customer
- * @opt_param string maxResults Maximum number of results to return
- * @opt_param string customerNamePrefix Prefix of the customer's domain name by
- * which the subscriptions should be filtered. Optional
- * @return Postman_Google_Service_Reseller_Subscriptions
- */
- public function listSubscriptions($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Reseller_Subscriptions");
- }
-
- /**
- * Starts paid service of a trial subscription (subscriptions.startPaidService)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function startPaidService($customerId, $subscriptionId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
- $params = array_merge($params, $optParams);
- return $this->call('startPaidService', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-
- /**
- * Suspends an active subscription (subscriptions.suspend)
- *
- * @param string $customerId Id of the Customer
- * @param string $subscriptionId Id of the subscription, which is unique for a
- * customer
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Reseller_Subscription
- */
- public function suspend($customerId, $subscriptionId, $optParams = array())
- {
- $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
- $params = array_merge($params, $optParams);
- return $this->call('suspend', array($params), "Postman_Google_Service_Reseller_Subscription");
- }
-}
-
-
-
-
-class Postman_Google_Service_Reseller_Address extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $addressLine1;
- public $addressLine2;
- public $addressLine3;
- public $contactName;
- public $countryCode;
- public $kind;
- public $locality;
- public $organizationName;
- public $postalCode;
- public $region;
-
-
- public function setAddressLine1($addressLine1)
- {
- $this->addressLine1 = $addressLine1;
- }
- public function getAddressLine1()
- {
- return $this->addressLine1;
- }
- public function setAddressLine2($addressLine2)
- {
- $this->addressLine2 = $addressLine2;
- }
- public function getAddressLine2()
- {
- return $this->addressLine2;
- }
- public function setAddressLine3($addressLine3)
- {
- $this->addressLine3 = $addressLine3;
- }
- public function getAddressLine3()
- {
- return $this->addressLine3;
- }
- public function setContactName($contactName)
- {
- $this->contactName = $contactName;
- }
- public function getContactName()
- {
- return $this->contactName;
- }
- public function setCountryCode($countryCode)
- {
- $this->countryCode = $countryCode;
- }
- public function getCountryCode()
- {
- return $this->countryCode;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLocality($locality)
- {
- $this->locality = $locality;
- }
- public function getLocality()
- {
- return $this->locality;
- }
- public function setOrganizationName($organizationName)
- {
- $this->organizationName = $organizationName;
- }
- public function getOrganizationName()
- {
- return $this->organizationName;
- }
- public function setPostalCode($postalCode)
- {
- $this->postalCode = $postalCode;
- }
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
-}
-
-class Postman_Google_Service_Reseller_ChangePlanRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $planName;
- public $purchaseOrderId;
- protected $seatsType = 'Postman_Google_Service_Reseller_Seats';
- protected $seatsDataType = '';
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlanName($planName)
- {
- $this->planName = $planName;
- }
- public function getPlanName()
- {
- return $this->planName;
- }
- public function setPurchaseOrderId($purchaseOrderId)
- {
- $this->purchaseOrderId = $purchaseOrderId;
- }
- public function getPurchaseOrderId()
- {
- return $this->purchaseOrderId;
- }
- public function setSeats(Postman_Google_Service_Reseller_Seats $seats)
- {
- $this->seats = $seats;
- }
- public function getSeats()
- {
- return $this->seats;
- }
-}
-
-class Postman_Google_Service_Reseller_Customer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $alternateEmail;
- public $customerDomain;
- public $customerId;
- public $kind;
- public $phoneNumber;
- protected $postalAddressType = 'Postman_Google_Service_Reseller_Address';
- protected $postalAddressDataType = '';
- public $resourceUiUrl;
-
-
- public function setAlternateEmail($alternateEmail)
- {
- $this->alternateEmail = $alternateEmail;
- }
- public function getAlternateEmail()
- {
- return $this->alternateEmail;
- }
- public function setCustomerDomain($customerDomain)
- {
- $this->customerDomain = $customerDomain;
- }
- public function getCustomerDomain()
- {
- return $this->customerDomain;
- }
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPhoneNumber($phoneNumber)
- {
- $this->phoneNumber = $phoneNumber;
- }
- public function getPhoneNumber()
- {
- return $this->phoneNumber;
- }
- public function setPostalAddress(Postman_Google_Service_Reseller_Address $postalAddress)
- {
- $this->postalAddress = $postalAddress;
- }
- public function getPostalAddress()
- {
- return $this->postalAddress;
- }
- public function setResourceUiUrl($resourceUiUrl)
- {
- $this->resourceUiUrl = $resourceUiUrl;
- }
- public function getResourceUiUrl()
- {
- return $this->resourceUiUrl;
- }
-}
-
-class Postman_Google_Service_Reseller_RenewalSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $renewalType;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRenewalType($renewalType)
- {
- $this->renewalType = $renewalType;
- }
- public function getRenewalType()
- {
- return $this->renewalType;
- }
-}
-
-class Postman_Google_Service_Reseller_Seats extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $licensedNumberOfSeats;
- public $maximumNumberOfSeats;
- public $numberOfSeats;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLicensedNumberOfSeats($licensedNumberOfSeats)
- {
- $this->licensedNumberOfSeats = $licensedNumberOfSeats;
- }
- public function getLicensedNumberOfSeats()
- {
- return $this->licensedNumberOfSeats;
- }
- public function setMaximumNumberOfSeats($maximumNumberOfSeats)
- {
- $this->maximumNumberOfSeats = $maximumNumberOfSeats;
- }
- public function getMaximumNumberOfSeats()
- {
- return $this->maximumNumberOfSeats;
- }
- public function setNumberOfSeats($numberOfSeats)
- {
- $this->numberOfSeats = $numberOfSeats;
- }
- public function getNumberOfSeats()
- {
- return $this->numberOfSeats;
- }
-}
-
-class Postman_Google_Service_Reseller_Subscription extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $creationTime;
- public $customerId;
- public $kind;
- protected $planType = 'Postman_Google_Service_Reseller_SubscriptionPlan';
- protected $planDataType = '';
- public $purchaseOrderId;
- protected $renewalSettingsType = 'Postman_Google_Service_Reseller_RenewalSettings';
- protected $renewalSettingsDataType = '';
- public $resourceUiUrl;
- protected $seatsType = 'Postman_Google_Service_Reseller_Seats';
- protected $seatsDataType = '';
- public $skuId;
- public $status;
- public $subscriptionId;
- protected $transferInfoType = 'Postman_Google_Service_Reseller_SubscriptionTransferInfo';
- protected $transferInfoDataType = '';
- protected $trialSettingsType = 'Postman_Google_Service_Reseller_SubscriptionTrialSettings';
- protected $trialSettingsDataType = '';
-
-
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setCustomerId($customerId)
- {
- $this->customerId = $customerId;
- }
- public function getCustomerId()
- {
- return $this->customerId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlan(Postman_Google_Service_Reseller_SubscriptionPlan $plan)
- {
- $this->plan = $plan;
- }
- public function getPlan()
- {
- return $this->plan;
- }
- public function setPurchaseOrderId($purchaseOrderId)
- {
- $this->purchaseOrderId = $purchaseOrderId;
- }
- public function getPurchaseOrderId()
- {
- return $this->purchaseOrderId;
- }
- public function setRenewalSettings(Postman_Google_Service_Reseller_RenewalSettings $renewalSettings)
- {
- $this->renewalSettings = $renewalSettings;
- }
- public function getRenewalSettings()
- {
- return $this->renewalSettings;
- }
- public function setResourceUiUrl($resourceUiUrl)
- {
- $this->resourceUiUrl = $resourceUiUrl;
- }
- public function getResourceUiUrl()
- {
- return $this->resourceUiUrl;
- }
- public function setSeats(Postman_Google_Service_Reseller_Seats $seats)
- {
- $this->seats = $seats;
- }
- public function getSeats()
- {
- return $this->seats;
- }
- public function setSkuId($skuId)
- {
- $this->skuId = $skuId;
- }
- public function getSkuId()
- {
- return $this->skuId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setSubscriptionId($subscriptionId)
- {
- $this->subscriptionId = $subscriptionId;
- }
- public function getSubscriptionId()
- {
- return $this->subscriptionId;
- }
- public function setTransferInfo(Postman_Google_Service_Reseller_SubscriptionTransferInfo $transferInfo)
- {
- $this->transferInfo = $transferInfo;
- }
- public function getTransferInfo()
- {
- return $this->transferInfo;
- }
- public function setTrialSettings(Postman_Google_Service_Reseller_SubscriptionTrialSettings $trialSettings)
- {
- $this->trialSettings = $trialSettings;
- }
- public function getTrialSettings()
- {
- return $this->trialSettings;
- }
-}
-
-class Postman_Google_Service_Reseller_SubscriptionPlan extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $commitmentIntervalType = 'Postman_Google_Service_Reseller_SubscriptionPlanCommitmentInterval';
- protected $commitmentIntervalDataType = '';
- public $isCommitmentPlan;
- public $planName;
-
-
- public function setCommitmentInterval(Postman_Google_Service_Reseller_SubscriptionPlanCommitmentInterval $commitmentInterval)
- {
- $this->commitmentInterval = $commitmentInterval;
- }
- public function getCommitmentInterval()
- {
- return $this->commitmentInterval;
- }
- public function setIsCommitmentPlan($isCommitmentPlan)
- {
- $this->isCommitmentPlan = $isCommitmentPlan;
- }
- public function getIsCommitmentPlan()
- {
- return $this->isCommitmentPlan;
- }
- public function setPlanName($planName)
- {
- $this->planName = $planName;
- }
- public function getPlanName()
- {
- return $this->planName;
- }
-}
-
-class Postman_Google_Service_Reseller_SubscriptionPlanCommitmentInterval extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endTime;
- public $startTime;
-
-
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
-}
-
-class Postman_Google_Service_Reseller_SubscriptionTransferInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $minimumTransferableSeats;
- public $transferabilityExpirationTime;
-
-
- public function setMinimumTransferableSeats($minimumTransferableSeats)
- {
- $this->minimumTransferableSeats = $minimumTransferableSeats;
- }
- public function getMinimumTransferableSeats()
- {
- return $this->minimumTransferableSeats;
- }
- public function setTransferabilityExpirationTime($transferabilityExpirationTime)
- {
- $this->transferabilityExpirationTime = $transferabilityExpirationTime;
- }
- public function getTransferabilityExpirationTime()
- {
- return $this->transferabilityExpirationTime;
- }
-}
-
-class Postman_Google_Service_Reseller_SubscriptionTrialSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $isInTrial;
- public $trialEndTime;
-
-
- public function setIsInTrial($isInTrial)
- {
- $this->isInTrial = $isInTrial;
- }
- public function getIsInTrial()
- {
- return $this->isInTrial;
- }
- public function setTrialEndTime($trialEndTime)
- {
- $this->trialEndTime = $trialEndTime;
- }
- public function getTrialEndTime()
- {
- return $this->trialEndTime;
- }
-}
-
-class Postman_Google_Service_Reseller_Subscriptions extends Postman_Google_Collection
-{
- protected $collection_key = 'subscriptions';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $subscriptionsType = 'Postman_Google_Service_Reseller_Subscription';
- protected $subscriptionsDataType = 'array';
-
-
- 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;
- }
- public function setSubscriptions($subscriptions)
- {
- $this->subscriptions = $subscriptions;
- }
- public function getSubscriptions()
- {
- return $this->subscriptions;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Resource.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Resource.php
deleted file mode 100644
index e71a1ab..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Resource.php
+++ /dev/null
@@ -1,242 +0,0 @@
-
- * @author Chirag Shah - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Resourceviews extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - - public $zoneOperations; - public $zoneViews; - - - /** - * Constructs the internal representation of the Resourceviews service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'resourceviews/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'resourceviews'; - - $this->zoneOperations = new Postman_Google_Service_Resourceviews_ZoneOperations_Resource( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->zoneViews = new Postman_Google_Service_Resourceviews_ZoneViews_Resource( - $this, - $this->serviceName, - 'zoneViews', - array( - 'methods' => array( - 'addResources' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/addResources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getService' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/resourceViews', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/resourceViews', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'listResources' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'listState' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeResources' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setService' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "zoneOperations" collection of methods. - * Typical usage is: - *
- * $resourceviewsService = new Postman_Google_Service_Resourceviews(...);
- * $zoneOperations = $resourceviewsService->zoneOperations;
- *
- */
-class Postman_Google_Service_Resourceviews_ZoneOperations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the specified zone-specific operation resource.
- * (zoneOperations.get)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param string $operation Name of the operation resource to return.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_Operation
- */
- public function get($project, $zone, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Resourceviews_Operation");
- }
-
- /**
- * Retrieves the list of operation resources contained within the specified
- * zone. (zoneOperations.listZoneOperations)
- *
- * @param string $project Name of the project scoping this request.
- * @param string $zone Name of the zone scoping this request.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string filter Optional. Filter expression for filtering listed
- * resources.
- * @opt_param string pageToken Optional. Tag returned by a previous list request
- * truncated by maxResults. Used to continue a previous list request.
- * @opt_param string maxResults Optional. Maximum count of results to be
- * returned. Maximum value is 500 and default value is 500.
- * @return Postman_Google_Service_Resourceviews_OperationList
- */
- public function listZoneOperations($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Resourceviews_OperationList");
- }
-}
-
-/**
- * The "zoneViews" collection of methods.
- * Typical usage is:
- *
- * $resourceviewsService = new Postman_Google_Service_Resourceviews(...);
- * $zoneViews = $resourceviewsService->zoneViews;
- *
- */
-class Postman_Google_Service_Resourceviews_ZoneViews_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Add resources to the view. (zoneViews.addResources)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param Postman_Google_ZoneViewsAddResourcesRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_Operation
- */
- public function addResources($project, $zone, $resourceView, Postman_Google_Service_Resourceviews_ZoneViewsAddResourcesRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('addResources', array($params), "Postman_Google_Service_Resourceviews_Operation");
- }
-
- /**
- * Delete a resource view. (zoneViews.delete)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_Operation
- */
- public function delete($project, $zone, $resourceView, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_Resourceviews_Operation");
- }
-
- /**
- * Get the information of a zonal resource view. (zoneViews.get)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_ResourceView
- */
- public function get($project, $zone, $resourceView, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Resourceviews_ResourceView");
- }
-
- /**
- * Get the service information of a resource view or a resource.
- * (zoneViews.getService)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string resourceName The name of the resource if user wants to get
- * the service information of the resource.
- * @return Postman_Google_Service_Resourceviews_ZoneViewsGetServiceResponse
- */
- public function getService($project, $zone, $resourceView, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
- $params = array_merge($params, $optParams);
- return $this->call('getService', array($params), "Postman_Google_Service_Resourceviews_ZoneViewsGetServiceResponse");
- }
-
- /**
- * Create a resource view. (zoneViews.insert)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param Postman_Google_ResourceView $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_Operation
- */
- public function insert($project, $zone, Postman_Google_Service_Resourceviews_ResourceView $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Resourceviews_Operation");
- }
-
- /**
- * List resource views. (zoneViews.listZoneViews)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Specifies a nextPageToken returned by a previous
- * list request. This token can be used to request the next page of results from
- * a previous list request.
- * @opt_param int maxResults Maximum count of results to be returned. Acceptable
- * values are 0 to 5000, inclusive. (Default: 5000)
- * @return Postman_Google_Service_Resourceviews_ZoneViewsList
- */
- public function listZoneViews($project, $zone, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Resourceviews_ZoneViewsList");
- }
-
- /**
- * List the resources of the resource view. (zoneViews.listResources)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string listState The state of the instance to list. By default, it
- * lists all instances.
- * @opt_param string format The requested format of the return value. It can be
- * URL or URL_PORT. A JSON object will be included in the response based on the
- * format. The default format is NONE, which results in no JSON in the response.
- * @opt_param int maxResults Maximum count of results to be returned. Acceptable
- * values are 0 to 5000, inclusive. (Default: 5000)
- * @opt_param string pageToken Specifies a nextPageToken returned by a previous
- * list request. This token can be used to request the next page of results from
- * a previous list request.
- * @opt_param string serviceName The service name to return in the response. It
- * is optional and if it is not set, all the service end points will be
- * returned.
- * @return Postman_Google_Service_Resourceviews_ZoneViewsListResourcesResponse
- */
- public function listResources($project, $zone, $resourceView, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
- $params = array_merge($params, $optParams);
- return $this->call('listResources', array($params), "Postman_Google_Service_Resourceviews_ZoneViewsListResourcesResponse");
- }
-
- /**
- * Remove resources from the view. (zoneViews.removeResources)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param Postman_Google_ZoneViewsRemoveResourcesRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_Operation
- */
- public function removeResources($project, $zone, $resourceView, Postman_Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('removeResources', array($params), "Postman_Google_Service_Resourceviews_Operation");
- }
-
- /**
- * Update the service information of a resource view or a resource.
- * (zoneViews.setService)
- *
- * @param string $project The project name of the resource view.
- * @param string $zone The zone name of the resource view.
- * @param string $resourceView The name of the resource view.
- * @param Postman_Google_ZoneViewsSetServiceRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Resourceviews_Operation
- */
- public function setService($project, $zone, $resourceView, Postman_Google_Service_Resourceviews_ZoneViewsSetServiceRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setService', array($params), "Postman_Google_Service_Resourceviews_Operation");
- }
-}
-
-
-
-
-class Postman_Google_Service_Resourceviews_Label extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ListResourceResponseItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endpoints;
- public $resource;
-
-
- public function setEndpoints($endpoints)
- {
- $this->endpoints = $endpoints;
- }
- public function getEndpoints()
- {
- return $this->endpoints;
- }
- public function setResource($resource)
- {
- $this->resource = $resource;
- }
- public function getResource()
- {
- return $this->resource;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ListResourceResponseItemEndpoints extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Resourceviews_Operation extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $clientOperationId;
- public $creationTimestamp;
- public $endTime;
- protected $errorType = 'Postman_Google_Service_Resourceviews_OperationError';
- protected $errorDataType = '';
- public $httpErrorMessage;
- public $httpErrorStatusCode;
- public $id;
- public $insertTime;
- public $kind;
- public $name;
- public $operationType;
- public $progress;
- public $region;
- public $selfLink;
- public $startTime;
- public $status;
- public $statusMessage;
- public $targetId;
- public $targetLink;
- public $user;
- protected $warningsType = 'Postman_Google_Service_Resourceviews_OperationWarnings';
- protected $warningsDataType = 'array';
- public $zone;
-
-
- public function setClientOperationId($clientOperationId)
- {
- $this->clientOperationId = $clientOperationId;
- }
- public function getClientOperationId()
- {
- return $this->clientOperationId;
- }
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setError(Postman_Google_Service_Resourceviews_OperationError $error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setHttpErrorMessage($httpErrorMessage)
- {
- $this->httpErrorMessage = $httpErrorMessage;
- }
- public function getHttpErrorMessage()
- {
- return $this->httpErrorMessage;
- }
- public function setHttpErrorStatusCode($httpErrorStatusCode)
- {
- $this->httpErrorStatusCode = $httpErrorStatusCode;
- }
- public function getHttpErrorStatusCode()
- {
- return $this->httpErrorStatusCode;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInsertTime($insertTime)
- {
- $this->insertTime = $insertTime;
- }
- public function getInsertTime()
- {
- return $this->insertTime;
- }
- 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 setOperationType($operationType)
- {
- $this->operationType = $operationType;
- }
- public function getOperationType()
- {
- return $this->operationType;
- }
- public function setProgress($progress)
- {
- $this->progress = $progress;
- }
- public function getProgress()
- {
- return $this->progress;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setStatusMessage($statusMessage)
- {
- $this->statusMessage = $statusMessage;
- }
- public function getStatusMessage()
- {
- return $this->statusMessage;
- }
- public function setTargetId($targetId)
- {
- $this->targetId = $targetId;
- }
- public function getTargetId()
- {
- return $this->targetId;
- }
- public function setTargetLink($targetLink)
- {
- $this->targetLink = $targetLink;
- }
- public function getTargetLink()
- {
- return $this->targetLink;
- }
- public function setUser($user)
- {
- $this->user = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_Resourceviews_OperationError extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- protected $errorsType = 'Postman_Google_Service_Resourceviews_OperationErrorErrors';
- protected $errorsDataType = 'array';
-
-
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_Resourceviews_OperationErrorErrors extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $location;
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Resourceviews_OperationList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- protected $itemsType = 'Postman_Google_Service_Resourceviews_Operation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Resourceviews_OperationWarnings extends Postman_Google_Collection
-{
- protected $collection_key = 'data';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $dataType = 'Postman_Google_Service_Resourceviews_OperationWarningsData';
- protected $dataDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setData($data)
- {
- $this->data = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_Resourceviews_OperationWarningsData extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $key;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ResourceView extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $creationTimestamp;
- public $description;
- protected $endpointsType = 'Postman_Google_Service_Resourceviews_ServiceEndpoint';
- protected $endpointsDataType = 'array';
- public $fingerprint;
- public $id;
- public $kind;
- protected $labelsType = 'Postman_Google_Service_Resourceviews_Label';
- protected $labelsDataType = 'array';
- public $name;
- public $network;
- public $resources;
- public $selfLink;
- public $size;
-
-
- public function setCreationTimestamp($creationTimestamp)
- {
- $this->creationTimestamp = $creationTimestamp;
- }
- public function getCreationTimestamp()
- {
- return $this->creationTimestamp;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEndpoints($endpoints)
- {
- $this->endpoints = $endpoints;
- }
- public function getEndpoints()
- {
- return $this->endpoints;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- 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 setLabels($labels)
- {
- $this->labels = $labels;
- }
- public function getLabels()
- {
- return $this->labels;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ServiceEndpoint extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $port;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPort($port)
- {
- $this->port = $port;
- }
- public function getPort()
- {
- return $this->port;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ZoneViewsAddResourcesRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $resources;
-
-
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ZoneViewsGetServiceResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'endpoints';
- protected $internal_gapi_mappings = array(
- );
- protected $endpointsType = 'Postman_Google_Service_Resourceviews_ServiceEndpoint';
- protected $endpointsDataType = 'array';
- public $fingerprint;
-
-
- public function setEndpoints($endpoints)
- {
- $this->endpoints = $endpoints;
- }
- public function getEndpoints()
- {
- return $this->endpoints;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ZoneViewsList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Resourceviews_ResourceView';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $selfLink;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ZoneViewsListResourcesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Resourceviews_ListResourceResponseItem';
- protected $itemsDataType = 'array';
- public $network;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setNetwork($network)
- {
- $this->network = $network;
- }
- public function getNetwork()
- {
- return $this->network;
- }
- public function setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $resources;
-
-
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_Resourceviews_ZoneViewsSetServiceRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'endpoints';
- protected $internal_gapi_mappings = array(
- );
- protected $endpointsType = 'Postman_Google_Service_Resourceviews_ServiceEndpoint';
- protected $endpointsDataType = 'array';
- public $fingerprint;
- public $resourceName;
-
-
- public function setEndpoints($endpoints)
- {
- $this->endpoints = $endpoints;
- }
- public function getEndpoints()
- {
- return $this->endpoints;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setResourceName($resourceName)
- {
- $this->resourceName = $resourceName;
- }
- public function getResourceName()
- {
- return $this->resourceName;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/SQLAdmin.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/SQLAdmin.php
deleted file mode 100644
index a2af7d7..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/SQLAdmin.php
+++ /dev/null
@@ -1,2778 +0,0 @@
-
- * API for Cloud SQL database instance management.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_SQLAdmin extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your Google SQL Service instances. */ - const SQLSERVICE_ADMIN = - "https://www.googleapis.com/auth/sqlservice.admin"; - - public $backupRuns; - public $flags; - public $instances; - public $operations; - public $sslCerts; - public $tiers; - - - /** - * Constructs the internal representation of the SQLAdmin service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'sql/v1beta3/'; - $this->version = 'v1beta3'; - $this->serviceName = 'sqladmin'; - - $this->backupRuns = new Postman_Google_Service_SQLAdmin_BackupRuns_Resource( - $this, - $this->serviceName, - 'backupRuns', - array( - 'methods' => array( - 'get' => array( - 'path' => 'projects/{project}/instances/{instance}/backupRuns/{backupConfiguration}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backupConfiguration' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dueTime' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{project}/instances/{instance}/backupRuns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backupConfiguration' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->flags = new Postman_Google_Service_SQLAdmin_Flags_Resource( - $this, - $this->serviceName, - 'flags', - array( - 'methods' => array( - 'list' => array( - 'path' => 'flags', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->instances = new Postman_Google_Service_SQLAdmin_Instances_Resource( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'clone' => array( - 'path' => 'projects/{project}/instances/clone', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'projects/{project}/instances/{instance}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'projects/{project}/instances/{instance}/export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{project}/instances/{instance}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'projects/{project}/instances/{instance}/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{project}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{project}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'projects/{project}/instances/{instance}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'promoteReplica' => array( - 'path' => 'projects/{project}/instances/{instance}/promoteReplica', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetSslConfig' => array( - 'path' => 'projects/{project}/instances/{instance}/resetSslConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'restart' => array( - 'path' => 'projects/{project}/instances/{instance}/restart', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'restoreBackup' => array( - 'path' => 'projects/{project}/instances/{instance}/restoreBackup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backupConfiguration' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dueTime' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setRootPassword' => array( - 'path' => 'projects/{project}/instances/{instance}/setRootPassword', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{project}/instances/{instance}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Postman_Google_Service_SQLAdmin_Operations_Resource( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'projects/{project}/instances/{instance}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{project}/instances/{instance}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sslCerts = new Postman_Google_Service_SQLAdmin_SslCerts_Resource( - $this, - $this->serviceName, - 'sslCerts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sha1Fingerprint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sha1Fingerprint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{project}/instances/{instance}/sslCerts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{project}/instances/{instance}/sslCerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tiers = new Postman_Google_Service_SQLAdmin_Tiers_Resource( - $this, - $this->serviceName, - 'tiers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'projects/{project}/tiers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "backupRuns" collection of methods. - * Typical usage is: - *
- * $sqladminService = new Postman_Google_Service_SQLAdmin(...);
- * $backupRuns = $sqladminService->backupRuns;
- *
- */
-class Postman_Google_Service_SQLAdmin_BackupRuns_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves information about a specified backup run for a Cloud SQL instance.
- * (backupRuns.get)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param string $backupConfiguration Identifier for the backup configuration.
- * This gets generated automatically when a backup configuration is created.
- * @param string $dueTime The start time of the four-hour backup window. The
- * backup can occur any time in the window. The time is in RFC 3339 format, for
- * example 2012-11-15T16:19:00.094Z.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_BackupRun
- */
- public function get($project, $instance, $backupConfiguration, $dueTime, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'backupConfiguration' => $backupConfiguration, 'dueTime' => $dueTime);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_SQLAdmin_BackupRun");
- }
-
- /**
- * Lists all backup runs associated with a Cloud SQL instance.
- * (backupRuns.listBackupRuns)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param string $backupConfiguration Identifier for the backup configuration.
- * This gets generated automatically when a backup configuration is created.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A previously-returned page token representing
- * part of the larger set of results to view.
- * @opt_param int maxResults Maximum number of backup runs per response.
- * @return Postman_Google_Service_SQLAdmin_BackupRunsListResponse
- */
- public function listBackupRuns($project, $instance, $backupConfiguration, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'backupConfiguration' => $backupConfiguration);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SQLAdmin_BackupRunsListResponse");
- }
-}
-
-/**
- * The "flags" collection of methods.
- * Typical usage is:
- *
- * $sqladminService = new Postman_Google_Service_SQLAdmin(...);
- * $flags = $sqladminService->flags;
- *
- */
-class Postman_Google_Service_SQLAdmin_Flags_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists all database flags that can be set for Google Cloud SQL instances.
- * (flags.listFlags)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_FlagsListResponse
- */
- public function listFlags($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SQLAdmin_FlagsListResponse");
- }
-}
-
-/**
- * The "instances" collection of methods.
- * Typical usage is:
- *
- * $sqladminService = new Postman_Google_Service_SQLAdmin(...);
- * $instances = $sqladminService->instances;
- *
- */
-class Postman_Google_Service_SQLAdmin_Instances_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a Cloud SQL instance as a clone of a source instance.
- * (instances.cloneInstances)
- *
- * @param string $project Project ID of the source as well as the clone Cloud
- * SQL instance.
- * @param Postman_Google_InstancesCloneRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesCloneResponse
- */
- public function cloneInstances($project, Postman_Google_Service_SQLAdmin_InstancesCloneRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('clone', array($params), "Postman_Google_Service_SQLAdmin_InstancesCloneResponse");
- }
-
- /**
- * Deletes a Cloud SQL instance. (instances.delete)
- *
- * @param string $project Project ID of the project that contains the instance
- * to be deleted.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesDeleteResponse
- */
- public function delete($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_SQLAdmin_InstancesDeleteResponse");
- }
-
- /**
- * Exports data from a Cloud SQL instance to a Google Cloud Storage bucket as a
- * MySQL dump file. (instances.export)
- *
- * @param string $project Project ID of the project that contains the instance
- * to be exported.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param Postman_Google_InstancesExportRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesExportResponse
- */
- public function export($project, $instance, Postman_Google_Service_SQLAdmin_InstancesExportRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('export', array($params), "Postman_Google_Service_SQLAdmin_InstancesExportResponse");
- }
-
- /**
- * Retrieves information about a Cloud SQL instance. (instances.get)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Database instance ID. This does not include the
- * project ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_DatabaseInstance
- */
- public function get($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_SQLAdmin_DatabaseInstance");
- }
-
- /**
- * Imports data into a Cloud SQL instance from a MySQL dump file stored in a
- * Google Cloud Storage bucket. (instances.import)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param Postman_Google_InstancesImportRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesImportResponse
- */
- public function import($project, $instance, Postman_Google_Service_SQLAdmin_InstancesImportRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('import', array($params), "Postman_Google_Service_SQLAdmin_InstancesImportResponse");
- }
-
- /**
- * Creates a new Cloud SQL instance. (instances.insert)
- *
- * @param string $project Project ID of the project to which the newly created
- * Cloud SQL instances should belong.
- * @param Postman_Google_DatabaseInstance $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesInsertResponse
- */
- public function insert($project, Postman_Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_SQLAdmin_InstancesInsertResponse");
- }
-
- /**
- * Lists instances for a given project, in alphabetical order by instance name.
- * (instances.listInstances)
- *
- * @param string $project Project ID of the project for which to list Cloud SQL
- * instances.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A previously-returned page token representing
- * part of the larger set of results to view.
- * @opt_param string maxResults The maximum number of results to return per
- * response.
- * @return Postman_Google_Service_SQLAdmin_InstancesListResponse
- */
- public function listInstances($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SQLAdmin_InstancesListResponse");
- }
-
- /**
- * Updates the settings of a Cloud SQL instance. This method supports patch
- * semantics. (instances.patch)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param Postman_Google_DatabaseInstance $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesUpdateResponse
- */
- public function patch($project, $instance, Postman_Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_SQLAdmin_InstancesUpdateResponse");
- }
-
- /**
- * Promotes the read replica instance to be a stand-alone Cloud SQL instance.
- * (instances.promoteReplica)
- *
- * @param string $project ID of the project that contains the read replica.
- * @param string $instance Cloud SQL read replica instance name.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesPromoteReplicaResponse
- */
- public function promoteReplica($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('promoteReplica', array($params), "Postman_Google_Service_SQLAdmin_InstancesPromoteReplicaResponse");
- }
-
- /**
- * Deletes all client certificates and generates a new server SSL certificate
- * for a Cloud SQL instance. (instances.resetSslConfig)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesResetSslConfigResponse
- */
- public function resetSslConfig($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('resetSslConfig', array($params), "Postman_Google_Service_SQLAdmin_InstancesResetSslConfigResponse");
- }
-
- /**
- * Restarts a Cloud SQL instance. (instances.restart)
- *
- * @param string $project Project ID of the project that contains the instance
- * to be restarted.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesRestartResponse
- */
- public function restart($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('restart', array($params), "Postman_Google_Service_SQLAdmin_InstancesRestartResponse");
- }
-
- /**
- * Restores a backup of a Cloud SQL instance. (instances.restoreBackup)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param string $backupConfiguration The identifier of the backup
- * configuration. This gets generated automatically when a backup configuration
- * is created.
- * @param string $dueTime The start time of the four-hour backup window. The
- * backup can occur any time in the window. The time is in RFC 3339 format, for
- * example 2012-11-15T16:19:00.094Z.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesRestoreBackupResponse
- */
- public function restoreBackup($project, $instance, $backupConfiguration, $dueTime, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'backupConfiguration' => $backupConfiguration, 'dueTime' => $dueTime);
- $params = array_merge($params, $optParams);
- return $this->call('restoreBackup', array($params), "Postman_Google_Service_SQLAdmin_InstancesRestoreBackupResponse");
- }
-
- /**
- * Sets the password for the root user of the specified Cloud SQL instance.
- * (instances.setRootPassword)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param Postman_Google_InstanceSetRootPasswordRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesSetRootPasswordResponse
- */
- public function setRootPassword($project, $instance, Postman_Google_Service_SQLAdmin_InstanceSetRootPasswordRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('setRootPassword', array($params), "Postman_Google_Service_SQLAdmin_InstancesSetRootPasswordResponse");
- }
-
- /**
- * Updates the settings of a Cloud SQL instance. (instances.update)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param Postman_Google_DatabaseInstance $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstancesUpdateResponse
- */
- public function update($project, $instance, Postman_Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_SQLAdmin_InstancesUpdateResponse");
- }
-}
-
-/**
- * The "operations" collection of methods.
- * Typical usage is:
- *
- * $sqladminService = new Postman_Google_Service_SQLAdmin(...);
- * $operations = $sqladminService->operations;
- *
- */
-class Postman_Google_Service_SQLAdmin_Operations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves information about a specific operation that was performed on a
- * Cloud SQL instance. (operations.get)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param string $operation Instance operation ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_InstanceOperation
- */
- public function get($project, $instance, $operation, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'operation' => $operation);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_SQLAdmin_InstanceOperation");
- }
-
- /**
- * Lists all operations that have been performed on a Cloud SQL instance.
- * (operations.listOperations)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string maxResults Maximum number of operations per response.
- * @opt_param string pageToken A previously-returned page token representing
- * part of the larger set of results to view.
- * @return Postman_Google_Service_SQLAdmin_OperationsListResponse
- */
- public function listOperations($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SQLAdmin_OperationsListResponse");
- }
-}
-
-/**
- * The "sslCerts" collection of methods.
- * Typical usage is:
- *
- * $sqladminService = new Postman_Google_Service_SQLAdmin(...);
- * $sslCerts = $sqladminService->sslCerts;
- *
- */
-class Postman_Google_Service_SQLAdmin_SslCerts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes an SSL certificate from a Cloud SQL instance. (sslCerts.delete)
- *
- * @param string $project Project ID of the project that contains the instance
- * to be deleted.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param string $sha1Fingerprint Sha1 FingerPrint.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_SslCertsDeleteResponse
- */
- public function delete($project, $instance, $sha1Fingerprint, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params), "Postman_Google_Service_SQLAdmin_SslCertsDeleteResponse");
- }
-
- /**
- * Retrieves an SSL certificate as specified by its SHA-1 fingerprint.
- * (sslCerts.get)
- *
- * @param string $project Project ID of the project that contains the instance.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param string $sha1Fingerprint Sha1 FingerPrint.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_SslCert
- */
- public function get($project, $instance, $sha1Fingerprint, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_SQLAdmin_SslCert");
- }
-
- /**
- * Creates an SSL certificate and returns the certificate, the associated
- * private key, and the server certificate authority. (sslCerts.insert)
- *
- * @param string $project Project ID of the project to which the newly created
- * Cloud SQL instances should belong.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param Postman_Google_SslCertsInsertRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_SslCertsInsertResponse
- */
- public function insert($project, $instance, Postman_Google_Service_SQLAdmin_SslCertsInsertRequest $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_SQLAdmin_SslCertsInsertResponse");
- }
-
- /**
- * Lists all of the current SSL certificates defined for a Cloud SQL instance.
- * (sslCerts.listSslCerts)
- *
- * @param string $project Project ID of the project for which to list Cloud SQL
- * instances.
- * @param string $instance Cloud SQL instance ID. This does not include the
- * project ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_SslCertsListResponse
- */
- public function listSslCerts($project, $instance, $optParams = array())
- {
- $params = array('project' => $project, 'instance' => $instance);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SQLAdmin_SslCertsListResponse");
- }
-}
-
-/**
- * The "tiers" collection of methods.
- * Typical usage is:
- *
- * $sqladminService = new Postman_Google_Service_SQLAdmin(...);
- * $tiers = $sqladminService->tiers;
- *
- */
-class Postman_Google_Service_SQLAdmin_Tiers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Lists service tiers that can be used to create Google Cloud SQL instances.
- * (tiers.listTiers)
- *
- * @param string $project Project ID of the project for which to list tiers.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SQLAdmin_TiersListResponse
- */
- public function listTiers($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SQLAdmin_TiersListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_SQLAdmin_BackupConfiguration extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $binaryLogEnabled;
- public $enabled;
- public $id;
- public $kind;
- public $startTime;
-
-
- public function setBinaryLogEnabled($binaryLogEnabled)
- {
- $this->binaryLogEnabled = $binaryLogEnabled;
- }
- public function getBinaryLogEnabled()
- {
- return $this->binaryLogEnabled;
- }
- public function setEnabled($enabled)
- {
- $this->enabled = $enabled;
- }
- public function getEnabled()
- {
- return $this->enabled;
- }
- 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 setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_BackupRun extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $backupConfiguration;
- public $dueTime;
- public $endTime;
- public $enqueuedTime;
- protected $errorType = 'Postman_Google_Service_SQLAdmin_OperationError';
- protected $errorDataType = '';
- public $instance;
- public $kind;
- public $startTime;
- public $status;
-
-
- public function setBackupConfiguration($backupConfiguration)
- {
- $this->backupConfiguration = $backupConfiguration;
- }
- public function getBackupConfiguration()
- {
- return $this->backupConfiguration;
- }
- public function setDueTime($dueTime)
- {
- $this->dueTime = $dueTime;
- }
- public function getDueTime()
- {
- return $this->dueTime;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setEnqueuedTime($enqueuedTime)
- {
- $this->enqueuedTime = $enqueuedTime;
- }
- public function getEnqueuedTime()
- {
- return $this->enqueuedTime;
- }
- public function setError(Postman_Google_Service_SQLAdmin_OperationError $error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_BackupRunsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SQLAdmin_BackupRun';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_BinLogCoordinates extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $binLogFileName;
- public $binLogPosition;
- public $kind;
-
-
- public function setBinLogFileName($binLogFileName)
- {
- $this->binLogFileName = $binLogFileName;
- }
- public function getBinLogFileName()
- {
- return $this->binLogFileName;
- }
- public function setBinLogPosition($binLogPosition)
- {
- $this->binLogPosition = $binLogPosition;
- }
- public function getBinLogPosition()
- {
- return $this->binLogPosition;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_CloneContext extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $binLogCoordinatesType = 'Postman_Google_Service_SQLAdmin_BinLogCoordinates';
- protected $binLogCoordinatesDataType = '';
- public $destinationInstanceName;
- public $kind;
- public $sourceInstanceName;
-
-
- public function setBinLogCoordinates(Postman_Google_Service_SQLAdmin_BinLogCoordinates $binLogCoordinates)
- {
- $this->binLogCoordinates = $binLogCoordinates;
- }
- public function getBinLogCoordinates()
- {
- return $this->binLogCoordinates;
- }
- public function setDestinationInstanceName($destinationInstanceName)
- {
- $this->destinationInstanceName = $destinationInstanceName;
- }
- public function getDestinationInstanceName()
- {
- return $this->destinationInstanceName;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSourceInstanceName($sourceInstanceName)
- {
- $this->sourceInstanceName = $sourceInstanceName;
- }
- public function getSourceInstanceName()
- {
- return $this->sourceInstanceName;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_DatabaseFlags extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $value;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_DatabaseInstance extends Postman_Google_Collection
-{
- protected $collection_key = 'replicaNames';
- protected $internal_gapi_mappings = array(
- );
- public $currentDiskSize;
- public $databaseVersion;
- public $etag;
- public $instance;
- public $instanceType;
- protected $ipAddressesType = 'Postman_Google_Service_SQLAdmin_IpMapping';
- protected $ipAddressesDataType = 'array';
- public $ipv6Address;
- public $kind;
- public $masterInstanceName;
- public $maxDiskSize;
- public $project;
- public $region;
- public $replicaNames;
- protected $serverCaCertType = 'Postman_Google_Service_SQLAdmin_SslCert';
- protected $serverCaCertDataType = '';
- protected $settingsType = 'Postman_Google_Service_SQLAdmin_Settings';
- protected $settingsDataType = '';
- public $state;
-
-
- public function setCurrentDiskSize($currentDiskSize)
- {
- $this->currentDiskSize = $currentDiskSize;
- }
- public function getCurrentDiskSize()
- {
- return $this->currentDiskSize;
- }
- public function setDatabaseVersion($databaseVersion)
- {
- $this->databaseVersion = $databaseVersion;
- }
- public function getDatabaseVersion()
- {
- return $this->databaseVersion;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
- public function setInstanceType($instanceType)
- {
- $this->instanceType = $instanceType;
- }
- public function getInstanceType()
- {
- return $this->instanceType;
- }
- public function setIpAddresses($ipAddresses)
- {
- $this->ipAddresses = $ipAddresses;
- }
- public function getIpAddresses()
- {
- return $this->ipAddresses;
- }
- public function setIpv6Address($ipv6Address)
- {
- $this->ipv6Address = $ipv6Address;
- }
- public function getIpv6Address()
- {
- return $this->ipv6Address;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMasterInstanceName($masterInstanceName)
- {
- $this->masterInstanceName = $masterInstanceName;
- }
- public function getMasterInstanceName()
- {
- return $this->masterInstanceName;
- }
- public function setMaxDiskSize($maxDiskSize)
- {
- $this->maxDiskSize = $maxDiskSize;
- }
- public function getMaxDiskSize()
- {
- return $this->maxDiskSize;
- }
- public function setProject($project)
- {
- $this->project = $project;
- }
- public function getProject()
- {
- return $this->project;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setReplicaNames($replicaNames)
- {
- $this->replicaNames = $replicaNames;
- }
- public function getReplicaNames()
- {
- return $this->replicaNames;
- }
- public function setServerCaCert(Postman_Google_Service_SQLAdmin_SslCert $serverCaCert)
- {
- $this->serverCaCert = $serverCaCert;
- }
- public function getServerCaCert()
- {
- return $this->serverCaCert;
- }
- public function setSettings(Postman_Google_Service_SQLAdmin_Settings $settings)
- {
- $this->settings = $settings;
- }
- public function getSettings()
- {
- return $this->settings;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_ExportContext extends Postman_Google_Collection
-{
- protected $collection_key = 'table';
- protected $internal_gapi_mappings = array(
- );
- public $database;
- public $kind;
- public $table;
- public $uri;
-
-
- public function setDatabase($database)
- {
- $this->database = $database;
- }
- public function getDatabase()
- {
- return $this->database;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setTable($table)
- {
- $this->table = $table;
- }
- public function getTable()
- {
- return $this->table;
- }
- public function setUri($uri)
- {
- $this->uri = $uri;
- }
- public function getUri()
- {
- return $this->uri;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_Flag extends Postman_Google_Collection
-{
- protected $collection_key = 'appliesTo';
- protected $internal_gapi_mappings = array(
- );
- public $allowedStringValues;
- public $appliesTo;
- public $kind;
- public $maxValue;
- public $minValue;
- public $name;
- public $type;
-
-
- public function setAllowedStringValues($allowedStringValues)
- {
- $this->allowedStringValues = $allowedStringValues;
- }
- public function getAllowedStringValues()
- {
- return $this->allowedStringValues;
- }
- public function setAppliesTo($appliesTo)
- {
- $this->appliesTo = $appliesTo;
- }
- public function getAppliesTo()
- {
- return $this->appliesTo;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxValue($maxValue)
- {
- $this->maxValue = $maxValue;
- }
- public function getMaxValue()
- {
- return $this->maxValue;
- }
- public function setMinValue($minValue)
- {
- $this->minValue = $minValue;
- }
- public function getMinValue()
- {
- return $this->minValue;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_FlagsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SQLAdmin_Flag';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_ImportContext extends Postman_Google_Collection
-{
- protected $collection_key = 'uri';
- protected $internal_gapi_mappings = array(
- );
- public $database;
- public $kind;
- public $uri;
-
-
- public function setDatabase($database)
- {
- $this->database = $database;
- }
- public function getDatabase()
- {
- return $this->database;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUri($uri)
- {
- $this->uri = $uri;
- }
- public function getUri()
- {
- return $this->uri;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstanceOperation extends Postman_Google_Collection
-{
- protected $collection_key = 'error';
- protected $internal_gapi_mappings = array(
- );
- public $endTime;
- public $enqueuedTime;
- protected $errorType = 'Postman_Google_Service_SQLAdmin_OperationError';
- protected $errorDataType = 'array';
- protected $exportContextType = 'Postman_Google_Service_SQLAdmin_ExportContext';
- protected $exportContextDataType = '';
- protected $importContextType = 'Postman_Google_Service_SQLAdmin_ImportContext';
- protected $importContextDataType = '';
- public $instance;
- public $kind;
- public $operation;
- public $operationType;
- public $startTime;
- public $state;
- public $userEmailAddress;
-
-
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setEnqueuedTime($enqueuedTime)
- {
- $this->enqueuedTime = $enqueuedTime;
- }
- public function getEnqueuedTime()
- {
- return $this->enqueuedTime;
- }
- public function setError($error)
- {
- $this->error = $error;
- }
- public function getError()
- {
- return $this->error;
- }
- public function setExportContext(Postman_Google_Service_SQLAdmin_ExportContext $exportContext)
- {
- $this->exportContext = $exportContext;
- }
- public function getExportContext()
- {
- return $this->exportContext;
- }
- public function setImportContext(Postman_Google_Service_SQLAdmin_ImportContext $importContext)
- {
- $this->importContext = $importContext;
- }
- public function getImportContext()
- {
- return $this->importContext;
- }
- public function setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
- public function setOperationType($operationType)
- {
- $this->operationType = $operationType;
- }
- public function getOperationType()
- {
- return $this->operationType;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setState($state)
- {
- $this->state = $state;
- }
- public function getState()
- {
- return $this->state;
- }
- public function setUserEmailAddress($userEmailAddress)
- {
- $this->userEmailAddress = $userEmailAddress;
- }
- public function getUserEmailAddress()
- {
- return $this->userEmailAddress;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstanceSetRootPasswordRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $setRootPasswordContextType = 'Postman_Google_Service_SQLAdmin_SetRootPasswordContext';
- protected $setRootPasswordContextDataType = '';
-
-
- public function setSetRootPasswordContext(Postman_Google_Service_SQLAdmin_SetRootPasswordContext $setRootPasswordContext)
- {
- $this->setRootPasswordContext = $setRootPasswordContext;
- }
- public function getSetRootPasswordContext()
- {
- return $this->setRootPasswordContext;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesCloneRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $cloneContextType = 'Postman_Google_Service_SQLAdmin_CloneContext';
- protected $cloneContextDataType = '';
-
-
- public function setCloneContext(Postman_Google_Service_SQLAdmin_CloneContext $cloneContext)
- {
- $this->cloneContext = $cloneContext;
- }
- public function getCloneContext()
- {
- return $this->cloneContext;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesCloneResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesDeleteResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesExportRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $exportContextType = 'Postman_Google_Service_SQLAdmin_ExportContext';
- protected $exportContextDataType = '';
-
-
- public function setExportContext(Postman_Google_Service_SQLAdmin_ExportContext $exportContext)
- {
- $this->exportContext = $exportContext;
- }
- public function getExportContext()
- {
- return $this->exportContext;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesExportResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesImportRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $importContextType = 'Postman_Google_Service_SQLAdmin_ImportContext';
- protected $importContextDataType = '';
-
-
- public function setImportContext(Postman_Google_Service_SQLAdmin_ImportContext $importContext)
- {
- $this->importContext = $importContext;
- }
- public function getImportContext()
- {
- return $this->importContext;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesImportResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesInsertResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SQLAdmin_DatabaseInstance';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesPromoteReplicaResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesResetSslConfigResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesRestartResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesRestoreBackupResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesSetRootPasswordResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_InstancesUpdateResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_IpConfiguration extends Postman_Google_Collection
-{
- protected $collection_key = 'authorizedNetworks';
- protected $internal_gapi_mappings = array(
- );
- public $authorizedNetworks;
- public $enabled;
- public $kind;
- public $requireSsl;
-
-
- public function setAuthorizedNetworks($authorizedNetworks)
- {
- $this->authorizedNetworks = $authorizedNetworks;
- }
- public function getAuthorizedNetworks()
- {
- return $this->authorizedNetworks;
- }
- public function setEnabled($enabled)
- {
- $this->enabled = $enabled;
- }
- public function getEnabled()
- {
- return $this->enabled;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRequireSsl($requireSsl)
- {
- $this->requireSsl = $requireSsl;
- }
- public function getRequireSsl()
- {
- return $this->requireSsl;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_IpMapping extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $ipAddress;
- public $timeToRetire;
-
-
- public function setIpAddress($ipAddress)
- {
- $this->ipAddress = $ipAddress;
- }
- public function getIpAddress()
- {
- return $this->ipAddress;
- }
- public function setTimeToRetire($timeToRetire)
- {
- $this->timeToRetire = $timeToRetire;
- }
- public function getTimeToRetire()
- {
- return $this->timeToRetire;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_LocationPreference extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $followGaeApplication;
- public $kind;
- public $zone;
-
-
- public function setFollowGaeApplication($followGaeApplication)
- {
- $this->followGaeApplication = $followGaeApplication;
- }
- public function getFollowGaeApplication()
- {
- return $this->followGaeApplication;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setZone($zone)
- {
- $this->zone = $zone;
- }
- public function getZone()
- {
- return $this->zone;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_OperationError extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $kind;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_OperationsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SQLAdmin_InstanceOperation';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SetRootPasswordContext extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $password;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_Settings extends Postman_Google_Collection
-{
- protected $collection_key = 'databaseFlags';
- protected $internal_gapi_mappings = array(
- );
- public $activationPolicy;
- public $authorizedGaeApplications;
- protected $backupConfigurationType = 'Postman_Google_Service_SQLAdmin_BackupConfiguration';
- protected $backupConfigurationDataType = 'array';
- protected $databaseFlagsType = 'Postman_Google_Service_SQLAdmin_DatabaseFlags';
- protected $databaseFlagsDataType = 'array';
- public $databaseReplicationEnabled;
- protected $ipConfigurationType = 'Postman_Google_Service_SQLAdmin_IpConfiguration';
- protected $ipConfigurationDataType = '';
- public $kind;
- protected $locationPreferenceType = 'Postman_Google_Service_SQLAdmin_LocationPreference';
- protected $locationPreferenceDataType = '';
- public $pricingPlan;
- public $replicationType;
- public $settingsVersion;
- public $tier;
-
-
- public function setActivationPolicy($activationPolicy)
- {
- $this->activationPolicy = $activationPolicy;
- }
- public function getActivationPolicy()
- {
- return $this->activationPolicy;
- }
- public function setAuthorizedGaeApplications($authorizedGaeApplications)
- {
- $this->authorizedGaeApplications = $authorizedGaeApplications;
- }
- public function getAuthorizedGaeApplications()
- {
- return $this->authorizedGaeApplications;
- }
- public function setBackupConfiguration($backupConfiguration)
- {
- $this->backupConfiguration = $backupConfiguration;
- }
- public function getBackupConfiguration()
- {
- return $this->backupConfiguration;
- }
- public function setDatabaseFlags($databaseFlags)
- {
- $this->databaseFlags = $databaseFlags;
- }
- public function getDatabaseFlags()
- {
- return $this->databaseFlags;
- }
- public function setDatabaseReplicationEnabled($databaseReplicationEnabled)
- {
- $this->databaseReplicationEnabled = $databaseReplicationEnabled;
- }
- public function getDatabaseReplicationEnabled()
- {
- return $this->databaseReplicationEnabled;
- }
- public function setIpConfiguration(Postman_Google_Service_SQLAdmin_IpConfiguration $ipConfiguration)
- {
- $this->ipConfiguration = $ipConfiguration;
- }
- public function getIpConfiguration()
- {
- return $this->ipConfiguration;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLocationPreference(Postman_Google_Service_SQLAdmin_LocationPreference $locationPreference)
- {
- $this->locationPreference = $locationPreference;
- }
- public function getLocationPreference()
- {
- return $this->locationPreference;
- }
- public function setPricingPlan($pricingPlan)
- {
- $this->pricingPlan = $pricingPlan;
- }
- public function getPricingPlan()
- {
- return $this->pricingPlan;
- }
- public function setReplicationType($replicationType)
- {
- $this->replicationType = $replicationType;
- }
- public function getReplicationType()
- {
- return $this->replicationType;
- }
- public function setSettingsVersion($settingsVersion)
- {
- $this->settingsVersion = $settingsVersion;
- }
- public function getSettingsVersion()
- {
- return $this->settingsVersion;
- }
- public function setTier($tier)
- {
- $this->tier = $tier;
- }
- public function getTier()
- {
- return $this->tier;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SslCert extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $cert;
- public $certSerialNumber;
- public $commonName;
- public $createTime;
- public $expirationTime;
- public $instance;
- public $kind;
- public $sha1Fingerprint;
-
-
- public function setCert($cert)
- {
- $this->cert = $cert;
- }
- public function getCert()
- {
- return $this->cert;
- }
- public function setCertSerialNumber($certSerialNumber)
- {
- $this->certSerialNumber = $certSerialNumber;
- }
- public function getCertSerialNumber()
- {
- return $this->certSerialNumber;
- }
- public function setCommonName($commonName)
- {
- $this->commonName = $commonName;
- }
- public function getCommonName()
- {
- return $this->commonName;
- }
- public function setCreateTime($createTime)
- {
- $this->createTime = $createTime;
- }
- public function getCreateTime()
- {
- return $this->createTime;
- }
- public function setExpirationTime($expirationTime)
- {
- $this->expirationTime = $expirationTime;
- }
- public function getExpirationTime()
- {
- return $this->expirationTime;
- }
- public function setInstance($instance)
- {
- $this->instance = $instance;
- }
- public function getInstance()
- {
- return $this->instance;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSha1Fingerprint($sha1Fingerprint)
- {
- $this->sha1Fingerprint = $sha1Fingerprint;
- }
- public function getSha1Fingerprint()
- {
- return $this->sha1Fingerprint;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SslCertDetail extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $certInfoType = 'Postman_Google_Service_SQLAdmin_SslCert';
- protected $certInfoDataType = '';
- public $certPrivateKey;
-
-
- public function setCertInfo(Postman_Google_Service_SQLAdmin_SslCert $certInfo)
- {
- $this->certInfo = $certInfo;
- }
- public function getCertInfo()
- {
- return $this->certInfo;
- }
- public function setCertPrivateKey($certPrivateKey)
- {
- $this->certPrivateKey = $certPrivateKey;
- }
- public function getCertPrivateKey()
- {
- return $this->certPrivateKey;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SslCertsDeleteResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $operation;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setOperation($operation)
- {
- $this->operation = $operation;
- }
- public function getOperation()
- {
- return $this->operation;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SslCertsInsertRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $commonName;
-
-
- public function setCommonName($commonName)
- {
- $this->commonName = $commonName;
- }
- public function getCommonName()
- {
- return $this->commonName;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SslCertsInsertResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $clientCertType = 'Postman_Google_Service_SQLAdmin_SslCertDetail';
- protected $clientCertDataType = '';
- public $kind;
- protected $serverCaCertType = 'Postman_Google_Service_SQLAdmin_SslCert';
- protected $serverCaCertDataType = '';
-
-
- public function setClientCert(Postman_Google_Service_SQLAdmin_SslCertDetail $clientCert)
- {
- $this->clientCert = $clientCert;
- }
- public function getClientCert()
- {
- return $this->clientCert;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setServerCaCert(Postman_Google_Service_SQLAdmin_SslCert $serverCaCert)
- {
- $this->serverCaCert = $serverCaCert;
- }
- public function getServerCaCert()
- {
- return $this->serverCaCert;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_SslCertsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SQLAdmin_SslCert';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_Tier extends Postman_Google_Collection
-{
- protected $collection_key = 'region';
- protected $internal_gapi_mappings = array(
- "diskQuota" => "DiskQuota",
- "rAM" => "RAM",
- );
- public $diskQuota;
- public $rAM;
- public $kind;
- public $region;
- public $tier;
-
-
- public function setDiskQuota($diskQuota)
- {
- $this->diskQuota = $diskQuota;
- }
- public function getDiskQuota()
- {
- return $this->diskQuota;
- }
- public function setRAM($rAM)
- {
- $this->rAM = $rAM;
- }
- public function getRAM()
- {
- return $this->rAM;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setTier($tier)
- {
- $this->tier = $tier;
- }
- public function getTier()
- {
- return $this->tier;
- }
-}
-
-class Postman_Google_Service_SQLAdmin_TiersListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SQLAdmin_Tier';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/ShoppingContent.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/ShoppingContent.php
deleted file mode 100644
index ef7050f..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/ShoppingContent.php
+++ /dev/null
@@ -1,4309 +0,0 @@
-
- * Manage product items, inventory, and Merchant Center accounts for Google
- * Shopping.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_ShoppingContent extends Postman_Google_Service -{ - /** Manage your product listings and accounts for Google Shopping. */ - const CONTENT = - "https://www.googleapis.com/auth/content"; - - public $accounts; - public $accountstatuses; - public $datafeeds; - public $datafeedstatuses; - public $inventory; - public $products; - public $productstatuses; - - - /** - * Constructs the internal representation of the ShoppingContent service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'content/v2/'; - $this->version = 'v2'; - $this->serviceName = 'content'; - - $this->accounts = new Postman_Google_Service_ShoppingContent_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'accounts/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/accounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accountstatuses = new Postman_Google_Service_ShoppingContent_Accountstatuses_Resource( - $this, - $this->serviceName, - 'accountstatuses', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'accountstatuses/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/accountstatuses/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/accountstatuses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->datafeeds = new Postman_Google_Service_ShoppingContent_Datafeeds_Resource( - $this, - $this->serviceName, - 'datafeeds', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'datafeeds/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/datafeeds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/datafeeds', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->datafeedstatuses = new Postman_Google_Service_ShoppingContent_Datafeedstatuses_Resource( - $this, - $this->serviceName, - 'datafeedstatuses', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'datafeedstatuses/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/datafeedstatuses/{datafeedId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/datafeedstatuses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->inventory = new Postman_Google_Service_ShoppingContent_Inventory_Resource( - $this, - $this->serviceName, - 'inventory', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'inventory/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'set' => array( - 'path' => '{merchantId}/inventory/{storeCode}/products/{productId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'storeCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->products = new Postman_Google_Service_ShoppingContent_Products_Resource( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'products/batch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'dryRun' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => '{merchantId}/products/{productId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dryRun' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => '{merchantId}/products/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/products', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dryRun' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => '{merchantId}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->productstatuses = new Postman_Google_Service_ShoppingContent_Productstatuses_Resource( - $this, - $this->serviceName, - 'productstatuses', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'productstatuses/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/productstatuses/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/productstatuses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $accounts = $contentService->accounts;
- *
- */
-class Postman_Google_Service_ShoppingContent_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves, inserts, updates, and deletes multiple Merchant Center
- * (sub-)accounts in a single request. (accounts.custombatch)
- *
- * @param Postman_Google_AccountsCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_AccountsCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_AccountsCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_AccountsCustomBatchResponse");
- }
-
- /**
- * Deletes a Merchant Center sub-account. (accounts.delete)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $accountId The ID of the account.
- * @param array $optParams Optional parameters.
- */
- public function delete($merchantId, $accountId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a Merchant Center account. (accounts.get)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $accountId The ID of the account.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Account
- */
- public function get($merchantId, $accountId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_ShoppingContent_Account");
- }
-
- /**
- * Creates a Merchant Center sub-account. (accounts.insert)
- *
- * @param string $merchantId The ID of the managing account.
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Account
- */
- public function insert($merchantId, Postman_Google_Service_ShoppingContent_Account $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_ShoppingContent_Account");
- }
-
- /**
- * Lists the sub-accounts in your Merchant Center account.
- * (accounts.listAccounts)
- *
- * @param string $merchantId The ID of the managing account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string maxResults The maximum number of accounts to return in the
- * response, used for paging.
- * @return Postman_Google_Service_ShoppingContent_AccountsListResponse
- */
- public function listAccounts($merchantId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_ShoppingContent_AccountsListResponse");
- }
-
- /**
- * Updates a Merchant Center account. This method supports patch semantics.
- * (accounts.patch)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $accountId The ID of the account.
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Account
- */
- public function patch($merchantId, $accountId, Postman_Google_Service_ShoppingContent_Account $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_ShoppingContent_Account");
- }
-
- /**
- * Updates a Merchant Center account. (accounts.update)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $accountId The ID of the account.
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Account
- */
- public function update($merchantId, $accountId, Postman_Google_Service_ShoppingContent_Account $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_ShoppingContent_Account");
- }
-}
-
-/**
- * The "accountstatuses" collection of methods.
- * Typical usage is:
- *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $accountstatuses = $contentService->accountstatuses;
- *
- */
-class Postman_Google_Service_ShoppingContent_Accountstatuses_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (accountstatuses.custombatch)
- *
- * @param Postman_Google_AccountstatusesCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse");
- }
-
- /**
- * Retrieves the status of a Merchant Center account. (accountstatuses.get)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $accountId The ID of the account.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_AccountStatus
- */
- public function get($merchantId, $accountId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_ShoppingContent_AccountStatus");
- }
-
- /**
- * Lists the statuses of the sub-accounts in your Merchant Center account.
- * (accountstatuses.listAccountstatuses)
- *
- * @param string $merchantId The ID of the managing account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string maxResults The maximum number of account statuses to return
- * in the response, used for paging.
- * @return Postman_Google_Service_ShoppingContent_AccountstatusesListResponse
- */
- public function listAccountstatuses($merchantId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_ShoppingContent_AccountstatusesListResponse");
- }
-}
-
-/**
- * The "datafeeds" collection of methods.
- * Typical usage is:
- *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $datafeeds = $contentService->datafeeds;
- *
- */
-class Postman_Google_Service_ShoppingContent_Datafeeds_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (datafeeds.custombatch)
- *
- * @param Postman_Google_DatafeedsCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchResponse");
- }
-
- /**
- * Deletes a datafeed from your Merchant Center account. (datafeeds.delete)
- *
- * @param string $merchantId
- * @param string $datafeedId
- * @param array $optParams Optional parameters.
- */
- public function delete($merchantId, $datafeedId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a datafeed from your Merchant Center account. (datafeeds.get)
- *
- * @param string $merchantId
- * @param string $datafeedId
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Datafeed
- */
- public function get($merchantId, $datafeedId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_ShoppingContent_Datafeed");
- }
-
- /**
- * Registers a datafeed with your Merchant Center account. (datafeeds.insert)
- *
- * @param string $merchantId
- * @param Postman_Google_Datafeed $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Datafeed
- */
- public function insert($merchantId, Postman_Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_ShoppingContent_Datafeed");
- }
-
- /**
- * Lists the datafeeds in your Merchant Center account.
- * (datafeeds.listDatafeeds)
- *
- * @param string $merchantId The ID of the managing account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string maxResults The maximum number of products to return in the
- * response, used for paging.
- * @return Postman_Google_Service_ShoppingContent_DatafeedsListResponse
- */
- public function listDatafeeds($merchantId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_ShoppingContent_DatafeedsListResponse");
- }
-
- /**
- * Updates a datafeed of your Merchant Center account. This method supports
- * patch semantics. (datafeeds.patch)
- *
- * @param string $merchantId
- * @param string $datafeedId
- * @param Postman_Google_Datafeed $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Datafeed
- */
- public function patch($merchantId, $datafeedId, Postman_Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_ShoppingContent_Datafeed");
- }
-
- /**
- * Updates a datafeed of your Merchant Center account. (datafeeds.update)
- *
- * @param string $merchantId
- * @param string $datafeedId
- * @param Postman_Google_Datafeed $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Datafeed
- */
- public function update($merchantId, $datafeedId, Postman_Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_ShoppingContent_Datafeed");
- }
-}
-
-/**
- * The "datafeedstatuses" collection of methods.
- * Typical usage is:
- *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $datafeedstatuses = $contentService->datafeedstatuses;
- *
- */
-class Postman_Google_Service_ShoppingContent_Datafeedstatuses_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * (datafeedstatuses.custombatch)
- *
- * @param Postman_Google_DatafeedstatusesCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse");
- }
-
- /**
- * Retrieves the status of a datafeed from your Merchant Center account.
- * (datafeedstatuses.get)
- *
- * @param string $merchantId
- * @param string $datafeedId
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_DatafeedStatus
- */
- public function get($merchantId, $datafeedId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_ShoppingContent_DatafeedStatus");
- }
-
- /**
- * Lists the statuses of the datafeeds in your Merchant Center account.
- * (datafeedstatuses.listDatafeedstatuses)
- *
- * @param string $merchantId The ID of the managing account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string maxResults The maximum number of products to return in the
- * response, used for paging.
- * @return Postman_Google_Service_ShoppingContent_DatafeedstatusesListResponse
- */
- public function listDatafeedstatuses($merchantId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_ShoppingContent_DatafeedstatusesListResponse");
- }
-}
-
-/**
- * The "inventory" collection of methods.
- * Typical usage is:
- *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $inventory = $contentService->inventory;
- *
- */
-class Postman_Google_Service_ShoppingContent_Inventory_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Updates price and availability for multiple products or stores in a single
- * request. (inventory.custombatch)
- *
- * @param Postman_Google_InventoryCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_InventoryCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_InventoryCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_InventoryCustomBatchResponse");
- }
-
- /**
- * Updates price and availability of a product in your Merchant Center account.
- * (inventory.set)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $storeCode The code of the store for which to update price and
- * availability. Use online to update price and availability of an online
- * product.
- * @param string $productId The ID of the product for which to update price and
- * availability.
- * @param Postman_Google_InventorySetRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_InventorySetResponse
- */
- public function set($merchantId, $storeCode, $productId, Postman_Google_Service_ShoppingContent_InventorySetRequest $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'storeCode' => $storeCode, 'productId' => $productId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('set', array($params), "Postman_Google_Service_ShoppingContent_InventorySetResponse");
- }
-}
-
-/**
- * The "products" collection of methods.
- * Typical usage is:
- *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $products = $contentService->products;
- *
- */
-class Postman_Google_Service_ShoppingContent_Products_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves, inserts, and deletes multiple products in a single request.
- * (products.custombatch)
- *
- * @param Postman_Google_ProductsCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool dryRun Flag to run the request in dry-run mode.
- * @return Postman_Google_Service_ShoppingContent_ProductsCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_ProductsCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_ProductsCustomBatchResponse");
- }
-
- /**
- * Deletes a product from your Merchant Center account. (products.delete)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $productId The ID of the product.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool dryRun Flag to run the request in dry-run mode.
- */
- public function delete($merchantId, $productId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'productId' => $productId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves a product from your Merchant Center account. (products.get)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $productId The ID of the product.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_Product
- */
- public function get($merchantId, $productId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'productId' => $productId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_ShoppingContent_Product");
- }
-
- /**
- * Uploads a product to your Merchant Center account. (products.insert)
- *
- * @param string $merchantId The ID of the managing account.
- * @param Postman_Google_Product $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool dryRun Flag to run the request in dry-run mode.
- * @return Postman_Google_Service_ShoppingContent_Product
- */
- public function insert($merchantId, Postman_Google_Service_ShoppingContent_Product $postBody, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_ShoppingContent_Product");
- }
-
- /**
- * Lists the products in your Merchant Center account. (products.listProducts)
- *
- * @param string $merchantId The ID of the managing account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string maxResults The maximum number of products to return in the
- * response, used for paging.
- * @return Postman_Google_Service_ShoppingContent_ProductsListResponse
- */
- public function listProducts($merchantId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_ShoppingContent_ProductsListResponse");
- }
-}
-
-/**
- * The "productstatuses" collection of methods.
- * Typical usage is:
- *
- * $contentService = new Postman_Google_Service_ShoppingContent(...);
- * $productstatuses = $contentService->productstatuses;
- *
- */
-class Postman_Google_Service_ShoppingContent_Productstatuses_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets the statuses of multiple products in a single request.
- * (productstatuses.custombatch)
- *
- * @param Postman_Google_ProductstatusesCustomBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse
- */
- public function custombatch(Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('custombatch', array($params), "Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse");
- }
-
- /**
- * Gets the status of a product from your Merchant Center account.
- * (productstatuses.get)
- *
- * @param string $merchantId The ID of the managing account.
- * @param string $productId The ID of the product.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_ShoppingContent_ProductStatus
- */
- public function get($merchantId, $productId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId, 'productId' => $productId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_ShoppingContent_ProductStatus");
- }
-
- /**
- * Lists the statuses of the products in your Merchant Center account.
- * (productstatuses.listProductstatuses)
- *
- * @param string $merchantId The ID of the managing account.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken The token returned by the previous request.
- * @opt_param string maxResults The maximum number of product statuses to return
- * in the response, used for paging.
- * @return Postman_Google_Service_ShoppingContent_ProductstatusesListResponse
- */
- public function listProductstatuses($merchantId, $optParams = array())
- {
- $params = array('merchantId' => $merchantId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_ShoppingContent_ProductstatusesListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_ShoppingContent_Account extends Postman_Google_Collection
-{
- protected $collection_key = 'users';
- protected $internal_gapi_mappings = array(
- );
- public $adultContent;
- protected $adwordsLinksType = 'Postman_Google_Service_ShoppingContent_AccountAdwordsLink';
- protected $adwordsLinksDataType = 'array';
- public $id;
- public $kind;
- public $name;
- public $reviewsUrl;
- public $sellerId;
- protected $usersType = 'Postman_Google_Service_ShoppingContent_AccountUser';
- protected $usersDataType = 'array';
- public $websiteUrl;
-
-
- public function setAdultContent($adultContent)
- {
- $this->adultContent = $adultContent;
- }
- public function getAdultContent()
- {
- return $this->adultContent;
- }
- public function setAdwordsLinks($adwordsLinks)
- {
- $this->adwordsLinks = $adwordsLinks;
- }
- public function getAdwordsLinks()
- {
- return $this->adwordsLinks;
- }
- 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 setReviewsUrl($reviewsUrl)
- {
- $this->reviewsUrl = $reviewsUrl;
- }
- public function getReviewsUrl()
- {
- return $this->reviewsUrl;
- }
- public function setSellerId($sellerId)
- {
- $this->sellerId = $sellerId;
- }
- public function getSellerId()
- {
- return $this->sellerId;
- }
- public function setUsers($users)
- {
- $this->users = $users;
- }
- public function getUsers()
- {
- return $this->users;
- }
- public function setWebsiteUrl($websiteUrl)
- {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl()
- {
- return $this->websiteUrl;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountAdwordsLink extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $adwordsId;
- public $status;
-
-
- public function setAdwordsId($adwordsId)
- {
- $this->adwordsId = $adwordsId;
- }
- public function getAdwordsId()
- {
- return $this->adwordsId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'dataQualityIssues';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $dataQualityIssuesType = 'Postman_Google_Service_ShoppingContent_AccountStatusDataQualityIssue';
- protected $dataQualityIssuesDataType = 'array';
- public $kind;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setDataQualityIssues($dataQualityIssues)
- {
- $this->dataQualityIssues = $dataQualityIssues;
- }
- public function getDataQualityIssues()
- {
- return $this->dataQualityIssues;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountStatusDataQualityIssue extends Postman_Google_Collection
-{
- protected $collection_key = 'exampleItems';
- protected $internal_gapi_mappings = array(
- );
- public $country;
- public $displayedValue;
- protected $exampleItemsType = 'Postman_Google_Service_ShoppingContent_AccountStatusExampleItem';
- protected $exampleItemsDataType = 'array';
- public $id;
- public $lastChecked;
- public $numItems;
- public $severity;
- public $submittedValue;
-
-
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setDisplayedValue($displayedValue)
- {
- $this->displayedValue = $displayedValue;
- }
- public function getDisplayedValue()
- {
- return $this->displayedValue;
- }
- public function setExampleItems($exampleItems)
- {
- $this->exampleItems = $exampleItems;
- }
- public function getExampleItems()
- {
- return $this->exampleItems;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLastChecked($lastChecked)
- {
- $this->lastChecked = $lastChecked;
- }
- public function getLastChecked()
- {
- return $this->lastChecked;
- }
- public function setNumItems($numItems)
- {
- $this->numItems = $numItems;
- }
- public function getNumItems()
- {
- return $this->numItems;
- }
- public function setSeverity($severity)
- {
- $this->severity = $severity;
- }
- public function getSeverity()
- {
- return $this->severity;
- }
- public function setSubmittedValue($submittedValue)
- {
- $this->submittedValue = $submittedValue;
- }
- public function getSubmittedValue()
- {
- return $this->submittedValue;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountStatusExampleItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $itemId;
- public $link;
- public $submittedValue;
- public $title;
- public $valueOnLandingPage;
-
-
- public function setItemId($itemId)
- {
- $this->itemId = $itemId;
- }
- public function getItemId()
- {
- return $this->itemId;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setSubmittedValue($submittedValue)
- {
- $this->submittedValue = $submittedValue;
- }
- public function getSubmittedValue()
- {
- return $this->submittedValue;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setValueOnLandingPage($valueOnLandingPage)
- {
- $this->valueOnLandingPage = $valueOnLandingPage;
- }
- public function getValueOnLandingPage()
- {
- return $this->valueOnLandingPage;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountUser extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $admin;
- public $emailAddress;
-
-
- public function setAdmin($admin)
- {
- $this->admin = $admin;
- }
- public function getAdmin()
- {
- return $this->admin;
- }
- public function setEmailAddress($emailAddress)
- {
- $this->emailAddress = $emailAddress;
- }
- public function getEmailAddress()
- {
- return $this->emailAddress;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountsCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_AccountsCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountsCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accountType = 'Postman_Google_Service_ShoppingContent_Account';
- protected $accountDataType = '';
- public $accountId;
- public $batchId;
- public $merchantId;
- public $method;
-
-
- public function setAccount(Postman_Google_Service_ShoppingContent_Account $account)
- {
- $this->account = $account;
- }
- public function getAccount()
- {
- return $this->account;
- }
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountsCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_AccountsCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountsCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accountType = 'Postman_Google_Service_ShoppingContent_Account';
- protected $accountDataType = '';
- public $batchId;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
- public $kind;
-
-
- public function setAccount(Postman_Google_Service_ShoppingContent_Account $account)
- {
- $this->account = $account;
- }
- public function getAccount()
- {
- return $this->account;
- }
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_ShoppingContent_Account';
- protected $resourcesDataType = 'array';
-
-
- 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;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $batchId;
- public $merchantId;
- public $method;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountstatusesCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accountStatusType = 'Postman_Google_Service_ShoppingContent_AccountStatus';
- protected $accountStatusDataType = '';
- public $batchId;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
-
-
- public function setAccountStatus(Postman_Google_Service_ShoppingContent_AccountStatus $accountStatus)
- {
- $this->accountStatus = $accountStatus;
- }
- public function getAccountStatus()
- {
- return $this->accountStatus;
- }
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_AccountstatusesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_ShoppingContent_AccountStatus';
- protected $resourcesDataType = 'array';
-
-
- 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;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_Datafeed extends Postman_Google_Collection
-{
- protected $collection_key = 'intendedDestinations';
- protected $internal_gapi_mappings = array(
- );
- public $attributeLanguage;
- public $contentLanguage;
- public $contentType;
- protected $fetchScheduleType = 'Postman_Google_Service_ShoppingContent_DatafeedFetchSchedule';
- protected $fetchScheduleDataType = '';
- public $fileName;
- protected $formatType = 'Postman_Google_Service_ShoppingContent_DatafeedFormat';
- protected $formatDataType = '';
- public $id;
- public $intendedDestinations;
- public $kind;
- public $name;
- public $targetCountry;
-
-
- public function setAttributeLanguage($attributeLanguage)
- {
- $this->attributeLanguage = $attributeLanguage;
- }
- public function getAttributeLanguage()
- {
- return $this->attributeLanguage;
- }
- public function setContentLanguage($contentLanguage)
- {
- $this->contentLanguage = $contentLanguage;
- }
- public function getContentLanguage()
- {
- return $this->contentLanguage;
- }
- public function setContentType($contentType)
- {
- $this->contentType = $contentType;
- }
- public function getContentType()
- {
- return $this->contentType;
- }
- public function setFetchSchedule(Postman_Google_Service_ShoppingContent_DatafeedFetchSchedule $fetchSchedule)
- {
- $this->fetchSchedule = $fetchSchedule;
- }
- public function getFetchSchedule()
- {
- return $this->fetchSchedule;
- }
- public function setFileName($fileName)
- {
- $this->fileName = $fileName;
- }
- public function getFileName()
- {
- return $this->fileName;
- }
- public function setFormat(Postman_Google_Service_ShoppingContent_DatafeedFormat $format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIntendedDestinations($intendedDestinations)
- {
- $this->intendedDestinations = $intendedDestinations;
- }
- public function getIntendedDestinations()
- {
- return $this->intendedDestinations;
- }
- 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 setTargetCountry($targetCountry)
- {
- $this->targetCountry = $targetCountry;
- }
- public function getTargetCountry()
- {
- return $this->targetCountry;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedFetchSchedule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $dayOfMonth;
- public $fetchUrl;
- public $hour;
- public $password;
- public $timeZone;
- public $username;
- public $weekday;
-
-
- public function setDayOfMonth($dayOfMonth)
- {
- $this->dayOfMonth = $dayOfMonth;
- }
- public function getDayOfMonth()
- {
- return $this->dayOfMonth;
- }
- public function setFetchUrl($fetchUrl)
- {
- $this->fetchUrl = $fetchUrl;
- }
- public function getFetchUrl()
- {
- return $this->fetchUrl;
- }
- public function setHour($hour)
- {
- $this->hour = $hour;
- }
- public function getHour()
- {
- return $this->hour;
- }
- public function setPassword($password)
- {
- $this->password = $password;
- }
- public function getPassword()
- {
- return $this->password;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
- public function setUsername($username)
- {
- $this->username = $username;
- }
- public function getUsername()
- {
- return $this->username;
- }
- public function setWeekday($weekday)
- {
- $this->weekday = $weekday;
- }
- public function getWeekday()
- {
- return $this->weekday;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedFormat extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnDelimiter;
- public $fileEncoding;
- public $quotingMode;
-
-
- public function setColumnDelimiter($columnDelimiter)
- {
- $this->columnDelimiter = $columnDelimiter;
- }
- public function getColumnDelimiter()
- {
- return $this->columnDelimiter;
- }
- public function setFileEncoding($fileEncoding)
- {
- $this->fileEncoding = $fileEncoding;
- }
- public function getFileEncoding()
- {
- return $this->fileEncoding;
- }
- public function setQuotingMode($quotingMode)
- {
- $this->quotingMode = $quotingMode;
- }
- public function getQuotingMode()
- {
- return $this->quotingMode;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $datafeedId;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_DatafeedStatusError';
- protected $errorsDataType = 'array';
- public $itemsTotal;
- public $itemsValid;
- public $kind;
- public $processingStatus;
- protected $warningsType = 'Postman_Google_Service_ShoppingContent_DatafeedStatusError';
- protected $warningsDataType = 'array';
-
-
- public function setDatafeedId($datafeedId)
- {
- $this->datafeedId = $datafeedId;
- }
- public function getDatafeedId()
- {
- return $this->datafeedId;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setItemsTotal($itemsTotal)
- {
- $this->itemsTotal = $itemsTotal;
- }
- public function getItemsTotal()
- {
- return $this->itemsTotal;
- }
- public function setItemsValid($itemsValid)
- {
- $this->itemsValid = $itemsValid;
- }
- public function getItemsValid()
- {
- return $this->itemsValid;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedStatusError extends Postman_Google_Collection
-{
- protected $collection_key = 'examples';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $count;
- protected $examplesType = 'Postman_Google_Service_ShoppingContent_DatafeedStatusExample';
- protected $examplesDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setExamples($examples)
- {
- $this->examples = $examples;
- }
- public function getExamples()
- {
- return $this->examples;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedStatusExample extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $itemId;
- public $lineNumber;
- public $value;
-
-
- public function setItemId($itemId)
- {
- $this->itemId = $itemId;
- }
- public function getItemId()
- {
- return $this->itemId;
- }
- public function setLineNumber($lineNumber)
- {
- $this->lineNumber = $lineNumber;
- }
- public function getLineNumber()
- {
- return $this->lineNumber;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $datafeedType = 'Postman_Google_Service_ShoppingContent_Datafeed';
- protected $datafeedDataType = '';
- public $datafeedId;
- public $merchantId;
- public $method;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setDatafeed(Postman_Google_Service_ShoppingContent_Datafeed $datafeed)
- {
- $this->datafeed = $datafeed;
- }
- public function getDatafeed()
- {
- return $this->datafeed;
- }
- public function setDatafeedId($datafeedId)
- {
- $this->datafeedId = $datafeedId;
- }
- public function getDatafeedId()
- {
- return $this->datafeedId;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedsCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $datafeedType = 'Postman_Google_Service_ShoppingContent_Datafeed';
- protected $datafeedDataType = '';
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setDatafeed(Postman_Google_Service_ShoppingContent_Datafeed $datafeed)
- {
- $this->datafeed = $datafeed;
- }
- public function getDatafeed()
- {
- return $this->datafeed;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_ShoppingContent_Datafeed';
- protected $resourcesDataType = 'array';
-
-
- 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;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- public $datafeedId;
- public $merchantId;
- public $method;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setDatafeedId($datafeedId)
- {
- $this->datafeedId = $datafeedId;
- }
- public function getDatafeedId()
- {
- return $this->datafeedId;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $datafeedStatusType = 'Postman_Google_Service_ShoppingContent_DatafeedStatus';
- protected $datafeedStatusDataType = '';
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setDatafeedStatus(Postman_Google_Service_ShoppingContent_DatafeedStatus $datafeedStatus)
- {
- $this->datafeedStatus = $datafeedStatus;
- }
- public function getDatafeedStatus()
- {
- return $this->datafeedStatus;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_DatafeedstatusesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_ShoppingContent_DatafeedStatus';
- protected $resourcesDataType = 'array';
-
-
- 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;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_Error extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $domain;
- public $message;
- public $reason;
-
-
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_Errors extends Postman_Google_Collection
-{
- protected $collection_key = 'errors';
- protected $internal_gapi_mappings = array(
- );
- public $code;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Error';
- protected $errorsDataType = 'array';
- public $message;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setMessage($message)
- {
- $this->message = $message;
- }
- public function getMessage()
- {
- return $this->message;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_Inventory extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $availability;
- public $kind;
- protected $priceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $priceDataType = '';
- public $quantity;
- protected $salePriceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $salePriceDataType = '';
- public $salePriceEffectiveDate;
-
-
- public function setAvailability($availability)
- {
- $this->availability = $availability;
- }
- public function getAvailability()
- {
- return $this->availability;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPrice(Postman_Google_Service_ShoppingContent_Price $price)
- {
- $this->price = $price;
- }
- public function getPrice()
- {
- return $this->price;
- }
- public function setQuantity($quantity)
- {
- $this->quantity = $quantity;
- }
- public function getQuantity()
- {
- return $this->quantity;
- }
- public function setSalePrice(Postman_Google_Service_ShoppingContent_Price $salePrice)
- {
- $this->salePrice = $salePrice;
- }
- public function getSalePrice()
- {
- return $this->salePrice;
- }
- public function setSalePriceEffectiveDate($salePriceEffectiveDate)
- {
- $this->salePriceEffectiveDate = $salePriceEffectiveDate;
- }
- public function getSalePriceEffectiveDate()
- {
- return $this->salePriceEffectiveDate;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_InventoryCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_InventoryCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_InventoryCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $inventoryType = 'Postman_Google_Service_ShoppingContent_Inventory';
- protected $inventoryDataType = '';
- public $merchantId;
- public $productId;
- public $storeCode;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setInventory(Postman_Google_Service_ShoppingContent_Inventory $inventory)
- {
- $this->inventory = $inventory;
- }
- public function getInventory()
- {
- return $this->inventory;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setProductId($productId)
- {
- $this->productId = $productId;
- }
- public function getProductId()
- {
- return $this->productId;
- }
- public function setStoreCode($storeCode)
- {
- $this->storeCode = $storeCode;
- }
- public function getStoreCode()
- {
- return $this->storeCode;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_InventoryCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_InventoryCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_InventoryCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
- public $kind;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_InventorySetRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $availability;
- protected $priceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $priceDataType = '';
- public $quantity;
- protected $salePriceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $salePriceDataType = '';
- public $salePriceEffectiveDate;
-
-
- public function setAvailability($availability)
- {
- $this->availability = $availability;
- }
- public function getAvailability()
- {
- return $this->availability;
- }
- public function setPrice(Postman_Google_Service_ShoppingContent_Price $price)
- {
- $this->price = $price;
- }
- public function getPrice()
- {
- return $this->price;
- }
- public function setQuantity($quantity)
- {
- $this->quantity = $quantity;
- }
- public function getQuantity()
- {
- return $this->quantity;
- }
- public function setSalePrice(Postman_Google_Service_ShoppingContent_Price $salePrice)
- {
- $this->salePrice = $salePrice;
- }
- public function getSalePrice()
- {
- return $this->salePrice;
- }
- public function setSalePriceEffectiveDate($salePriceEffectiveDate)
- {
- $this->salePriceEffectiveDate = $salePriceEffectiveDate;
- }
- public function getSalePriceEffectiveDate()
- {
- return $this->salePriceEffectiveDate;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_InventorySetResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_LoyaltyPoints extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $pointsValue;
- public $ratio;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setPointsValue($pointsValue)
- {
- $this->pointsValue = $pointsValue;
- }
- public function getPointsValue()
- {
- return $this->pointsValue;
- }
- public function setRatio($ratio)
- {
- $this->ratio = $ratio;
- }
- public function getRatio()
- {
- return $this->ratio;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_Price extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $currency;
- public $value;
-
-
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- }
- public function getCurrency()
- {
- return $this->currency;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_Product extends Postman_Google_Collection
-{
- protected $collection_key = 'warnings';
- protected $internal_gapi_mappings = array(
- );
- public $additionalImageLinks;
- public $adult;
- public $adwordsGrouping;
- public $adwordsLabels;
- public $adwordsRedirect;
- public $ageGroup;
- public $availability;
- public $availabilityDate;
- public $brand;
- public $channel;
- public $color;
- public $condition;
- public $contentLanguage;
- protected $customAttributesType = 'Postman_Google_Service_ShoppingContent_ProductCustomAttribute';
- protected $customAttributesDataType = 'array';
- protected $customGroupsType = 'Postman_Google_Service_ShoppingContent_ProductCustomGroup';
- protected $customGroupsDataType = 'array';
- public $customLabel0;
- public $customLabel1;
- public $customLabel2;
- public $customLabel3;
- public $customLabel4;
- public $description;
- protected $destinationsType = 'Postman_Google_Service_ShoppingContent_ProductDestination';
- protected $destinationsDataType = 'array';
- public $energyEfficiencyClass;
- public $expirationDate;
- public $gender;
- public $googleProductCategory;
- public $gtin;
- public $id;
- public $identifierExists;
- public $imageLink;
- protected $installmentType = 'Postman_Google_Service_ShoppingContent_ProductInstallment';
- protected $installmentDataType = '';
- public $isBundle;
- public $itemGroupId;
- public $kind;
- public $link;
- protected $loyaltyPointsType = 'Postman_Google_Service_ShoppingContent_LoyaltyPoints';
- protected $loyaltyPointsDataType = '';
- public $material;
- public $mobileLink;
- public $mpn;
- public $multipack;
- public $offerId;
- public $onlineOnly;
- public $pattern;
- protected $priceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $priceDataType = '';
- public $productType;
- protected $salePriceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $salePriceDataType = '';
- public $salePriceEffectiveDate;
- protected $shippingType = 'Postman_Google_Service_ShoppingContent_ProductShipping';
- protected $shippingDataType = 'array';
- public $shippingLabel;
- protected $shippingWeightType = 'Postman_Google_Service_ShoppingContent_ProductShippingWeight';
- protected $shippingWeightDataType = '';
- public $sizeSystem;
- public $sizeType;
- public $sizes;
- public $targetCountry;
- protected $taxesType = 'Postman_Google_Service_ShoppingContent_ProductTax';
- protected $taxesDataType = 'array';
- public $title;
- protected $unitPricingBaseMeasureType = 'Postman_Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure';
- protected $unitPricingBaseMeasureDataType = '';
- protected $unitPricingMeasureType = 'Postman_Google_Service_ShoppingContent_ProductUnitPricingMeasure';
- protected $unitPricingMeasureDataType = '';
- public $validatedDestinations;
- protected $warningsType = 'Postman_Google_Service_ShoppingContent_Error';
- protected $warningsDataType = 'array';
-
-
- public function setAdditionalImageLinks($additionalImageLinks)
- {
- $this->additionalImageLinks = $additionalImageLinks;
- }
- public function getAdditionalImageLinks()
- {
- return $this->additionalImageLinks;
- }
- public function setAdult($adult)
- {
- $this->adult = $adult;
- }
- public function getAdult()
- {
- return $this->adult;
- }
- public function setAdwordsGrouping($adwordsGrouping)
- {
- $this->adwordsGrouping = $adwordsGrouping;
- }
- public function getAdwordsGrouping()
- {
- return $this->adwordsGrouping;
- }
- public function setAdwordsLabels($adwordsLabels)
- {
- $this->adwordsLabels = $adwordsLabels;
- }
- public function getAdwordsLabels()
- {
- return $this->adwordsLabels;
- }
- public function setAdwordsRedirect($adwordsRedirect)
- {
- $this->adwordsRedirect = $adwordsRedirect;
- }
- public function getAdwordsRedirect()
- {
- return $this->adwordsRedirect;
- }
- public function setAgeGroup($ageGroup)
- {
- $this->ageGroup = $ageGroup;
- }
- public function getAgeGroup()
- {
- return $this->ageGroup;
- }
- public function setAvailability($availability)
- {
- $this->availability = $availability;
- }
- public function getAvailability()
- {
- return $this->availability;
- }
- public function setAvailabilityDate($availabilityDate)
- {
- $this->availabilityDate = $availabilityDate;
- }
- public function getAvailabilityDate()
- {
- return $this->availabilityDate;
- }
- public function setBrand($brand)
- {
- $this->brand = $brand;
- }
- public function getBrand()
- {
- return $this->brand;
- }
- public function setChannel($channel)
- {
- $this->channel = $channel;
- }
- public function getChannel()
- {
- return $this->channel;
- }
- public function setColor($color)
- {
- $this->color = $color;
- }
- public function getColor()
- {
- return $this->color;
- }
- public function setCondition($condition)
- {
- $this->condition = $condition;
- }
- public function getCondition()
- {
- return $this->condition;
- }
- public function setContentLanguage($contentLanguage)
- {
- $this->contentLanguage = $contentLanguage;
- }
- public function getContentLanguage()
- {
- return $this->contentLanguage;
- }
- public function setCustomAttributes($customAttributes)
- {
- $this->customAttributes = $customAttributes;
- }
- public function getCustomAttributes()
- {
- return $this->customAttributes;
- }
- public function setCustomGroups($customGroups)
- {
- $this->customGroups = $customGroups;
- }
- public function getCustomGroups()
- {
- return $this->customGroups;
- }
- public function setCustomLabel0($customLabel0)
- {
- $this->customLabel0 = $customLabel0;
- }
- public function getCustomLabel0()
- {
- return $this->customLabel0;
- }
- public function setCustomLabel1($customLabel1)
- {
- $this->customLabel1 = $customLabel1;
- }
- public function getCustomLabel1()
- {
- return $this->customLabel1;
- }
- public function setCustomLabel2($customLabel2)
- {
- $this->customLabel2 = $customLabel2;
- }
- public function getCustomLabel2()
- {
- return $this->customLabel2;
- }
- public function setCustomLabel3($customLabel3)
- {
- $this->customLabel3 = $customLabel3;
- }
- public function getCustomLabel3()
- {
- return $this->customLabel3;
- }
- public function setCustomLabel4($customLabel4)
- {
- $this->customLabel4 = $customLabel4;
- }
- public function getCustomLabel4()
- {
- return $this->customLabel4;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setDestinations($destinations)
- {
- $this->destinations = $destinations;
- }
- public function getDestinations()
- {
- return $this->destinations;
- }
- public function setEnergyEfficiencyClass($energyEfficiencyClass)
- {
- $this->energyEfficiencyClass = $energyEfficiencyClass;
- }
- public function getEnergyEfficiencyClass()
- {
- return $this->energyEfficiencyClass;
- }
- public function setExpirationDate($expirationDate)
- {
- $this->expirationDate = $expirationDate;
- }
- public function getExpirationDate()
- {
- return $this->expirationDate;
- }
- public function setGender($gender)
- {
- $this->gender = $gender;
- }
- public function getGender()
- {
- return $this->gender;
- }
- public function setGoogleProductCategory($googleProductCategory)
- {
- $this->googleProductCategory = $googleProductCategory;
- }
- public function getGoogleProductCategory()
- {
- return $this->googleProductCategory;
- }
- public function setGtin($gtin)
- {
- $this->gtin = $gtin;
- }
- public function getGtin()
- {
- return $this->gtin;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setIdentifierExists($identifierExists)
- {
- $this->identifierExists = $identifierExists;
- }
- public function getIdentifierExists()
- {
- return $this->identifierExists;
- }
- public function setImageLink($imageLink)
- {
- $this->imageLink = $imageLink;
- }
- public function getImageLink()
- {
- return $this->imageLink;
- }
- public function setInstallment(Postman_Google_Service_ShoppingContent_ProductInstallment $installment)
- {
- $this->installment = $installment;
- }
- public function getInstallment()
- {
- return $this->installment;
- }
- public function setIsBundle($isBundle)
- {
- $this->isBundle = $isBundle;
- }
- public function getIsBundle()
- {
- return $this->isBundle;
- }
- public function setItemGroupId($itemGroupId)
- {
- $this->itemGroupId = $itemGroupId;
- }
- public function getItemGroupId()
- {
- return $this->itemGroupId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setLoyaltyPoints(Postman_Google_Service_ShoppingContent_LoyaltyPoints $loyaltyPoints)
- {
- $this->loyaltyPoints = $loyaltyPoints;
- }
- public function getLoyaltyPoints()
- {
- return $this->loyaltyPoints;
- }
- public function setMaterial($material)
- {
- $this->material = $material;
- }
- public function getMaterial()
- {
- return $this->material;
- }
- public function setMobileLink($mobileLink)
- {
- $this->mobileLink = $mobileLink;
- }
- public function getMobileLink()
- {
- return $this->mobileLink;
- }
- public function setMpn($mpn)
- {
- $this->mpn = $mpn;
- }
- public function getMpn()
- {
- return $this->mpn;
- }
- public function setMultipack($multipack)
- {
- $this->multipack = $multipack;
- }
- public function getMultipack()
- {
- return $this->multipack;
- }
- public function setOfferId($offerId)
- {
- $this->offerId = $offerId;
- }
- public function getOfferId()
- {
- return $this->offerId;
- }
- public function setOnlineOnly($onlineOnly)
- {
- $this->onlineOnly = $onlineOnly;
- }
- public function getOnlineOnly()
- {
- return $this->onlineOnly;
- }
- public function setPattern($pattern)
- {
- $this->pattern = $pattern;
- }
- public function getPattern()
- {
- return $this->pattern;
- }
- public function setPrice(Postman_Google_Service_ShoppingContent_Price $price)
- {
- $this->price = $price;
- }
- public function getPrice()
- {
- return $this->price;
- }
- public function setProductType($productType)
- {
- $this->productType = $productType;
- }
- public function getProductType()
- {
- return $this->productType;
- }
- public function setSalePrice(Postman_Google_Service_ShoppingContent_Price $salePrice)
- {
- $this->salePrice = $salePrice;
- }
- public function getSalePrice()
- {
- return $this->salePrice;
- }
- public function setSalePriceEffectiveDate($salePriceEffectiveDate)
- {
- $this->salePriceEffectiveDate = $salePriceEffectiveDate;
- }
- public function getSalePriceEffectiveDate()
- {
- return $this->salePriceEffectiveDate;
- }
- public function setShipping($shipping)
- {
- $this->shipping = $shipping;
- }
- public function getShipping()
- {
- return $this->shipping;
- }
- public function setShippingLabel($shippingLabel)
- {
- $this->shippingLabel = $shippingLabel;
- }
- public function getShippingLabel()
- {
- return $this->shippingLabel;
- }
- public function setShippingWeight(Postman_Google_Service_ShoppingContent_ProductShippingWeight $shippingWeight)
- {
- $this->shippingWeight = $shippingWeight;
- }
- public function getShippingWeight()
- {
- return $this->shippingWeight;
- }
- public function setSizeSystem($sizeSystem)
- {
- $this->sizeSystem = $sizeSystem;
- }
- public function getSizeSystem()
- {
- return $this->sizeSystem;
- }
- public function setSizeType($sizeType)
- {
- $this->sizeType = $sizeType;
- }
- public function getSizeType()
- {
- return $this->sizeType;
- }
- public function setSizes($sizes)
- {
- $this->sizes = $sizes;
- }
- public function getSizes()
- {
- return $this->sizes;
- }
- public function setTargetCountry($targetCountry)
- {
- $this->targetCountry = $targetCountry;
- }
- public function getTargetCountry()
- {
- return $this->targetCountry;
- }
- public function setTaxes($taxes)
- {
- $this->taxes = $taxes;
- }
- public function getTaxes()
- {
- return $this->taxes;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUnitPricingBaseMeasure(Postman_Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure $unitPricingBaseMeasure)
- {
- $this->unitPricingBaseMeasure = $unitPricingBaseMeasure;
- }
- public function getUnitPricingBaseMeasure()
- {
- return $this->unitPricingBaseMeasure;
- }
- public function setUnitPricingMeasure(Postman_Google_Service_ShoppingContent_ProductUnitPricingMeasure $unitPricingMeasure)
- {
- $this->unitPricingMeasure = $unitPricingMeasure;
- }
- public function getUnitPricingMeasure()
- {
- return $this->unitPricingMeasure;
- }
- public function setValidatedDestinations($validatedDestinations)
- {
- $this->validatedDestinations = $validatedDestinations;
- }
- public function getValidatedDestinations()
- {
- return $this->validatedDestinations;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductCustomAttribute extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $type;
- public $unit;
- public $value;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUnit($unit)
- {
- $this->unit = $unit;
- }
- public function getUnit()
- {
- return $this->unit;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductCustomGroup extends Postman_Google_Collection
-{
- protected $collection_key = 'attributes';
- protected $internal_gapi_mappings = array(
- );
- protected $attributesType = 'Postman_Google_Service_ShoppingContent_ProductCustomAttribute';
- protected $attributesDataType = 'array';
- public $name;
-
-
- public function setAttributes($attributes)
- {
- $this->attributes = $attributes;
- }
- public function getAttributes()
- {
- return $this->attributes;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductDestination extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $destinationName;
- public $intention;
-
-
- public function setDestinationName($destinationName)
- {
- $this->destinationName = $destinationName;
- }
- public function getDestinationName()
- {
- return $this->destinationName;
- }
- public function setIntention($intention)
- {
- $this->intention = $intention;
- }
- public function getIntention()
- {
- return $this->intention;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductInstallment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $amountType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $amountDataType = '';
- public $months;
-
-
- public function setAmount(Postman_Google_Service_ShoppingContent_Price $amount)
- {
- $this->amount = $amount;
- }
- public function getAmount()
- {
- return $this->amount;
- }
- public function setMonths($months)
- {
- $this->months = $months;
- }
- public function getMonths()
- {
- return $this->months;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductShipping extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $country;
- public $locationGroupName;
- public $locationId;
- public $postalCode;
- protected $priceType = 'Postman_Google_Service_ShoppingContent_Price';
- protected $priceDataType = '';
- public $region;
- public $service;
-
-
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setLocationGroupName($locationGroupName)
- {
- $this->locationGroupName = $locationGroupName;
- }
- public function getLocationGroupName()
- {
- return $this->locationGroupName;
- }
- public function setLocationId($locationId)
- {
- $this->locationId = $locationId;
- }
- public function getLocationId()
- {
- return $this->locationId;
- }
- public function setPostalCode($postalCode)
- {
- $this->postalCode = $postalCode;
- }
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- public function setPrice(Postman_Google_Service_ShoppingContent_Price $price)
- {
- $this->price = $price;
- }
- public function getPrice()
- {
- return $this->price;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setService($service)
- {
- $this->service = $service;
- }
- public function getService()
- {
- return $this->service;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductShippingWeight extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $unit;
- public $value;
-
-
- public function setUnit($unit)
- {
- $this->unit = $unit;
- }
- public function getUnit()
- {
- return $this->unit;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductStatus extends Postman_Google_Collection
-{
- protected $collection_key = 'destinationStatuses';
- protected $internal_gapi_mappings = array(
- );
- protected $dataQualityIssuesType = 'Postman_Google_Service_ShoppingContent_ProductStatusDataQualityIssue';
- protected $dataQualityIssuesDataType = 'array';
- protected $destinationStatusesType = 'Postman_Google_Service_ShoppingContent_ProductStatusDestinationStatus';
- protected $destinationStatusesDataType = 'array';
- public $kind;
- public $link;
- public $productId;
- public $title;
-
-
- public function setDataQualityIssues($dataQualityIssues)
- {
- $this->dataQualityIssues = $dataQualityIssues;
- }
- public function getDataQualityIssues()
- {
- return $this->dataQualityIssues;
- }
- public function setDestinationStatuses($destinationStatuses)
- {
- $this->destinationStatuses = $destinationStatuses;
- }
- public function getDestinationStatuses()
- {
- return $this->destinationStatuses;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setProductId($productId)
- {
- $this->productId = $productId;
- }
- public function getProductId()
- {
- return $this->productId;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductStatusDataQualityIssue extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $detail;
- public $fetchStatus;
- public $id;
- public $location;
- public $timestamp;
- public $valueOnLandingPage;
- public $valueProvided;
-
-
- public function setDetail($detail)
- {
- $this->detail = $detail;
- }
- public function getDetail()
- {
- return $this->detail;
- }
- public function setFetchStatus($fetchStatus)
- {
- $this->fetchStatus = $fetchStatus;
- }
- public function getFetchStatus()
- {
- return $this->fetchStatus;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
- public function setValueOnLandingPage($valueOnLandingPage)
- {
- $this->valueOnLandingPage = $valueOnLandingPage;
- }
- public function getValueOnLandingPage()
- {
- return $this->valueOnLandingPage;
- }
- public function setValueProvided($valueProvided)
- {
- $this->valueProvided = $valueProvided;
- }
- public function getValueProvided()
- {
- return $this->valueProvided;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductStatusDestinationStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $approvalStatus;
- public $destination;
- public $intention;
-
-
- public function setApprovalStatus($approvalStatus)
- {
- $this->approvalStatus = $approvalStatus;
- }
- public function getApprovalStatus()
- {
- return $this->approvalStatus;
- }
- public function setDestination($destination)
- {
- $this->destination = $destination;
- }
- public function getDestination()
- {
- return $this->destination;
- }
- public function setIntention($intention)
- {
- $this->intention = $intention;
- }
- public function getIntention()
- {
- return $this->intention;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductTax extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $country;
- public $locationId;
- public $postalCode;
- public $rate;
- public $region;
- public $taxShip;
-
-
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setLocationId($locationId)
- {
- $this->locationId = $locationId;
- }
- public function getLocationId()
- {
- return $this->locationId;
- }
- public function setPostalCode($postalCode)
- {
- $this->postalCode = $postalCode;
- }
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- public function setRate($rate)
- {
- $this->rate = $rate;
- }
- public function getRate()
- {
- return $this->rate;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setTaxShip($taxShip)
- {
- $this->taxShip = $taxShip;
- }
- public function getTaxShip()
- {
- return $this->taxShip;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $unit;
- public $value;
-
-
- public function setUnit($unit)
- {
- $this->unit = $unit;
- }
- public function getUnit()
- {
- return $this->unit;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductUnitPricingMeasure extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $unit;
- public $value;
-
-
- public function setUnit($unit)
- {
- $this->unit = $unit;
- }
- public function getUnit()
- {
- return $this->unit;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductsCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_ProductsCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductsCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- public $merchantId;
- public $method;
- protected $productType = 'Postman_Google_Service_ShoppingContent_Product';
- protected $productDataType = '';
- public $productId;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
- public function setProduct(Postman_Google_Service_ShoppingContent_Product $product)
- {
- $this->product = $product;
- }
- public function getProduct()
- {
- return $this->product;
- }
- public function setProductId($productId)
- {
- $this->productId = $productId;
- }
- public function getProductId()
- {
- return $this->productId;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductsCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_ProductsCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductsCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
- public $kind;
- protected $productType = 'Postman_Google_Service_ShoppingContent_Product';
- protected $productDataType = '';
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProduct(Postman_Google_Service_ShoppingContent_Product $product)
- {
- $this->product = $product;
- }
- public function getProduct()
- {
- return $this->product;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_ShoppingContent_Product';
- protected $resourcesDataType = 'array';
-
-
- 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;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequestEntry';
- protected $entriesDataType = 'array';
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchRequestEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- public $merchantId;
- public $method;
- public $productId;
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setMerchantId($merchantId)
- {
- $this->merchantId = $merchantId;
- }
- public function getMerchantId()
- {
- return $this->merchantId;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
- public function setProductId($productId)
- {
- $this->productId = $productId;
- }
- public function getProductId()
- {
- return $this->productId;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- protected $entriesType = 'Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponseEntry';
- protected $entriesDataType = 'array';
- public $kind;
-
-
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductstatusesCustomBatchResponseEntry extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $batchId;
- protected $errorsType = 'Postman_Google_Service_ShoppingContent_Errors';
- protected $errorsDataType = '';
- public $kind;
- protected $productStatusType = 'Postman_Google_Service_ShoppingContent_ProductStatus';
- protected $productStatusDataType = '';
-
-
- public function setBatchId($batchId)
- {
- $this->batchId = $batchId;
- }
- public function getBatchId()
- {
- return $this->batchId;
- }
- public function setErrors(Postman_Google_Service_ShoppingContent_Errors $errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setProductStatus(Postman_Google_Service_ShoppingContent_ProductStatus $productStatus)
- {
- $this->productStatus = $productStatus;
- }
- public function getProductStatus()
- {
- return $this->productStatus;
- }
-}
-
-class Postman_Google_Service_ShoppingContent_ProductstatusesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'resources';
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $nextPageToken;
- protected $resourcesType = 'Postman_Google_Service_ShoppingContent_ProductStatus';
- protected $resourcesDataType = 'array';
-
-
- 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;
- }
- public function setResources($resources)
- {
- $this->resources = $resources;
- }
- public function getResources()
- {
- return $this->resources;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/SiteVerification.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/SiteVerification.php
deleted file mode 100644
index edf6870..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/SiteVerification.php
+++ /dev/null
@@ -1,404 +0,0 @@
-
- * Lets you programatically verify ownership of websites or domains with Google.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_SiteVerification extends Postman_Google_Service -{ - /** Manage the list of sites and domains you control. */ - const SITEVERIFICATION = - "https://www.googleapis.com/auth/siteverification"; - /** Manage your new site verifications with Google. */ - const SITEVERIFICATION_VERIFY_ONLY = - "https://www.googleapis.com/auth/siteverification.verify_only"; - - public $webResource; - - - /** - * Constructs the internal representation of the SiteVerification service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'siteVerification/v1/'; - $this->version = 'v1'; - $this->serviceName = 'siteVerification'; - - $this->webResource = new Postman_Google_Service_SiteVerification_WebResource_Resource( - $this, - $this->serviceName, - 'webResource', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getToken' => array( - 'path' => 'token', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'insert' => array( - 'path' => 'webResource', - 'httpMethod' => 'POST', - 'parameters' => array( - 'verificationMethod' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'webResource', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "webResource" collection of methods. - * Typical usage is: - *
- * $siteVerificationService = new Postman_Google_Service_SiteVerification(...);
- * $webResource = $siteVerificationService->webResource;
- *
- */
-class Postman_Google_Service_SiteVerification_WebResource_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Relinquish ownership of a website or domain. (webResource.delete)
- *
- * @param string $id The id of a verified site or domain.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Get the most current data for a website or domain. (webResource.get)
- *
- * @param string $id The id of a verified site or domain.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource
- */
- public function get($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource");
- }
-
- /**
- * Get a verification token for placing on a website or domain.
- * (webResource.getToken)
- *
- * @param Postman_Google_SiteVerificationWebResourceGettokenRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse
- */
- public function getToken(Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getToken', array($params), "Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse");
- }
-
- /**
- * Attempt verification of a website or domain. (webResource.insert)
- *
- * @param string $verificationMethod The method to use for verifying a site or
- * domain.
- * @param Postman_Google_SiteVerificationWebResourceResource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource
- */
- public function insert($verificationMethod, Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array())
- {
- $params = array('verificationMethod' => $verificationMethod, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource");
- }
-
- /**
- * Get the list of your verified websites and domains.
- * (webResource.listWebResource)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SiteVerification_SiteVerificationWebResourceListResponse
- */
- public function listWebResource($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_SiteVerification_SiteVerificationWebResourceListResponse");
- }
-
- /**
- * Modify the list of owners for your website or domain. This method supports
- * patch semantics. (webResource.patch)
- *
- * @param string $id The id of a verified site or domain.
- * @param Postman_Google_SiteVerificationWebResourceResource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource
- */
- public function patch($id, Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource");
- }
-
- /**
- * Modify the list of owners for your website or domain. (webResource.update)
- *
- * @param string $id The id of a verified site or domain.
- * @param Postman_Google_SiteVerificationWebResourceResource $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource
- */
- public function update($id, Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array())
- {
- $params = array('id' => $id, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource");
- }
-}
-
-
-
-
-class Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $siteType = 'Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequestSite';
- protected $siteDataType = '';
- public $verificationMethod;
-
-
- public function setSite(Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequestSite $site)
- {
- $this->site = $site;
- }
- public function getSite()
- {
- return $this->site;
- }
- public function setVerificationMethod($verificationMethod)
- {
- $this->verificationMethod = $verificationMethod;
- }
- public function getVerificationMethod()
- {
- return $this->verificationMethod;
- }
-}
-
-class Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequestSite extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $identifier;
- public $type;
-
-
- public function setIdentifier($identifier)
- {
- $this->identifier = $identifier;
- }
- public function getIdentifier()
- {
- return $this->identifier;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $method;
- public $token;
-
-
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
-}
-
-class Postman_Google_Service_SiteVerification_SiteVerificationWebResourceListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource';
- protected $itemsDataType = 'array';
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
-}
-
-class Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResource extends Postman_Google_Collection
-{
- protected $collection_key = 'owners';
- protected $internal_gapi_mappings = array(
- );
- public $id;
- public $owners;
- protected $siteType = 'Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite';
- protected $siteDataType = '';
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setOwners($owners)
- {
- $this->owners = $owners;
- }
- public function getOwners()
- {
- return $this->owners;
- }
- public function setSite(Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite $site)
- {
- $this->site = $site;
- }
- public function getSite()
- {
- return $this->site;
- }
-}
-
-class Postman_Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $identifier;
- public $type;
-
-
- public function setIdentifier($identifier)
- {
- $this->identifier = $identifier;
- }
- public function getIdentifier()
- {
- return $this->identifier;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Spectrum.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Spectrum.php
deleted file mode 100644
index 7b86f41..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Spectrum.php
+++ /dev/null
@@ -1,1751 +0,0 @@
-
- * API for spectrum-management functions.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Spectrum extends Postman_Google_Service -{ - - - public $paws; - - - /** - * Constructs the internal representation of the Spectrum service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'spectrum/v1explorer/paws/'; - $this->version = 'v1explorer'; - $this->serviceName = 'spectrum'; - - $this->paws = new Postman_Google_Service_Spectrum_Paws_Resource( - $this, - $this->serviceName, - 'paws', - array( - 'methods' => array( - 'getSpectrum' => array( - 'path' => 'getSpectrum', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getSpectrumBatch' => array( - 'path' => 'getSpectrumBatch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'init' => array( - 'path' => 'init', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'notifySpectrumUse' => array( - 'path' => 'notifySpectrumUse', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'register' => array( - 'path' => 'register', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyDevice' => array( - 'path' => 'verifyDevice', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} - - -/** - * The "paws" collection of methods. - * Typical usage is: - *
- * $spectrumService = new Postman_Google_Service_Spectrum(...);
- * $paws = $spectrumService->paws;
- *
- */
-class Postman_Google_Service_Spectrum_Paws_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Requests information about the available spectrum for a device at a location.
- * Requests from a fixed-mode device must include owner information so the
- * device can be registered with the database. (paws.getSpectrum)
- *
- * @param Postman_Google_PawsGetSpectrumRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Spectrum_PawsGetSpectrumResponse
- */
- public function getSpectrum(Postman_Google_Service_Spectrum_PawsGetSpectrumRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getSpectrum', array($params), "Postman_Google_Service_Spectrum_PawsGetSpectrumResponse");
- }
-
- /**
- * The Google Spectrum Database does not support batch requests, so this method
- * always yields an UNIMPLEMENTED error. (paws.getSpectrumBatch)
- *
- * @param Postman_Google_PawsGetSpectrumBatchRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Spectrum_PawsGetSpectrumBatchResponse
- */
- public function getSpectrumBatch(Postman_Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('getSpectrumBatch', array($params), "Postman_Google_Service_Spectrum_PawsGetSpectrumBatchResponse");
- }
-
- /**
- * Initializes the connection between a white space device and the database.
- * (paws.init)
- *
- * @param Postman_Google_PawsInitRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Spectrum_PawsInitResponse
- */
- public function init(Postman_Google_Service_Spectrum_PawsInitRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('init', array($params), "Postman_Google_Service_Spectrum_PawsInitResponse");
- }
-
- /**
- * Notifies the database that the device has selected certain frequency ranges
- * for transmission. Only to be invoked when required by the regulator. The
- * Google Spectrum Database does not operate in domains that require
- * notification, so this always yields an UNIMPLEMENTED error.
- * (paws.notifySpectrumUse)
- *
- * @param Postman_Google_PawsNotifySpectrumUseRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Spectrum_PawsNotifySpectrumUseResponse
- */
- public function notifySpectrumUse(Postman_Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('notifySpectrumUse', array($params), "Postman_Google_Service_Spectrum_PawsNotifySpectrumUseResponse");
- }
-
- /**
- * The Google Spectrum Database implements registration in the getSpectrum
- * method. As such this always returns an UNIMPLEMENTED error. (paws.register)
- *
- * @param Postman_Google_PawsRegisterRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Spectrum_PawsRegisterResponse
- */
- public function register(Postman_Google_Service_Spectrum_PawsRegisterRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('register', array($params), "Postman_Google_Service_Spectrum_PawsRegisterResponse");
- }
-
- /**
- * Validates a device for white space use in accordance with regulatory rules.
- * The Google Spectrum Database does not support master/slave configurations, so
- * this always yields an UNIMPLEMENTED error. (paws.verifyDevice)
- *
- * @param Postman_Google_PawsVerifyDeviceRequest $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Spectrum_PawsVerifyDeviceResponse
- */
- public function verifyDevice(Postman_Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('verifyDevice', array($params), "Postman_Google_Service_Spectrum_PawsVerifyDeviceResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Spectrum_AntennaCharacteristics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $heightType;
- public $heightUncertainty;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setHeightType($heightType)
- {
- $this->heightType = $heightType;
- }
- public function getHeightType()
- {
- return $this->heightType;
- }
- public function setHeightUncertainty($heightUncertainty)
- {
- $this->heightUncertainty = $heightUncertainty;
- }
- public function getHeightUncertainty()
- {
- return $this->heightUncertainty;
- }
-}
-
-class Postman_Google_Service_Spectrum_DatabaseSpec extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $uri;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setUri($uri)
- {
- $this->uri = $uri;
- }
- public function getUri()
- {
- return $this->uri;
- }
-}
-
-class Postman_Google_Service_Spectrum_DbUpdateSpec extends Postman_Google_Collection
-{
- protected $collection_key = 'databases';
- protected $internal_gapi_mappings = array(
- );
- protected $databasesType = 'Postman_Google_Service_Spectrum_DatabaseSpec';
- protected $databasesDataType = 'array';
-
-
- public function setDatabases($databases)
- {
- $this->databases = $databases;
- }
- public function getDatabases()
- {
- return $this->databases;
- }
-}
-
-class Postman_Google_Service_Spectrum_DeviceCapabilities extends Postman_Google_Collection
-{
- protected $collection_key = 'frequencyRanges';
- protected $internal_gapi_mappings = array(
- );
- protected $frequencyRangesType = 'Postman_Google_Service_Spectrum_FrequencyRange';
- protected $frequencyRangesDataType = 'array';
-
-
- public function setFrequencyRanges($frequencyRanges)
- {
- $this->frequencyRanges = $frequencyRanges;
- }
- public function getFrequencyRanges()
- {
- return $this->frequencyRanges;
- }
-}
-
-class Postman_Google_Service_Spectrum_DeviceDescriptor extends Postman_Google_Collection
-{
- protected $collection_key = 'rulesetIds';
- protected $internal_gapi_mappings = array(
- );
- public $etsiEnDeviceCategory;
- public $etsiEnDeviceEmissionsClass;
- public $etsiEnDeviceType;
- public $etsiEnTechnologyId;
- public $fccId;
- public $fccTvbdDeviceType;
- public $manufacturerId;
- public $modelId;
- public $rulesetIds;
- public $serialNumber;
-
-
- public function setEtsiEnDeviceCategory($etsiEnDeviceCategory)
- {
- $this->etsiEnDeviceCategory = $etsiEnDeviceCategory;
- }
- public function getEtsiEnDeviceCategory()
- {
- return $this->etsiEnDeviceCategory;
- }
- public function setEtsiEnDeviceEmissionsClass($etsiEnDeviceEmissionsClass)
- {
- $this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass;
- }
- public function getEtsiEnDeviceEmissionsClass()
- {
- return $this->etsiEnDeviceEmissionsClass;
- }
- public function setEtsiEnDeviceType($etsiEnDeviceType)
- {
- $this->etsiEnDeviceType = $etsiEnDeviceType;
- }
- public function getEtsiEnDeviceType()
- {
- return $this->etsiEnDeviceType;
- }
- public function setEtsiEnTechnologyId($etsiEnTechnologyId)
- {
- $this->etsiEnTechnologyId = $etsiEnTechnologyId;
- }
- public function getEtsiEnTechnologyId()
- {
- return $this->etsiEnTechnologyId;
- }
- public function setFccId($fccId)
- {
- $this->fccId = $fccId;
- }
- public function getFccId()
- {
- return $this->fccId;
- }
- public function setFccTvbdDeviceType($fccTvbdDeviceType)
- {
- $this->fccTvbdDeviceType = $fccTvbdDeviceType;
- }
- public function getFccTvbdDeviceType()
- {
- return $this->fccTvbdDeviceType;
- }
- public function setManufacturerId($manufacturerId)
- {
- $this->manufacturerId = $manufacturerId;
- }
- public function getManufacturerId()
- {
- return $this->manufacturerId;
- }
- public function setModelId($modelId)
- {
- $this->modelId = $modelId;
- }
- public function getModelId()
- {
- return $this->modelId;
- }
- public function setRulesetIds($rulesetIds)
- {
- $this->rulesetIds = $rulesetIds;
- }
- public function getRulesetIds()
- {
- return $this->rulesetIds;
- }
- public function setSerialNumber($serialNumber)
- {
- $this->serialNumber = $serialNumber;
- }
- public function getSerialNumber()
- {
- return $this->serialNumber;
- }
-}
-
-class Postman_Google_Service_Spectrum_DeviceOwner extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $operatorType = 'Postman_Google_Service_Spectrum_Vcard';
- protected $operatorDataType = '';
- protected $ownerType = 'Postman_Google_Service_Spectrum_Vcard';
- protected $ownerDataType = '';
-
-
- public function setOperator(Postman_Google_Service_Spectrum_Vcard $operator)
- {
- $this->operator = $operator;
- }
- public function getOperator()
- {
- return $this->operator;
- }
- public function setOwner(Postman_Google_Service_Spectrum_Vcard $owner)
- {
- $this->owner = $owner;
- }
- public function getOwner()
- {
- return $this->owner;
- }
-}
-
-class Postman_Google_Service_Spectrum_DeviceValidity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- public $isValid;
- public $reason;
-
-
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setIsValid($isValid)
- {
- $this->isValid = $isValid;
- }
- public function getIsValid()
- {
- return $this->isValid;
- }
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
-}
-
-class Postman_Google_Service_Spectrum_EventTime extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $startTime;
- public $stopTime;
-
-
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStopTime($stopTime)
- {
- $this->stopTime = $stopTime;
- }
- public function getStopTime()
- {
- return $this->stopTime;
- }
-}
-
-class Postman_Google_Service_Spectrum_FrequencyRange extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $maxPowerDBm;
- public $startHz;
- public $stopHz;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setMaxPowerDBm($maxPowerDBm)
- {
- $this->maxPowerDBm = $maxPowerDBm;
- }
- public function getMaxPowerDBm()
- {
- return $this->maxPowerDBm;
- }
- public function setStartHz($startHz)
- {
- $this->startHz = $startHz;
- }
- public function getStartHz()
- {
- return $this->startHz;
- }
- public function setStopHz($stopHz)
- {
- $this->stopHz = $stopHz;
- }
- public function getStopHz()
- {
- return $this->stopHz;
- }
-}
-
-class Postman_Google_Service_Spectrum_GeoLocation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $confidence;
- protected $pointType = 'Postman_Google_Service_Spectrum_GeoLocationEllipse';
- protected $pointDataType = '';
- protected $regionType = 'Postman_Google_Service_Spectrum_GeoLocationPolygon';
- protected $regionDataType = '';
-
-
- public function setConfidence($confidence)
- {
- $this->confidence = $confidence;
- }
- public function getConfidence()
- {
- return $this->confidence;
- }
- public function setPoint(Postman_Google_Service_Spectrum_GeoLocationEllipse $point)
- {
- $this->point = $point;
- }
- public function getPoint()
- {
- return $this->point;
- }
- public function setRegion(Postman_Google_Service_Spectrum_GeoLocationPolygon $region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
-}
-
-class Postman_Google_Service_Spectrum_GeoLocationEllipse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $centerType = 'Postman_Google_Service_Spectrum_GeoLocationPoint';
- protected $centerDataType = '';
- public $orientation;
- public $semiMajorAxis;
- public $semiMinorAxis;
-
-
- public function setCenter(Postman_Google_Service_Spectrum_GeoLocationPoint $center)
- {
- $this->center = $center;
- }
- public function getCenter()
- {
- return $this->center;
- }
- public function setOrientation($orientation)
- {
- $this->orientation = $orientation;
- }
- public function getOrientation()
- {
- return $this->orientation;
- }
- public function setSemiMajorAxis($semiMajorAxis)
- {
- $this->semiMajorAxis = $semiMajorAxis;
- }
- public function getSemiMajorAxis()
- {
- return $this->semiMajorAxis;
- }
- public function setSemiMinorAxis($semiMinorAxis)
- {
- $this->semiMinorAxis = $semiMinorAxis;
- }
- public function getSemiMinorAxis()
- {
- return $this->semiMinorAxis;
- }
-}
-
-class Postman_Google_Service_Spectrum_GeoLocationPoint extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $latitude;
- public $longitude;
-
-
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_Spectrum_GeoLocationPolygon extends Postman_Google_Collection
-{
- protected $collection_key = 'exterior';
- protected $internal_gapi_mappings = array(
- );
- protected $exteriorType = 'Postman_Google_Service_Spectrum_GeoLocationPoint';
- protected $exteriorDataType = 'array';
-
-
- public function setExterior($exterior)
- {
- $this->exterior = $exterior;
- }
- public function getExterior()
- {
- return $this->exterior;
- }
-}
-
-class Postman_Google_Service_Spectrum_GeoSpectrumSchedule extends Postman_Google_Collection
-{
- protected $collection_key = 'spectrumSchedules';
- protected $internal_gapi_mappings = array(
- );
- protected $locationType = 'Postman_Google_Service_Spectrum_GeoLocation';
- protected $locationDataType = '';
- protected $spectrumSchedulesType = 'Postman_Google_Service_Spectrum_SpectrumSchedule';
- protected $spectrumSchedulesDataType = 'array';
-
-
- public function setLocation(Postman_Google_Service_Spectrum_GeoLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setSpectrumSchedules($spectrumSchedules)
- {
- $this->spectrumSchedules = $spectrumSchedules;
- }
- public function getSpectrumSchedules()
- {
- return $this->spectrumSchedules;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsGetSpectrumBatchRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'locations';
- protected $internal_gapi_mappings = array(
- );
- protected $antennaType = 'Postman_Google_Service_Spectrum_AntennaCharacteristics';
- protected $antennaDataType = '';
- protected $capabilitiesType = 'Postman_Google_Service_Spectrum_DeviceCapabilities';
- protected $capabilitiesDataType = '';
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- protected $locationsType = 'Postman_Google_Service_Spectrum_GeoLocation';
- protected $locationsDataType = 'array';
- protected $masterDeviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $masterDeviceDescDataType = '';
- protected $ownerType = 'Postman_Google_Service_Spectrum_DeviceOwner';
- protected $ownerDataType = '';
- public $requestType;
- public $type;
- public $version;
-
-
- public function setAntenna(Postman_Google_Service_Spectrum_AntennaCharacteristics $antenna)
- {
- $this->antenna = $antenna;
- }
- public function getAntenna()
- {
- return $this->antenna;
- }
- public function setCapabilities(Postman_Google_Service_Spectrum_DeviceCapabilities $capabilities)
- {
- $this->capabilities = $capabilities;
- }
- public function getCapabilities()
- {
- return $this->capabilities;
- }
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setLocations($locations)
- {
- $this->locations = $locations;
- }
- public function getLocations()
- {
- return $this->locations;
- }
- public function setMasterDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
- {
- $this->masterDeviceDesc = $masterDeviceDesc;
- }
- public function getMasterDeviceDesc()
- {
- return $this->masterDeviceDesc;
- }
- public function setOwner(Postman_Google_Service_Spectrum_DeviceOwner $owner)
- {
- $this->owner = $owner;
- }
- public function getOwner()
- {
- return $this->owner;
- }
- public function setRequestType($requestType)
- {
- $this->requestType = $requestType;
- }
- public function getRequestType()
- {
- return $this->requestType;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsGetSpectrumBatchResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'geoSpectrumSchedules';
- protected $internal_gapi_mappings = array(
- );
- protected $databaseChangeType = 'Postman_Google_Service_Spectrum_DbUpdateSpec';
- protected $databaseChangeDataType = '';
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- protected $geoSpectrumSchedulesType = 'Postman_Google_Service_Spectrum_GeoSpectrumSchedule';
- protected $geoSpectrumSchedulesDataType = 'array';
- public $kind;
- public $maxContiguousBwHz;
- public $maxTotalBwHz;
- public $needsSpectrumReport;
- protected $rulesetInfoType = 'Postman_Google_Service_Spectrum_RulesetInfo';
- protected $rulesetInfoDataType = '';
- public $timestamp;
- public $type;
- public $version;
-
-
- public function setDatabaseChange(Postman_Google_Service_Spectrum_DbUpdateSpec $databaseChange)
- {
- $this->databaseChange = $databaseChange;
- }
- public function getDatabaseChange()
- {
- return $this->databaseChange;
- }
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setGeoSpectrumSchedules($geoSpectrumSchedules)
- {
- $this->geoSpectrumSchedules = $geoSpectrumSchedules;
- }
- public function getGeoSpectrumSchedules()
- {
- return $this->geoSpectrumSchedules;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxContiguousBwHz($maxContiguousBwHz)
- {
- $this->maxContiguousBwHz = $maxContiguousBwHz;
- }
- public function getMaxContiguousBwHz()
- {
- return $this->maxContiguousBwHz;
- }
- public function setMaxTotalBwHz($maxTotalBwHz)
- {
- $this->maxTotalBwHz = $maxTotalBwHz;
- }
- public function getMaxTotalBwHz()
- {
- return $this->maxTotalBwHz;
- }
- public function setNeedsSpectrumReport($needsSpectrumReport)
- {
- $this->needsSpectrumReport = $needsSpectrumReport;
- }
- public function getNeedsSpectrumReport()
- {
- return $this->needsSpectrumReport;
- }
- public function setRulesetInfo(Postman_Google_Service_Spectrum_RulesetInfo $rulesetInfo)
- {
- $this->rulesetInfo = $rulesetInfo;
- }
- public function getRulesetInfo()
- {
- return $this->rulesetInfo;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsGetSpectrumRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $antennaType = 'Postman_Google_Service_Spectrum_AntennaCharacteristics';
- protected $antennaDataType = '';
- protected $capabilitiesType = 'Postman_Google_Service_Spectrum_DeviceCapabilities';
- protected $capabilitiesDataType = '';
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- protected $locationType = 'Postman_Google_Service_Spectrum_GeoLocation';
- protected $locationDataType = '';
- protected $masterDeviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $masterDeviceDescDataType = '';
- protected $ownerType = 'Postman_Google_Service_Spectrum_DeviceOwner';
- protected $ownerDataType = '';
- public $requestType;
- public $type;
- public $version;
-
-
- public function setAntenna(Postman_Google_Service_Spectrum_AntennaCharacteristics $antenna)
- {
- $this->antenna = $antenna;
- }
- public function getAntenna()
- {
- return $this->antenna;
- }
- public function setCapabilities(Postman_Google_Service_Spectrum_DeviceCapabilities $capabilities)
- {
- $this->capabilities = $capabilities;
- }
- public function getCapabilities()
- {
- return $this->capabilities;
- }
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setLocation(Postman_Google_Service_Spectrum_GeoLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setMasterDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
- {
- $this->masterDeviceDesc = $masterDeviceDesc;
- }
- public function getMasterDeviceDesc()
- {
- return $this->masterDeviceDesc;
- }
- public function setOwner(Postman_Google_Service_Spectrum_DeviceOwner $owner)
- {
- $this->owner = $owner;
- }
- public function getOwner()
- {
- return $this->owner;
- }
- public function setRequestType($requestType)
- {
- $this->requestType = $requestType;
- }
- public function getRequestType()
- {
- return $this->requestType;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsGetSpectrumResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'spectrumSchedules';
- protected $internal_gapi_mappings = array(
- );
- protected $databaseChangeType = 'Postman_Google_Service_Spectrum_DbUpdateSpec';
- protected $databaseChangeDataType = '';
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- public $kind;
- public $maxContiguousBwHz;
- public $maxTotalBwHz;
- public $needsSpectrumReport;
- protected $rulesetInfoType = 'Postman_Google_Service_Spectrum_RulesetInfo';
- protected $rulesetInfoDataType = '';
- protected $spectrumSchedulesType = 'Postman_Google_Service_Spectrum_SpectrumSchedule';
- protected $spectrumSchedulesDataType = 'array';
- public $timestamp;
- public $type;
- public $version;
-
-
- public function setDatabaseChange(Postman_Google_Service_Spectrum_DbUpdateSpec $databaseChange)
- {
- $this->databaseChange = $databaseChange;
- }
- public function getDatabaseChange()
- {
- return $this->databaseChange;
- }
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setMaxContiguousBwHz($maxContiguousBwHz)
- {
- $this->maxContiguousBwHz = $maxContiguousBwHz;
- }
- public function getMaxContiguousBwHz()
- {
- return $this->maxContiguousBwHz;
- }
- public function setMaxTotalBwHz($maxTotalBwHz)
- {
- $this->maxTotalBwHz = $maxTotalBwHz;
- }
- public function getMaxTotalBwHz()
- {
- return $this->maxTotalBwHz;
- }
- public function setNeedsSpectrumReport($needsSpectrumReport)
- {
- $this->needsSpectrumReport = $needsSpectrumReport;
- }
- public function getNeedsSpectrumReport()
- {
- return $this->needsSpectrumReport;
- }
- public function setRulesetInfo(Postman_Google_Service_Spectrum_RulesetInfo $rulesetInfo)
- {
- $this->rulesetInfo = $rulesetInfo;
- }
- public function getRulesetInfo()
- {
- return $this->rulesetInfo;
- }
- public function setSpectrumSchedules($spectrumSchedules)
- {
- $this->spectrumSchedules = $spectrumSchedules;
- }
- public function getSpectrumSchedules()
- {
- return $this->spectrumSchedules;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsInitRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- protected $locationType = 'Postman_Google_Service_Spectrum_GeoLocation';
- protected $locationDataType = '';
- public $type;
- public $version;
-
-
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setLocation(Postman_Google_Service_Spectrum_GeoLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsInitResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $databaseChangeType = 'Postman_Google_Service_Spectrum_DbUpdateSpec';
- protected $databaseChangeDataType = '';
- public $kind;
- protected $rulesetInfoType = 'Postman_Google_Service_Spectrum_RulesetInfo';
- protected $rulesetInfoDataType = '';
- public $type;
- public $version;
-
-
- public function setDatabaseChange(Postman_Google_Service_Spectrum_DbUpdateSpec $databaseChange)
- {
- $this->databaseChange = $databaseChange;
- }
- public function getDatabaseChange()
- {
- return $this->databaseChange;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRulesetInfo(Postman_Google_Service_Spectrum_RulesetInfo $rulesetInfo)
- {
- $this->rulesetInfo = $rulesetInfo;
- }
- public function getRulesetInfo()
- {
- return $this->rulesetInfo;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsNotifySpectrumUseRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'spectra';
- protected $internal_gapi_mappings = array(
- );
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- protected $locationType = 'Postman_Google_Service_Spectrum_GeoLocation';
- protected $locationDataType = '';
- protected $spectraType = 'Postman_Google_Service_Spectrum_SpectrumMessage';
- protected $spectraDataType = 'array';
- public $type;
- public $version;
-
-
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setLocation(Postman_Google_Service_Spectrum_GeoLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setSpectra($spectra)
- {
- $this->spectra = $spectra;
- }
- public function getSpectra()
- {
- return $this->spectra;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsNotifySpectrumUseResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $kind;
- public $type;
- public $version;
-
-
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsRegisterRequest extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $antennaType = 'Postman_Google_Service_Spectrum_AntennaCharacteristics';
- protected $antennaDataType = '';
- protected $deviceDescType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescDataType = '';
- protected $deviceOwnerType = 'Postman_Google_Service_Spectrum_DeviceOwner';
- protected $deviceOwnerDataType = '';
- protected $locationType = 'Postman_Google_Service_Spectrum_GeoLocation';
- protected $locationDataType = '';
- public $type;
- public $version;
-
-
- public function setAntenna(Postman_Google_Service_Spectrum_AntennaCharacteristics $antenna)
- {
- $this->antenna = $antenna;
- }
- public function getAntenna()
- {
- return $this->antenna;
- }
- public function setDeviceDesc(Postman_Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
- {
- $this->deviceDesc = $deviceDesc;
- }
- public function getDeviceDesc()
- {
- return $this->deviceDesc;
- }
- public function setDeviceOwner(Postman_Google_Service_Spectrum_DeviceOwner $deviceOwner)
- {
- $this->deviceOwner = $deviceOwner;
- }
- public function getDeviceOwner()
- {
- return $this->deviceOwner;
- }
- public function setLocation(Postman_Google_Service_Spectrum_GeoLocation $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsRegisterResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $databaseChangeType = 'Postman_Google_Service_Spectrum_DbUpdateSpec';
- protected $databaseChangeDataType = '';
- public $kind;
- public $type;
- public $version;
-
-
- public function setDatabaseChange(Postman_Google_Service_Spectrum_DbUpdateSpec $databaseChange)
- {
- $this->databaseChange = $databaseChange;
- }
- public function getDatabaseChange()
- {
- return $this->databaseChange;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsVerifyDeviceRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'deviceDescs';
- protected $internal_gapi_mappings = array(
- );
- protected $deviceDescsType = 'Postman_Google_Service_Spectrum_DeviceDescriptor';
- protected $deviceDescsDataType = 'array';
- public $type;
- public $version;
-
-
- public function setDeviceDescs($deviceDescs)
- {
- $this->deviceDescs = $deviceDescs;
- }
- public function getDeviceDescs()
- {
- return $this->deviceDescs;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_PawsVerifyDeviceResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'deviceValidities';
- protected $internal_gapi_mappings = array(
- );
- protected $databaseChangeType = 'Postman_Google_Service_Spectrum_DbUpdateSpec';
- protected $databaseChangeDataType = '';
- protected $deviceValiditiesType = 'Postman_Google_Service_Spectrum_DeviceValidity';
- protected $deviceValiditiesDataType = 'array';
- public $kind;
- public $type;
- public $version;
-
-
- public function setDatabaseChange(Postman_Google_Service_Spectrum_DbUpdateSpec $databaseChange)
- {
- $this->databaseChange = $databaseChange;
- }
- public function getDatabaseChange()
- {
- return $this->databaseChange;
- }
- public function setDeviceValidities($deviceValidities)
- {
- $this->deviceValidities = $deviceValidities;
- }
- public function getDeviceValidities()
- {
- return $this->deviceValidities;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Spectrum_RulesetInfo extends Postman_Google_Collection
-{
- protected $collection_key = 'rulesetIds';
- protected $internal_gapi_mappings = array(
- );
- public $authority;
- public $maxLocationChange;
- public $maxPollingSecs;
- public $rulesetIds;
-
-
- public function setAuthority($authority)
- {
- $this->authority = $authority;
- }
- public function getAuthority()
- {
- return $this->authority;
- }
- public function setMaxLocationChange($maxLocationChange)
- {
- $this->maxLocationChange = $maxLocationChange;
- }
- public function getMaxLocationChange()
- {
- return $this->maxLocationChange;
- }
- public function setMaxPollingSecs($maxPollingSecs)
- {
- $this->maxPollingSecs = $maxPollingSecs;
- }
- public function getMaxPollingSecs()
- {
- return $this->maxPollingSecs;
- }
- public function setRulesetIds($rulesetIds)
- {
- $this->rulesetIds = $rulesetIds;
- }
- public function getRulesetIds()
- {
- return $this->rulesetIds;
- }
-}
-
-class Postman_Google_Service_Spectrum_SpectrumMessage extends Postman_Google_Collection
-{
- protected $collection_key = 'frequencyRanges';
- protected $internal_gapi_mappings = array(
- );
- public $bandwidth;
- protected $frequencyRangesType = 'Postman_Google_Service_Spectrum_FrequencyRange';
- protected $frequencyRangesDataType = 'array';
-
-
- public function setBandwidth($bandwidth)
- {
- $this->bandwidth = $bandwidth;
- }
- public function getBandwidth()
- {
- return $this->bandwidth;
- }
- public function setFrequencyRanges($frequencyRanges)
- {
- $this->frequencyRanges = $frequencyRanges;
- }
- public function getFrequencyRanges()
- {
- return $this->frequencyRanges;
- }
-}
-
-class Postman_Google_Service_Spectrum_SpectrumSchedule extends Postman_Google_Collection
-{
- protected $collection_key = 'spectra';
- protected $internal_gapi_mappings = array(
- );
- protected $eventTimeType = 'Postman_Google_Service_Spectrum_EventTime';
- protected $eventTimeDataType = '';
- protected $spectraType = 'Postman_Google_Service_Spectrum_SpectrumMessage';
- protected $spectraDataType = 'array';
-
-
- public function setEventTime(Postman_Google_Service_Spectrum_EventTime $eventTime)
- {
- $this->eventTime = $eventTime;
- }
- public function getEventTime()
- {
- return $this->eventTime;
- }
- public function setSpectra($spectra)
- {
- $this->spectra = $spectra;
- }
- public function getSpectra()
- {
- return $this->spectra;
- }
-}
-
-class Postman_Google_Service_Spectrum_Vcard extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $adrType = 'Postman_Google_Service_Spectrum_VcardAddress';
- protected $adrDataType = '';
- protected $emailType = 'Postman_Google_Service_Spectrum_VcardTypedText';
- protected $emailDataType = '';
- public $fn;
- protected $orgType = 'Postman_Google_Service_Spectrum_VcardTypedText';
- protected $orgDataType = '';
- protected $telType = 'Postman_Google_Service_Spectrum_VcardTelephone';
- protected $telDataType = '';
-
-
- public function setAdr(Postman_Google_Service_Spectrum_VcardAddress $adr)
- {
- $this->adr = $adr;
- }
- public function getAdr()
- {
- return $this->adr;
- }
- public function setEmail(Postman_Google_Service_Spectrum_VcardTypedText $email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setFn($fn)
- {
- $this->fn = $fn;
- }
- public function getFn()
- {
- return $this->fn;
- }
- public function setOrg(Postman_Google_Service_Spectrum_VcardTypedText $org)
- {
- $this->org = $org;
- }
- public function getOrg()
- {
- return $this->org;
- }
- public function setTel(Postman_Google_Service_Spectrum_VcardTelephone $tel)
- {
- $this->tel = $tel;
- }
- public function getTel()
- {
- return $this->tel;
- }
-}
-
-class Postman_Google_Service_Spectrum_VcardAddress extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $code;
- public $country;
- public $locality;
- public $pobox;
- public $region;
- public $street;
-
-
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function setCountry($country)
- {
- $this->country = $country;
- }
- public function getCountry()
- {
- return $this->country;
- }
- public function setLocality($locality)
- {
- $this->locality = $locality;
- }
- public function getLocality()
- {
- return $this->locality;
- }
- public function setPobox($pobox)
- {
- $this->pobox = $pobox;
- }
- public function getPobox()
- {
- return $this->pobox;
- }
- public function setRegion($region)
- {
- $this->region = $region;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function setStreet($street)
- {
- $this->street = $street;
- }
- public function getStreet()
- {
- return $this->street;
- }
-}
-
-class Postman_Google_Service_Spectrum_VcardTelephone extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $uri;
-
-
- public function setUri($uri)
- {
- $this->uri = $uri;
- }
- public function getUri()
- {
- return $this->uri;
- }
-}
-
-class Postman_Google_Service_Spectrum_VcardTypedText extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $text;
-
-
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Storage.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Storage.php
deleted file mode 100644
index 672fcf4..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Storage.php
+++ /dev/null
@@ -1,3082 +0,0 @@
-
- * Lets you store and retrieve potentially-large, immutable data objects.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Storage extends Postman_Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - - public $bucketAccessControls; - public $buckets; - public $channels; - public $defaultObjectAccessControls; - public $objectAccessControls; - public $objects; - - - /** - * Constructs the internal representation of the Storage service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'storage/v1/'; - $this->version = 'v1'; - $this->serviceName = 'storage'; - - $this->bucketAccessControls = new Postman_Google_Service_Storage_BucketAccessControls_Resource( - $this, - $this->serviceName, - 'bucketAccessControls', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/acl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/acl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->buckets = new Postman_Google_Service_Storage_Buckets_Resource( - $this, - $this->serviceName, - 'buckets', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Postman_Google_Service_Storage_Channels_Resource( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => 'channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->defaultObjectAccessControls = new Postman_Google_Service_Storage_DefaultObjectAccessControls_Resource( - $this, - $this->serviceName, - 'defaultObjectAccessControls', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/defaultObjectAcl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/defaultObjectAcl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->objectAccessControls = new Postman_Google_Service_Storage_ObjectAccessControls_Resource( - $this, - $this->serviceName, - 'objectAccessControls', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/o/{object}/acl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/o/{object}/acl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->objects = new Postman_Google_Service_Storage_Objects_Resource( - $this, - $this->serviceName, - 'objects', - array( - 'methods' => array( - 'compose' => array( - 'path' => 'b/{destinationBucket}/o/{destinationObject}/compose', - 'httpMethod' => 'POST', - 'parameters' => array( - 'destinationBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'destinationPredefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'copy' => array( - 'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sourceBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sourceObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifSourceGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceGeneration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'destinationPredefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/o', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentEncoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/o', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'prefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watchAll' => array( - 'path' => 'b/{bucket}/o/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'prefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "bucketAccessControls" collection of methods. - * Typical usage is: - *
- * $storageService = new Postman_Google_Service_Storage(...);
- * $bucketAccessControls = $storageService->bucketAccessControls;
- *
- */
-class Postman_Google_Service_Storage_BucketAccessControls_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Permanently deletes the ACL entry for the specified entity on the specified
- * bucket. (bucketAccessControls.delete)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param array $optParams Optional parameters.
- */
- public function delete($bucket, $entity, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns the ACL entry for the specified entity on the specified bucket.
- * (bucketAccessControls.get)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_BucketAccessControl
- */
- public function get($bucket, $entity, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Storage_BucketAccessControl");
- }
-
- /**
- * Creates a new ACL entry on the specified bucket.
- * (bucketAccessControls.insert)
- *
- * @param string $bucket Name of a bucket.
- * @param Postman_Google_BucketAccessControl $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_BucketAccessControl
- */
- public function insert($bucket, Postman_Google_Service_Storage_BucketAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Storage_BucketAccessControl");
- }
-
- /**
- * Retrieves ACL entries on the specified bucket.
- * (bucketAccessControls.listBucketAccessControls)
- *
- * @param string $bucket Name of a bucket.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_BucketAccessControls
- */
- public function listBucketAccessControls($bucket, $optParams = array())
- {
- $params = array('bucket' => $bucket);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Storage_BucketAccessControls");
- }
-
- /**
- * Updates an ACL entry on the specified bucket. This method supports patch
- * semantics. (bucketAccessControls.patch)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param Postman_Google_BucketAccessControl $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_BucketAccessControl
- */
- public function patch($bucket, $entity, Postman_Google_Service_Storage_BucketAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Storage_BucketAccessControl");
- }
-
- /**
- * Updates an ACL entry on the specified bucket. (bucketAccessControls.update)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param Postman_Google_BucketAccessControl $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_BucketAccessControl
- */
- public function update($bucket, $entity, Postman_Google_Service_Storage_BucketAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Storage_BucketAccessControl");
- }
-}
-
-/**
- * The "buckets" collection of methods.
- * Typical usage is:
- *
- * $storageService = new Postman_Google_Service_Storage(...);
- * $buckets = $storageService->buckets;
- *
- */
-class Postman_Google_Service_Storage_Buckets_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Permanently deletes an empty bucket. (buckets.delete)
- *
- * @param string $bucket Name of a bucket.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifMetagenerationMatch If set, only deletes the bucket if
- * its metageneration matches this value.
- * @opt_param string ifMetagenerationNotMatch If set, only deletes the bucket if
- * its metageneration does not match this value.
- */
- public function delete($bucket, $optParams = array())
- {
- $params = array('bucket' => $bucket);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns metadata for the specified bucket. (buckets.get)
- *
- * @param string $bucket Name of a bucket.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifMetagenerationMatch Makes the return of the bucket
- * metadata conditional on whether the bucket's current metageneration matches
- * the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the return of the bucket
- * metadata conditional on whether the bucket's current metageneration does not
- * match the given value.
- * @opt_param string projection Set of properties to return. Defaults to noAcl.
- * @return Postman_Google_Service_Storage_Bucket
- */
- public function get($bucket, $optParams = array())
- {
- $params = array('bucket' => $bucket);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Storage_Bucket");
- }
-
- /**
- * Creates a new bucket. (buckets.insert)
- *
- * @param string $project A valid API project identifier.
- * @param Postman_Google_Bucket $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string predefinedAcl Apply a predefined set of access controls to
- * this bucket.
- * @opt_param string projection Set of properties to return. Defaults to noAcl,
- * unless the bucket resource specifies acl or defaultObjectAcl properties, when
- * it defaults to full.
- * @return Postman_Google_Service_Storage_Bucket
- */
- public function insert($project, Postman_Google_Service_Storage_Bucket $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Storage_Bucket");
- }
-
- /**
- * Retrieves a list of buckets for a given project. (buckets.listBuckets)
- *
- * @param string $project A valid API project identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken A previously-returned page token representing
- * part of the larger set of results to view.
- * @opt_param string projection Set of properties to return. Defaults to noAcl.
- * @opt_param string maxResults Maximum number of buckets to return.
- * @return Postman_Google_Service_Storage_Buckets
- */
- public function listBuckets($project, $optParams = array())
- {
- $params = array('project' => $project);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Storage_Buckets");
- }
-
- /**
- * Updates a bucket. This method supports patch semantics. (buckets.patch)
- *
- * @param string $bucket Name of a bucket.
- * @param Postman_Google_Bucket $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifMetagenerationMatch Makes the return of the bucket
- * metadata conditional on whether the bucket's current metageneration matches
- * the given value.
- * @opt_param string predefinedAcl Apply a predefined set of access controls to
- * this bucket.
- * @opt_param string ifMetagenerationNotMatch Makes the return of the bucket
- * metadata conditional on whether the bucket's current metageneration does not
- * match the given value.
- * @opt_param string projection Set of properties to return. Defaults to full.
- * @return Postman_Google_Service_Storage_Bucket
- */
- public function patch($bucket, Postman_Google_Service_Storage_Bucket $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Storage_Bucket");
- }
-
- /**
- * Updates a bucket. (buckets.update)
- *
- * @param string $bucket Name of a bucket.
- * @param Postman_Google_Bucket $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifMetagenerationMatch Makes the return of the bucket
- * metadata conditional on whether the bucket's current metageneration matches
- * the given value.
- * @opt_param string predefinedAcl Apply a predefined set of access controls to
- * this bucket.
- * @opt_param string ifMetagenerationNotMatch Makes the return of the bucket
- * metadata conditional on whether the bucket's current metageneration does not
- * match the given value.
- * @opt_param string projection Set of properties to return. Defaults to full.
- * @return Postman_Google_Service_Storage_Bucket
- */
- public function update($bucket, Postman_Google_Service_Storage_Bucket $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Storage_Bucket");
- }
-}
-
-/**
- * The "channels" collection of methods.
- * Typical usage is:
- *
- * $storageService = new Postman_Google_Service_Storage(...);
- * $channels = $storageService->channels;
- *
- */
-class Postman_Google_Service_Storage_Channels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Stop watching resources through this channel (channels.stop)
- *
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- */
- public function stop(Postman_Google_Service_Storage_Channel $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('stop', array($params));
- }
-}
-
-/**
- * The "defaultObjectAccessControls" collection of methods.
- * Typical usage is:
- *
- * $storageService = new Postman_Google_Service_Storage(...);
- * $defaultObjectAccessControls = $storageService->defaultObjectAccessControls;
- *
- */
-class Postman_Google_Service_Storage_DefaultObjectAccessControls_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Permanently deletes the default object ACL entry for the specified entity on
- * the specified bucket. (defaultObjectAccessControls.delete)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param array $optParams Optional parameters.
- */
- public function delete($bucket, $entity, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns the default object ACL entry for the specified entity on the
- * specified bucket. (defaultObjectAccessControls.get)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function get($bucket, $entity, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-
- /**
- * Creates a new default object ACL entry on the specified bucket.
- * (defaultObjectAccessControls.insert)
- *
- * @param string $bucket Name of a bucket.
- * @param Postman_Google_ObjectAccessControl $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function insert($bucket, Postman_Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-
- /**
- * Retrieves default object ACL entries on the specified bucket.
- * (defaultObjectAccessControls.listDefaultObjectAccessControls)
- *
- * @param string $bucket Name of a bucket.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifMetagenerationMatch If present, only return default ACL
- * listing if the bucket's current metageneration matches this value.
- * @opt_param string ifMetagenerationNotMatch If present, only return default
- * ACL listing if the bucket's current metageneration does not match the given
- * value.
- * @return Postman_Google_Service_Storage_ObjectAccessControls
- */
- public function listDefaultObjectAccessControls($bucket, $optParams = array())
- {
- $params = array('bucket' => $bucket);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Storage_ObjectAccessControls");
- }
-
- /**
- * Updates a default object ACL entry on the specified bucket. This method
- * supports patch semantics. (defaultObjectAccessControls.patch)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param Postman_Google_ObjectAccessControl $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function patch($bucket, $entity, Postman_Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-
- /**
- * Updates a default object ACL entry on the specified bucket.
- * (defaultObjectAccessControls.update)
- *
- * @param string $bucket Name of a bucket.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param Postman_Google_ObjectAccessControl $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function update($bucket, $entity, Postman_Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-}
-
-/**
- * The "objectAccessControls" collection of methods.
- * Typical usage is:
- *
- * $storageService = new Postman_Google_Service_Storage(...);
- * $objectAccessControls = $storageService->objectAccessControls;
- *
- */
-class Postman_Google_Service_Storage_ObjectAccessControls_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Permanently deletes the ACL entry for the specified entity on the specified
- * object. (objectAccessControls.delete)
- *
- * @param string $bucket Name of a bucket.
- * @param string $object Name of the object.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- */
- public function delete($bucket, $object, $entity, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns the ACL entry for the specified entity on the specified object.
- * (objectAccessControls.get)
- *
- * @param string $bucket Name of a bucket.
- * @param string $object Name of the object.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function get($bucket, $object, $entity, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-
- /**
- * Creates a new ACL entry on the specified object.
- * (objectAccessControls.insert)
- *
- * @param string $bucket Name of a bucket.
- * @param string $object Name of the object.
- * @param Postman_Google_ObjectAccessControl $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function insert($bucket, $object, Postman_Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-
- /**
- * Retrieves ACL entries on the specified object.
- * (objectAccessControls.listObjectAccessControls)
- *
- * @param string $bucket Name of a bucket.
- * @param string $object Name of the object.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @return Postman_Google_Service_Storage_ObjectAccessControls
- */
- public function listObjectAccessControls($bucket, $object, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Storage_ObjectAccessControls");
- }
-
- /**
- * Updates an ACL entry on the specified object. This method supports patch
- * semantics. (objectAccessControls.patch)
- *
- * @param string $bucket Name of a bucket.
- * @param string $object Name of the object.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param Postman_Google_ObjectAccessControl $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function patch($bucket, $object, $entity, Postman_Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-
- /**
- * Updates an ACL entry on the specified object. (objectAccessControls.update)
- *
- * @param string $bucket Name of a bucket.
- * @param string $object Name of the object.
- * @param string $entity The entity holding the permission. Can be user-userId,
- * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
- * allAuthenticatedUsers.
- * @param Postman_Google_ObjectAccessControl $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @return Postman_Google_Service_Storage_ObjectAccessControl
- */
- public function update($bucket, $object, $entity, Postman_Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Storage_ObjectAccessControl");
- }
-}
-
-/**
- * The "objects" collection of methods.
- * Typical usage is:
- *
- * $storageService = new Postman_Google_Service_Storage(...);
- * $objects = $storageService->objects;
- *
- */
-class Postman_Google_Service_Storage_Objects_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Concatenates a list of existing objects into a new object in the same bucket.
- * (objects.compose)
- *
- * @param string $destinationBucket Name of the bucket in which to store the new
- * object.
- * @param string $destinationObject Name of the new object.
- * @param Postman_Google_ComposeRequest $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the object's current generation matches the given value.
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the object's current metageneration matches the given value.
- * @opt_param string destinationPredefinedAcl Apply a predefined set of access
- * controls to the destination object.
- * @return Postman_Google_Service_Storage_StorageObject
- */
- public function compose($destinationBucket, $destinationObject, Postman_Google_Service_Storage_ComposeRequest $postBody, $optParams = array())
- {
- $params = array('destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('compose', array($params), "Postman_Google_Service_Storage_StorageObject");
- }
-
- /**
- * Copies an object to a specified location. Optionally overrides metadata.
- * (objects.copy)
- *
- * @param string $sourceBucket Name of the bucket in which to find the source
- * object.
- * @param string $sourceObject Name of the source object.
- * @param string $destinationBucket Name of the bucket in which to store the new
- * object. Overrides the provided object metadata's bucket value, if any.
- * @param string $destinationObject Name of the new object. Required when the
- * object metadata is not otherwise provided. Overrides the object metadata's
- * name value, if any.
- * @param Postman_Google_StorageObject $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional
- * on whether the source object's generation does not match the given value.
- * @opt_param string ifGenerationNotMatch Makes the operation conditional on
- * whether the destination object's current generation does not match the given
- * value.
- * @opt_param string ifSourceMetagenerationNotMatch Makes the operation
- * conditional on whether the source object's current metageneration does not
- * match the given value.
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the destination object's current metageneration matches the given
- * value.
- * @opt_param string sourceGeneration If present, selects a specific revision of
- * the source object (as opposed to the latest version, the default).
- * @opt_param string destinationPredefinedAcl Apply a predefined set of access
- * controls to the destination object.
- * @opt_param string ifSourceGenerationMatch Makes the operation conditional on
- * whether the source object's generation matches the given value.
- * @opt_param string ifSourceMetagenerationMatch Makes the operation conditional
- * on whether the source object's current metageneration matches the given
- * value.
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the destination object's current generation matches the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on
- * whether the destination object's current metageneration does not match the
- * given value.
- * @opt_param string projection Set of properties to return. Defaults to noAcl,
- * unless the object resource specifies the acl property, when it defaults to
- * full.
- * @return Postman_Google_Service_Storage_StorageObject
- */
- public function copy($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Postman_Google_Service_Storage_StorageObject $postBody, $optParams = array())
- {
- $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('copy', array($params), "Postman_Google_Service_Storage_StorageObject");
- }
-
- /**
- * Deletes an object and its metadata. Deletions are permanent if versioning is
- * not enabled for the bucket, or if the generation parameter is used.
- * (objects.delete)
- *
- * @param string $bucket Name of the bucket in which the object resides.
- * @param string $object Name of the object.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifGenerationNotMatch Makes the operation conditional on
- * whether the object's current generation does not match the given value.
- * @opt_param string generation If present, permanently deletes a specific
- * revision of this object (as opposed to the latest version, the default).
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the object's current metageneration matches the given value.
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the object's current generation matches the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on
- * whether the object's current metageneration does not match the given value.
- */
- public function delete($bucket, $object, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves an object or its metadata. (objects.get)
- *
- * @param string $bucket Name of the bucket in which the object resides.
- * @param string $object Name of the object.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string ifGenerationNotMatch Makes the operation conditional on
- * whether the object's generation does not match the given value.
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the object's current metageneration matches the given value.
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the object's generation matches the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on
- * whether the object's current metageneration does not match the given value.
- * @opt_param string projection Set of properties to return. Defaults to noAcl.
- * @return Postman_Google_Service_Storage_StorageObject
- */
- public function get($bucket, $object, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Storage_StorageObject");
- }
-
- /**
- * Stores a new object and metadata. (objects.insert)
- *
- * @param string $bucket Name of the bucket in which to store the new object.
- * Overrides the provided object metadata's bucket value, if any.
- * @param Postman_Google_StorageObject $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string predefinedAcl Apply a predefined set of access controls to
- * this object.
- * @opt_param string projection Set of properties to return. Defaults to noAcl,
- * unless the object resource specifies the acl property, when it defaults to
- * full.
- * @opt_param string ifGenerationNotMatch Makes the operation conditional on
- * whether the object's current generation does not match the given value.
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the object's current metageneration matches the given value.
- * @opt_param string contentEncoding If set, sets the contentEncoding property
- * of the final object to this value. Setting this parameter is equivalent to
- * setting the contentEncoding metadata property. This can be useful when
- * uploading an object with uploadType=media to indicate the encoding of the
- * content being uploaded.
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the object's current generation matches the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on
- * whether the object's current metageneration does not match the given value.
- * @opt_param string name Name of the object. Required when the object metadata
- * is not otherwise provided. Overrides the object metadata's name value, if
- * any.
- * @return Postman_Google_Service_Storage_StorageObject
- */
- public function insert($bucket, Postman_Google_Service_Storage_StorageObject $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Storage_StorageObject");
- }
-
- /**
- * Retrieves a list of objects matching the criteria. (objects.listObjects)
- *
- * @param string $bucket Name of the bucket in which to look for objects.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Set of properties to return. Defaults to noAcl.
- * @opt_param bool versions If true, lists all versions of a file as distinct
- * results.
- * @opt_param string prefix Filter results to objects whose names begin with
- * this prefix.
- * @opt_param string maxResults Maximum number of items plus prefixes to return.
- * As duplicate prefixes are omitted, fewer total results may be returned than
- * requested.
- * @opt_param string pageToken A previously-returned page token representing
- * part of the larger set of results to view.
- * @opt_param string delimiter Returns results in a directory-like mode. items
- * will contain only objects whose names, aside from the prefix, do not contain
- * delimiter. Objects whose names, aside from the prefix, contain delimiter will
- * have their name, truncated after the delimiter, returned in prefixes.
- * Duplicate prefixes are omitted.
- * @return Postman_Google_Service_Storage_Objects
- */
- public function listObjects($bucket, $optParams = array())
- {
- $params = array('bucket' => $bucket);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Storage_Objects");
- }
-
- /**
- * Updates an object's metadata. This method supports patch semantics.
- * (objects.patch)
- *
- * @param string $bucket Name of the bucket in which the object resides.
- * @param string $object Name of the object.
- * @param Postman_Google_StorageObject $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string predefinedAcl Apply a predefined set of access controls to
- * this object.
- * @opt_param string ifGenerationNotMatch Makes the operation conditional on
- * whether the object's current generation does not match the given value.
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the object's current metageneration matches the given value.
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the object's current generation matches the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on
- * whether the object's current metageneration does not match the given value.
- * @opt_param string projection Set of properties to return. Defaults to full.
- * @return Postman_Google_Service_Storage_StorageObject
- */
- public function patch($bucket, $object, Postman_Google_Service_Storage_StorageObject $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Storage_StorageObject");
- }
-
- /**
- * Updates an object's metadata. (objects.update)
- *
- * @param string $bucket Name of the bucket in which the object resides.
- * @param string $object Name of the object.
- * @param Postman_Google_StorageObject $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string predefinedAcl Apply a predefined set of access controls to
- * this object.
- * @opt_param string ifGenerationNotMatch Makes the operation conditional on
- * whether the object's current generation does not match the given value.
- * @opt_param string generation If present, selects a specific revision of this
- * object (as opposed to the latest version, the default).
- * @opt_param string ifMetagenerationMatch Makes the operation conditional on
- * whether the object's current metageneration matches the given value.
- * @opt_param string ifGenerationMatch Makes the operation conditional on
- * whether the object's current generation matches the given value.
- * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on
- * whether the object's current metageneration does not match the given value.
- * @opt_param string projection Set of properties to return. Defaults to full.
- * @return Postman_Google_Service_Storage_StorageObject
- */
- public function update($bucket, $object, Postman_Google_Service_Storage_StorageObject $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Storage_StorageObject");
- }
-
- /**
- * Watch for changes on all objects in a bucket. (objects.watchAll)
- *
- * @param string $bucket Name of the bucket in which to look for objects.
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Set of properties to return. Defaults to noAcl.
- * @opt_param bool versions If true, lists all versions of a file as distinct
- * results.
- * @opt_param string prefix Filter results to objects whose names begin with
- * this prefix.
- * @opt_param string maxResults Maximum number of items plus prefixes to return.
- * As duplicate prefixes are omitted, fewer total results may be returned than
- * requested.
- * @opt_param string pageToken A previously-returned page token representing
- * part of the larger set of results to view.
- * @opt_param string delimiter Returns results in a directory-like mode. items
- * will contain only objects whose names, aside from the prefix, do not contain
- * delimiter. Objects whose names, aside from the prefix, contain delimiter will
- * have their name, truncated after the delimiter, returned in prefixes.
- * Duplicate prefixes are omitted.
- * @return Postman_Google_Service_Storage_Channel
- */
- public function watchAll($bucket, Postman_Google_Service_Storage_Channel $postBody, $optParams = array())
- {
- $params = array('bucket' => $bucket, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('watchAll', array($params), "Postman_Google_Service_Storage_Channel");
- }
-}
-
-
-
-
-class Postman_Google_Service_Storage_Bucket extends Postman_Google_Collection
-{
- protected $collection_key = 'defaultObjectAcl';
- protected $internal_gapi_mappings = array(
- );
- protected $aclType = 'Postman_Google_Service_Storage_BucketAccessControl';
- protected $aclDataType = 'array';
- protected $corsType = 'Postman_Google_Service_Storage_BucketCors';
- protected $corsDataType = 'array';
- protected $defaultObjectAclType = 'Postman_Google_Service_Storage_ObjectAccessControl';
- protected $defaultObjectAclDataType = 'array';
- public $etag;
- public $id;
- public $kind;
- protected $lifecycleType = 'Postman_Google_Service_Storage_BucketLifecycle';
- protected $lifecycleDataType = '';
- public $location;
- protected $loggingType = 'Postman_Google_Service_Storage_BucketLogging';
- protected $loggingDataType = '';
- public $metageneration;
- public $name;
- protected $ownerType = 'Postman_Google_Service_Storage_BucketOwner';
- protected $ownerDataType = '';
- public $projectNumber;
- public $selfLink;
- public $storageClass;
- public $timeCreated;
- protected $versioningType = 'Postman_Google_Service_Storage_BucketVersioning';
- protected $versioningDataType = '';
- protected $websiteType = 'Postman_Google_Service_Storage_BucketWebsite';
- protected $websiteDataType = '';
-
-
- public function setAcl($acl)
- {
- $this->acl = $acl;
- }
- public function getAcl()
- {
- return $this->acl;
- }
- public function setCors($cors)
- {
- $this->cors = $cors;
- }
- public function getCors()
- {
- return $this->cors;
- }
- public function setDefaultObjectAcl($defaultObjectAcl)
- {
- $this->defaultObjectAcl = $defaultObjectAcl;
- }
- public function getDefaultObjectAcl()
- {
- return $this->defaultObjectAcl;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setLifecycle(Postman_Google_Service_Storage_BucketLifecycle $lifecycle)
- {
- $this->lifecycle = $lifecycle;
- }
- public function getLifecycle()
- {
- return $this->lifecycle;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setLogging(Postman_Google_Service_Storage_BucketLogging $logging)
- {
- $this->logging = $logging;
- }
- public function getLogging()
- {
- return $this->logging;
- }
- public function setMetageneration($metageneration)
- {
- $this->metageneration = $metageneration;
- }
- public function getMetageneration()
- {
- return $this->metageneration;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOwner(Postman_Google_Service_Storage_BucketOwner $owner)
- {
- $this->owner = $owner;
- }
- public function getOwner()
- {
- return $this->owner;
- }
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStorageClass($storageClass)
- {
- $this->storageClass = $storageClass;
- }
- public function getStorageClass()
- {
- return $this->storageClass;
- }
- public function setTimeCreated($timeCreated)
- {
- $this->timeCreated = $timeCreated;
- }
- public function getTimeCreated()
- {
- return $this->timeCreated;
- }
- public function setVersioning(Postman_Google_Service_Storage_BucketVersioning $versioning)
- {
- $this->versioning = $versioning;
- }
- public function getVersioning()
- {
- return $this->versioning;
- }
- public function setWebsite(Postman_Google_Service_Storage_BucketWebsite $website)
- {
- $this->website = $website;
- }
- public function getWebsite()
- {
- return $this->website;
- }
-}
-
-class Postman_Google_Service_Storage_BucketAccessControl extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bucket;
- public $domain;
- public $email;
- public $entity;
- public $entityId;
- public $etag;
- public $id;
- public $kind;
- protected $projectTeamType = 'Postman_Google_Service_Storage_BucketAccessControlProjectTeam';
- protected $projectTeamDataType = '';
- public $role;
- public $selfLink;
-
-
- public function setBucket($bucket)
- {
- $this->bucket = $bucket;
- }
- public function getBucket()
- {
- return $this->bucket;
- }
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEntity($entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- public function setEntityId($entityId)
- {
- $this->entityId = $entityId;
- }
- public function getEntityId()
- {
- return $this->entityId;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setProjectTeam(Postman_Google_Service_Storage_BucketAccessControlProjectTeam $projectTeam)
- {
- $this->projectTeam = $projectTeam;
- }
- public function getProjectTeam()
- {
- return $this->projectTeam;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Storage_BucketAccessControlProjectTeam extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $projectNumber;
- public $team;
-
-
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setTeam($team)
- {
- $this->team = $team;
- }
- public function getTeam()
- {
- return $this->team;
- }
-}
-
-class Postman_Google_Service_Storage_BucketAccessControls extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Storage_BucketAccessControl';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Storage_BucketCors extends Postman_Google_Collection
-{
- protected $collection_key = 'responseHeader';
- protected $internal_gapi_mappings = array(
- );
- public $maxAgeSeconds;
- public $method;
- public $origin;
- public $responseHeader;
-
-
- public function setMaxAgeSeconds($maxAgeSeconds)
- {
- $this->maxAgeSeconds = $maxAgeSeconds;
- }
- public function getMaxAgeSeconds()
- {
- return $this->maxAgeSeconds;
- }
- public function setMethod($method)
- {
- $this->method = $method;
- }
- public function getMethod()
- {
- return $this->method;
- }
- public function setOrigin($origin)
- {
- $this->origin = $origin;
- }
- public function getOrigin()
- {
- return $this->origin;
- }
- public function setResponseHeader($responseHeader)
- {
- $this->responseHeader = $responseHeader;
- }
- public function getResponseHeader()
- {
- return $this->responseHeader;
- }
-}
-
-class Postman_Google_Service_Storage_BucketLifecycle extends Postman_Google_Collection
-{
- protected $collection_key = 'rule';
- protected $internal_gapi_mappings = array(
- );
- protected $ruleType = 'Postman_Google_Service_Storage_BucketLifecycleRule';
- protected $ruleDataType = 'array';
-
-
- public function setRule($rule)
- {
- $this->rule = $rule;
- }
- public function getRule()
- {
- return $this->rule;
- }
-}
-
-class Postman_Google_Service_Storage_BucketLifecycleRule extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $actionType = 'Postman_Google_Service_Storage_BucketLifecycleRuleAction';
- protected $actionDataType = '';
- protected $conditionType = 'Postman_Google_Service_Storage_BucketLifecycleRuleCondition';
- protected $conditionDataType = '';
-
-
- public function setAction(Postman_Google_Service_Storage_BucketLifecycleRuleAction $action)
- {
- $this->action = $action;
- }
- public function getAction()
- {
- return $this->action;
- }
- public function setCondition(Postman_Google_Service_Storage_BucketLifecycleRuleCondition $condition)
- {
- $this->condition = $condition;
- }
- public function getCondition()
- {
- return $this->condition;
- }
-}
-
-class Postman_Google_Service_Storage_BucketLifecycleRuleAction extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $type;
-
-
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Storage_BucketLifecycleRuleCondition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $age;
- public $createdBefore;
- public $isLive;
- public $numNewerVersions;
-
-
- public function setAge($age)
- {
- $this->age = $age;
- }
- public function getAge()
- {
- return $this->age;
- }
- public function setCreatedBefore($createdBefore)
- {
- $this->createdBefore = $createdBefore;
- }
- public function getCreatedBefore()
- {
- return $this->createdBefore;
- }
- public function setIsLive($isLive)
- {
- $this->isLive = $isLive;
- }
- public function getIsLive()
- {
- return $this->isLive;
- }
- public function setNumNewerVersions($numNewerVersions)
- {
- $this->numNewerVersions = $numNewerVersions;
- }
- public function getNumNewerVersions()
- {
- return $this->numNewerVersions;
- }
-}
-
-class Postman_Google_Service_Storage_BucketLogging extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $logBucket;
- public $logObjectPrefix;
-
-
- public function setLogBucket($logBucket)
- {
- $this->logBucket = $logBucket;
- }
- public function getLogBucket()
- {
- return $this->logBucket;
- }
- public function setLogObjectPrefix($logObjectPrefix)
- {
- $this->logObjectPrefix = $logObjectPrefix;
- }
- public function getLogObjectPrefix()
- {
- return $this->logObjectPrefix;
- }
-}
-
-class Postman_Google_Service_Storage_BucketOwner extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $entity;
- public $entityId;
-
-
- public function setEntity($entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- public function setEntityId($entityId)
- {
- $this->entityId = $entityId;
- }
- public function getEntityId()
- {
- return $this->entityId;
- }
-}
-
-class Postman_Google_Service_Storage_BucketVersioning extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $enabled;
-
-
- public function setEnabled($enabled)
- {
- $this->enabled = $enabled;
- }
- public function getEnabled()
- {
- return $this->enabled;
- }
-}
-
-class Postman_Google_Service_Storage_BucketWebsite extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $mainPageSuffix;
- public $notFoundPage;
-
-
- public function setMainPageSuffix($mainPageSuffix)
- {
- $this->mainPageSuffix = $mainPageSuffix;
- }
- public function getMainPageSuffix()
- {
- return $this->mainPageSuffix;
- }
- public function setNotFoundPage($notFoundPage)
- {
- $this->notFoundPage = $notFoundPage;
- }
- public function getNotFoundPage()
- {
- return $this->notFoundPage;
- }
-}
-
-class Postman_Google_Service_Storage_Buckets extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Storage_Bucket';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Storage_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $address;
- public $expiration;
- public $id;
- public $kind;
- public $params;
- public $payload;
- public $resourceId;
- public $resourceUri;
- public $token;
- public $type;
-
-
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function getAddress()
- {
- return $this->address;
- }
- public function setExpiration($expiration)
- {
- $this->expiration = $expiration;
- }
- public function getExpiration()
- {
- return $this->expiration;
- }
- 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 setParams($params)
- {
- $this->params = $params;
- }
- public function getParams()
- {
- return $this->params;
- }
- public function setPayload($payload)
- {
- $this->payload = $payload;
- }
- public function getPayload()
- {
- return $this->payload;
- }
- public function setResourceId($resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setResourceUri($resourceUri)
- {
- $this->resourceUri = $resourceUri;
- }
- public function getResourceUri()
- {
- return $this->resourceUri;
- }
- public function setToken($token)
- {
- $this->token = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Storage_ChannelParams extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Storage_ComposeRequest extends Postman_Google_Collection
-{
- protected $collection_key = 'sourceObjects';
- protected $internal_gapi_mappings = array(
- );
- protected $destinationType = 'Postman_Google_Service_Storage_StorageObject';
- protected $destinationDataType = '';
- public $kind;
- protected $sourceObjectsType = 'Postman_Google_Service_Storage_ComposeRequestSourceObjects';
- protected $sourceObjectsDataType = 'array';
-
-
- public function setDestination(Postman_Google_Service_Storage_StorageObject $destination)
- {
- $this->destination = $destination;
- }
- public function getDestination()
- {
- return $this->destination;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSourceObjects($sourceObjects)
- {
- $this->sourceObjects = $sourceObjects;
- }
- public function getSourceObjects()
- {
- return $this->sourceObjects;
- }
-}
-
-class Postman_Google_Service_Storage_ComposeRequestSourceObjects extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $generation;
- public $name;
- protected $objectPreconditionsType = 'Postman_Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions';
- protected $objectPreconditionsDataType = '';
-
-
- public function setGeneration($generation)
- {
- $this->generation = $generation;
- }
- public function getGeneration()
- {
- return $this->generation;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setObjectPreconditions(Postman_Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions $objectPreconditions)
- {
- $this->objectPreconditions = $objectPreconditions;
- }
- public function getObjectPreconditions()
- {
- return $this->objectPreconditions;
- }
-}
-
-class Postman_Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $ifGenerationMatch;
-
-
- public function setIfGenerationMatch($ifGenerationMatch)
- {
- $this->ifGenerationMatch = $ifGenerationMatch;
- }
- public function getIfGenerationMatch()
- {
- return $this->ifGenerationMatch;
- }
-}
-
-class Postman_Google_Service_Storage_ObjectAccessControl extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bucket;
- public $domain;
- public $email;
- public $entity;
- public $entityId;
- public $etag;
- public $generation;
- public $id;
- public $kind;
- public $object;
- protected $projectTeamType = 'Postman_Google_Service_Storage_ObjectAccessControlProjectTeam';
- protected $projectTeamDataType = '';
- public $role;
- public $selfLink;
-
-
- public function setBucket($bucket)
- {
- $this->bucket = $bucket;
- }
- public function getBucket()
- {
- return $this->bucket;
- }
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- public function getDomain()
- {
- return $this->domain;
- }
- public function setEmail($email)
- {
- $this->email = $email;
- }
- public function getEmail()
- {
- return $this->email;
- }
- public function setEntity($entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- public function setEntityId($entityId)
- {
- $this->entityId = $entityId;
- }
- public function getEntityId()
- {
- return $this->entityId;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGeneration($generation)
- {
- $this->generation = $generation;
- }
- public function getGeneration()
- {
- return $this->generation;
- }
- 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 setObject($object)
- {
- $this->object = $object;
- }
- public function getObject()
- {
- return $this->object;
- }
- public function setProjectTeam(Postman_Google_Service_Storage_ObjectAccessControlProjectTeam $projectTeam)
- {
- $this->projectTeam = $projectTeam;
- }
- public function getProjectTeam()
- {
- return $this->projectTeam;
- }
- public function setRole($role)
- {
- $this->role = $role;
- }
- public function getRole()
- {
- return $this->role;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
-}
-
-class Postman_Google_Service_Storage_ObjectAccessControlProjectTeam extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $projectNumber;
- public $team;
-
-
- public function setProjectNumber($projectNumber)
- {
- $this->projectNumber = $projectNumber;
- }
- public function getProjectNumber()
- {
- return $this->projectNumber;
- }
- public function setTeam($team)
- {
- $this->team = $team;
- }
- public function getTeam()
- {
- return $this->team;
- }
-}
-
-class Postman_Google_Service_Storage_ObjectAccessControls extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $items;
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Storage_Objects extends Postman_Google_Collection
-{
- protected $collection_key = 'prefixes';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Storage_StorageObject';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- public $prefixes;
-
-
- public function setItems($items)
- {
- $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;
- }
- public function setPrefixes($prefixes)
- {
- $this->prefixes = $prefixes;
- }
- public function getPrefixes()
- {
- return $this->prefixes;
- }
-}
-
-class Postman_Google_Service_Storage_StorageObject extends Postman_Google_Collection
-{
- protected $collection_key = 'acl';
- protected $internal_gapi_mappings = array(
- );
- protected $aclType = 'Postman_Google_Service_Storage_ObjectAccessControl';
- protected $aclDataType = 'array';
- public $bucket;
- public $cacheControl;
- public $componentCount;
- public $contentDisposition;
- public $contentEncoding;
- public $contentLanguage;
- public $contentType;
- public $crc32c;
- public $etag;
- public $generation;
- public $id;
- public $kind;
- public $md5Hash;
- public $mediaLink;
- public $metadata;
- public $metageneration;
- public $name;
- protected $ownerType = 'Postman_Google_Service_Storage_StorageObjectOwner';
- protected $ownerDataType = '';
- public $selfLink;
- public $size;
- public $storageClass;
- public $timeDeleted;
- public $updated;
-
-
- public function setAcl($acl)
- {
- $this->acl = $acl;
- }
- public function getAcl()
- {
- return $this->acl;
- }
- public function setBucket($bucket)
- {
- $this->bucket = $bucket;
- }
- public function getBucket()
- {
- return $this->bucket;
- }
- public function setCacheControl($cacheControl)
- {
- $this->cacheControl = $cacheControl;
- }
- public function getCacheControl()
- {
- return $this->cacheControl;
- }
- public function setComponentCount($componentCount)
- {
- $this->componentCount = $componentCount;
- }
- public function getComponentCount()
- {
- return $this->componentCount;
- }
- public function setContentDisposition($contentDisposition)
- {
- $this->contentDisposition = $contentDisposition;
- }
- public function getContentDisposition()
- {
- return $this->contentDisposition;
- }
- public function setContentEncoding($contentEncoding)
- {
- $this->contentEncoding = $contentEncoding;
- }
- public function getContentEncoding()
- {
- return $this->contentEncoding;
- }
- public function setContentLanguage($contentLanguage)
- {
- $this->contentLanguage = $contentLanguage;
- }
- public function getContentLanguage()
- {
- return $this->contentLanguage;
- }
- public function setContentType($contentType)
- {
- $this->contentType = $contentType;
- }
- public function getContentType()
- {
- return $this->contentType;
- }
- public function setCrc32c($crc32c)
- {
- $this->crc32c = $crc32c;
- }
- public function getCrc32c()
- {
- return $this->crc32c;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setGeneration($generation)
- {
- $this->generation = $generation;
- }
- public function getGeneration()
- {
- return $this->generation;
- }
- 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 setMd5Hash($md5Hash)
- {
- $this->md5Hash = $md5Hash;
- }
- public function getMd5Hash()
- {
- return $this->md5Hash;
- }
- public function setMediaLink($mediaLink)
- {
- $this->mediaLink = $mediaLink;
- }
- public function getMediaLink()
- {
- return $this->mediaLink;
- }
- public function setMetadata($metadata)
- {
- $this->metadata = $metadata;
- }
- public function getMetadata()
- {
- return $this->metadata;
- }
- public function setMetageneration($metageneration)
- {
- $this->metageneration = $metageneration;
- }
- public function getMetageneration()
- {
- return $this->metageneration;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setOwner(Postman_Google_Service_Storage_StorageObjectOwner $owner)
- {
- $this->owner = $owner;
- }
- public function getOwner()
- {
- return $this->owner;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setStorageClass($storageClass)
- {
- $this->storageClass = $storageClass;
- }
- public function getStorageClass()
- {
- return $this->storageClass;
- }
- public function setTimeDeleted($timeDeleted)
- {
- $this->timeDeleted = $timeDeleted;
- }
- public function getTimeDeleted()
- {
- return $this->timeDeleted;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Storage_StorageObjectMetadata extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Storage_StorageObjectOwner extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $entity;
- public $entityId;
-
-
- public function setEntity($entity)
- {
- $this->entity = $entity;
- }
- public function getEntity()
- {
- return $this->entity;
- }
- public function setEntityId($entityId)
- {
- $this->entityId = $entityId;
- }
- public function getEntityId()
- {
- return $this->entityId;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/TagManager.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/TagManager.php
deleted file mode 100644
index 3367e26..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/TagManager.php
+++ /dev/null
@@ -1,3306 +0,0 @@
-
- * API for accessing Tag Manager accounts and containers.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_TagManager extends Postman_Google_Service -{ - /** Delete your Google Tag Manager containers. */ - const TAGMANAGER_DELETE_CONTAINERS = - "https://www.googleapis.com/auth/tagmanager.delete.containers"; - /** Manage your Google Tag Manager containers. */ - const TAGMANAGER_EDIT_CONTAINERS = - "https://www.googleapis.com/auth/tagmanager.edit.containers"; - /** Manage your Google Tag Manager container versions. */ - const TAGMANAGER_EDIT_CONTAINERVERSIONS = - "https://www.googleapis.com/auth/tagmanager.edit.containerversions"; - /** Manage your Google Tag Manager accounts. */ - const TAGMANAGER_MANAGE_ACCOUNTS = - "https://www.googleapis.com/auth/tagmanager.manage.accounts"; - /** Manage user permissions of your Google Tag Manager data. */ - const TAGMANAGER_MANAGE_USERS = - "https://www.googleapis.com/auth/tagmanager.manage.users"; - /** Publish your Google Tag Manager containers. */ - const TAGMANAGER_PUBLISH = - "https://www.googleapis.com/auth/tagmanager.publish"; - /** View your Google Tag Manager containers. */ - const TAGMANAGER_READONLY = - "https://www.googleapis.com/auth/tagmanager.readonly"; - - public $accounts; - public $accounts_containers; - public $accounts_containers_macros; - public $accounts_containers_rules; - public $accounts_containers_tags; - public $accounts_containers_triggers; - public $accounts_containers_variables; - public $accounts_containers_versions; - public $accounts_permissions; - - - /** - * Constructs the internal representation of the TagManager service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'tagmanager/v1/'; - $this->version = 'v1'; - $this->serviceName = 'tagmanager'; - - $this->accounts = new Postman_Google_Service_TagManager_Accounts_Resource( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'update' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers = new Postman_Google_Service_TagManager_AccountsContainers_Resource( - $this, - $this->serviceName, - 'containers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_macros = new Postman_Google_Service_TagManager_AccountsContainersMacros_Resource( - $this, - $this->serviceName, - 'macros', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/macros', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'macroId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'macroId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/macros', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'macroId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_rules = new Postman_Google_Service_TagManager_AccountsContainersRules_Resource( - $this, - $this->serviceName, - 'rules', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/rules', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/rules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_tags = new Postman_Google_Service_TagManager_AccountsContainersTags_Resource( - $this, - $this->serviceName, - 'tags', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/tags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tagId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tagId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/tags', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tagId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_triggers = new Postman_Google_Service_TagManager_AccountsContainersTriggers_Resource( - $this, - $this->serviceName, - 'triggers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_variables = new Postman_Google_Service_TagManager_AccountsContainersVariables_Resource( - $this, - $this->serviceName, - 'variables', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/variables', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'variableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'variableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/variables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'variableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_versions = new Postman_Google_Service_TagManager_AccountsContainersVersions_Resource( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'headers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'publish' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'restore' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_permissions = new Postman_Google_Service_TagManager_AccountsPermissions_Resource( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'accounts/{accountId}/permissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'accounts/{accountId}/permissions/{permissionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/permissions/{permissionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/permissions/{permissionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "accounts" collection of methods. - * Typical usage is: - *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $accounts = $tagmanagerService->accounts;
- *
- */
-class Postman_Google_Service_TagManager_Accounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Gets a GTM Account. (accounts.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Account
- */
- public function get($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Account");
- }
-
- /**
- * Lists all GTM Accounts that a user has access to. (accounts.listAccounts)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListAccountsResponse
- */
- public function listAccounts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListAccountsResponse");
- }
-
- /**
- * Updates a GTM Account. (accounts.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param Postman_Google_Account $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the account in storage.
- * @return Postman_Google_Service_TagManager_Account
- */
- public function update($accountId, Postman_Google_Service_TagManager_Account $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Account");
- }
-}
-
-/**
- * The "containers" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $containers = $tagmanagerService->containers;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a Container. (containers.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param Postman_Google_Container $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Container
- */
- public function create($accountId, Postman_Google_Service_TagManager_Container $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_Container");
- }
-
- /**
- * Deletes a Container. (containers.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a Container. (containers.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Container
- */
- public function get($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Container");
- }
-
- /**
- * Lists all Containers that belongs to a GTM Account.
- * (containers.listAccountsContainers)
- *
- * @param string $accountId The GTM Account ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListContainersResponse
- */
- public function listAccountsContainers($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListContainersResponse");
- }
-
- /**
- * Updates a Container. (containers.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_Container $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the container in storage.
- * @return Postman_Google_Service_TagManager_Container
- */
- public function update($accountId, $containerId, Postman_Google_Service_TagManager_Container $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Container");
- }
-}
-
-/**
- * The "macros" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $macros = $tagmanagerService->macros;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainersMacros_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a GTM Macro. (macros.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_Macro $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Macro
- */
- public function create($accountId, $containerId, Postman_Google_Service_TagManager_Macro $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_Macro");
- }
-
- /**
- * Deletes a GTM Macro. (macros.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $macroId The GTM Macro ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $macroId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a GTM Macro. (macros.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $macroId The GTM Macro ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Macro
- */
- public function get($accountId, $containerId, $macroId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Macro");
- }
-
- /**
- * Lists all GTM Macros of a Container. (macros.listAccountsContainersMacros)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListMacrosResponse
- */
- public function listAccountsContainersMacros($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListMacrosResponse");
- }
-
- /**
- * Updates a GTM Macro. (macros.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $macroId The GTM Macro ID.
- * @param Postman_Google_Macro $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the macro in storage.
- * @return Postman_Google_Service_TagManager_Macro
- */
- public function update($accountId, $containerId, $macroId, Postman_Google_Service_TagManager_Macro $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Macro");
- }
-}
-/**
- * The "rules" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $rules = $tagmanagerService->rules;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainersRules_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a GTM Rule. (rules.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_Rule $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Rule
- */
- public function create($accountId, $containerId, Postman_Google_Service_TagManager_Rule $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_Rule");
- }
-
- /**
- * Deletes a GTM Rule. (rules.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $ruleId The GTM Rule ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $ruleId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a GTM Rule. (rules.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $ruleId The GTM Rule ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Rule
- */
- public function get($accountId, $containerId, $ruleId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Rule");
- }
-
- /**
- * Lists all GTM Rules of a Container. (rules.listAccountsContainersRules)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListRulesResponse
- */
- public function listAccountsContainersRules($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListRulesResponse");
- }
-
- /**
- * Updates a GTM Rule. (rules.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $ruleId The GTM Rule ID.
- * @param Postman_Google_Rule $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the rule in storage.
- * @return Postman_Google_Service_TagManager_Rule
- */
- public function update($accountId, $containerId, $ruleId, Postman_Google_Service_TagManager_Rule $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Rule");
- }
-}
-/**
- * The "tags" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $tags = $tagmanagerService->tags;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainersTags_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a GTM Tag. (tags.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_Tag $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Tag
- */
- public function create($accountId, $containerId, Postman_Google_Service_TagManager_Tag $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_Tag");
- }
-
- /**
- * Deletes a GTM Tag. (tags.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $tagId The GTM Tag ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $tagId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a GTM Tag. (tags.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $tagId The GTM Tag ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Tag
- */
- public function get($accountId, $containerId, $tagId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Tag");
- }
-
- /**
- * Lists all GTM Tags of a Container. (tags.listAccountsContainersTags)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListTagsResponse
- */
- public function listAccountsContainersTags($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListTagsResponse");
- }
-
- /**
- * Updates a GTM Tag. (tags.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $tagId The GTM Tag ID.
- * @param Postman_Google_Tag $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the tag in storage.
- * @return Postman_Google_Service_TagManager_Tag
- */
- public function update($accountId, $containerId, $tagId, Postman_Google_Service_TagManager_Tag $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Tag");
- }
-}
-/**
- * The "triggers" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $triggers = $tagmanagerService->triggers;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainersTriggers_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a GTM Trigger. (triggers.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_Trigger $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Trigger
- */
- public function create($accountId, $containerId, Postman_Google_Service_TagManager_Trigger $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_Trigger");
- }
-
- /**
- * Deletes a GTM Trigger. (triggers.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $triggerId The GTM Trigger ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $triggerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a GTM Trigger. (triggers.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $triggerId The GTM Trigger ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Trigger
- */
- public function get($accountId, $containerId, $triggerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Trigger");
- }
-
- /**
- * Lists all GTM Triggers of a Container.
- * (triggers.listAccountsContainersTriggers)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListTriggersResponse
- */
- public function listAccountsContainersTriggers($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListTriggersResponse");
- }
-
- /**
- * Updates a GTM Trigger. (triggers.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $triggerId The GTM Trigger ID.
- * @param Postman_Google_Trigger $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the trigger in storage.
- * @return Postman_Google_Service_TagManager_Trigger
- */
- public function update($accountId, $containerId, $triggerId, Postman_Google_Service_TagManager_Trigger $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Trigger");
- }
-}
-/**
- * The "variables" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $variables = $tagmanagerService->variables;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainersVariables_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a GTM Variable. (variables.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_Variable $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Variable
- */
- public function create($accountId, $containerId, Postman_Google_Service_TagManager_Variable $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_Variable");
- }
-
- /**
- * Deletes a GTM Variable. (variables.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $variableId The GTM Variable ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $variableId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a GTM Variable. (variables.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $variableId The GTM Variable ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_Variable
- */
- public function get($accountId, $containerId, $variableId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_Variable");
- }
-
- /**
- * Lists all GTM Variables of a Container.
- * (variables.listAccountsContainersVariables)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListVariablesResponse
- */
- public function listAccountsContainersVariables($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListVariablesResponse");
- }
-
- /**
- * Updates a GTM Variable. (variables.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $variableId The GTM Variable ID.
- * @param Postman_Google_Variable $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the variable in storage.
- * @return Postman_Google_Service_TagManager_Variable
- */
- public function update($accountId, $containerId, $variableId, Postman_Google_Service_TagManager_Variable $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_Variable");
- }
-}
-/**
- * The "versions" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $versions = $tagmanagerService->versions;
- *
- */
-class Postman_Google_Service_TagManager_AccountsContainersVersions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a Container Version. (versions.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param Postman_Google_CreateContainerVersionRequestVersionOptions $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_CreateContainerVersionResponse
- */
- public function create($accountId, $containerId, Postman_Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_CreateContainerVersionResponse");
- }
-
- /**
- * Deletes a Container Version. (versions.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $containerVersionId The GTM Container Version ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $containerId, $containerVersionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a Container Version. (versions.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $containerVersionId The GTM Container Version ID. Specify
- * published to retrieve the currently published version.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ContainerVersion
- */
- public function get($accountId, $containerId, $containerVersionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_ContainerVersion");
- }
-
- /**
- * Lists all Container Versions of a GTM Container.
- * (versions.listAccountsContainersVersions)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool headers Retrieve headers only when true.
- * @return Postman_Google_Service_TagManager_ListContainerVersionsResponse
- */
- public function listAccountsContainersVersions($accountId, $containerId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListContainerVersionsResponse");
- }
-
- /**
- * Publishes a Container Version. (versions.publish)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $containerVersionId The GTM Container Version ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the container version in storage.
- * @return Postman_Google_Service_TagManager_PublishContainerVersionResponse
- */
- public function publish($accountId, $containerId, $containerVersionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
- $params = array_merge($params, $optParams);
- return $this->call('publish', array($params), "Postman_Google_Service_TagManager_PublishContainerVersionResponse");
- }
-
- /**
- * Restores a Container Version. This will overwrite the container's current
- * configuration (including its macros, rules and tags). The operation will not
- * have any effect on the version that is being served (i.e. the published
- * version). (versions.restore)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $containerVersionId The GTM Container Version ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ContainerVersion
- */
- public function restore($accountId, $containerId, $containerVersionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
- $params = array_merge($params, $optParams);
- return $this->call('restore', array($params), "Postman_Google_Service_TagManager_ContainerVersion");
- }
-
- /**
- * Undeletes a Container Version. (versions.undelete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $containerVersionId The GTM Container Version ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ContainerVersion
- */
- public function undelete($accountId, $containerId, $containerVersionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
- $params = array_merge($params, $optParams);
- return $this->call('undelete', array($params), "Postman_Google_Service_TagManager_ContainerVersion");
- }
-
- /**
- * Updates a Container Version. (versions.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $containerId The GTM Container ID.
- * @param string $containerVersionId The GTM Container Version ID.
- * @param Postman_Google_ContainerVersion $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string fingerprint When provided, this fingerprint must match the
- * fingerprint of the container version in storage.
- * @return Postman_Google_Service_TagManager_ContainerVersion
- */
- public function update($accountId, $containerId, $containerVersionId, Postman_Google_Service_TagManager_ContainerVersion $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_ContainerVersion");
- }
-}
-/**
- * The "permissions" collection of methods.
- * Typical usage is:
- *
- * $tagmanagerService = new Postman_Google_Service_TagManager(...);
- * $permissions = $tagmanagerService->permissions;
- *
- */
-class Postman_Google_Service_TagManager_AccountsPermissions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Creates a user's Account & Container Permissions. (permissions.create)
- *
- * @param string $accountId The GTM Account ID.
- * @param Postman_Google_UserAccess $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_UserAccess
- */
- public function create($accountId, Postman_Google_Service_TagManager_UserAccess $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('create', array($params), "Postman_Google_Service_TagManager_UserAccess");
- }
-
- /**
- * Removes a user from the account, revoking access to it and all of its
- * containers. (permissions.delete)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $permissionId The GTM User ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($accountId, $permissionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'permissionId' => $permissionId);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Gets a user's Account & Container Permissions. (permissions.get)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $permissionId The GTM User ID.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_UserAccess
- */
- public function get($accountId, $permissionId, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'permissionId' => $permissionId);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_TagManager_UserAccess");
- }
-
- /**
- * List all users that have access to the account along with Account and
- * Container Permissions granted to each of them.
- * (permissions.listAccountsPermissions)
- *
- * @param string $accountId The GTM Account ID. @required
- * tagmanager.accounts.permissions.list
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_ListAccountUsersResponse
- */
- public function listAccountsPermissions($accountId, $optParams = array())
- {
- $params = array('accountId' => $accountId);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_TagManager_ListAccountUsersResponse");
- }
-
- /**
- * Updates a user's Account & Container Permissions. (permissions.update)
- *
- * @param string $accountId The GTM Account ID.
- * @param string $permissionId The GTM User ID.
- * @param Postman_Google_UserAccess $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_TagManager_UserAccess
- */
- public function update($accountId, $permissionId, Postman_Google_Service_TagManager_UserAccess $postBody, $optParams = array())
- {
- $params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_TagManager_UserAccess");
- }
-}
-
-
-
-
-class Postman_Google_Service_TagManager_Account extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $fingerprint;
- public $name;
- public $shareData;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setShareData($shareData)
- {
- $this->shareData = $shareData;
- }
- public function getShareData()
- {
- return $this->shareData;
- }
-}
-
-class Postman_Google_Service_TagManager_AccountAccess extends Postman_Google_Collection
-{
- protected $collection_key = 'permission';
- protected $internal_gapi_mappings = array(
- );
- public $permission;
-
-
- public function setPermission($permission)
- {
- $this->permission = $permission;
- }
- public function getPermission()
- {
- return $this->permission;
- }
-}
-
-class Postman_Google_Service_TagManager_Condition extends Postman_Google_Collection
-{
- protected $collection_key = 'parameter';
- protected $internal_gapi_mappings = array(
- );
- protected $parameterType = 'Postman_Google_Service_TagManager_Parameter';
- protected $parameterDataType = 'array';
- public $type;
-
-
- public function setParameter($parameter)
- {
- $this->parameter = $parameter;
- }
- public function getParameter()
- {
- return $this->parameter;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_TagManager_Container extends Postman_Google_Collection
-{
- protected $collection_key = 'usageContext';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $containerId;
- public $domainName;
- public $enabledBuiltInVariable;
- public $fingerprint;
- public $name;
- public $notes;
- public $publicId;
- public $timeZoneCountryId;
- public $timeZoneId;
- public $usageContext;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setDomainName($domainName)
- {
- $this->domainName = $domainName;
- }
- public function getDomainName()
- {
- return $this->domainName;
- }
- public function setEnabledBuiltInVariable($enabledBuiltInVariable)
- {
- $this->enabledBuiltInVariable = $enabledBuiltInVariable;
- }
- public function getEnabledBuiltInVariable()
- {
- return $this->enabledBuiltInVariable;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setPublicId($publicId)
- {
- $this->publicId = $publicId;
- }
- public function getPublicId()
- {
- return $this->publicId;
- }
- public function setTimeZoneCountryId($timeZoneCountryId)
- {
- $this->timeZoneCountryId = $timeZoneCountryId;
- }
- public function getTimeZoneCountryId()
- {
- return $this->timeZoneCountryId;
- }
- public function setTimeZoneId($timeZoneId)
- {
- $this->timeZoneId = $timeZoneId;
- }
- public function getTimeZoneId()
- {
- return $this->timeZoneId;
- }
- public function setUsageContext($usageContext)
- {
- $this->usageContext = $usageContext;
- }
- public function getUsageContext()
- {
- return $this->usageContext;
- }
-}
-
-class Postman_Google_Service_TagManager_ContainerAccess extends Postman_Google_Collection
-{
- protected $collection_key = 'permission';
- protected $internal_gapi_mappings = array(
- );
- public $containerId;
- public $permission;
-
-
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setPermission($permission)
- {
- $this->permission = $permission;
- }
- public function getPermission()
- {
- return $this->permission;
- }
-}
-
-class Postman_Google_Service_TagManager_ContainerVersion extends Postman_Google_Collection
-{
- protected $collection_key = 'variable';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $containerType = 'Postman_Google_Service_TagManager_Container';
- protected $containerDataType = '';
- public $containerId;
- public $containerVersionId;
- public $deleted;
- public $fingerprint;
- protected $macroType = 'Postman_Google_Service_TagManager_Macro';
- protected $macroDataType = 'array';
- public $name;
- public $notes;
- protected $ruleType = 'Postman_Google_Service_TagManager_Rule';
- protected $ruleDataType = 'array';
- protected $tagType = 'Postman_Google_Service_TagManager_Tag';
- protected $tagDataType = 'array';
- protected $triggerType = 'Postman_Google_Service_TagManager_Trigger';
- protected $triggerDataType = 'array';
- protected $variableType = 'Postman_Google_Service_TagManager_Variable';
- protected $variableDataType = 'array';
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setContainer(Postman_Google_Service_TagManager_Container $container)
- {
- $this->container = $container;
- }
- public function getContainer()
- {
- return $this->container;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setContainerVersionId($containerVersionId)
- {
- $this->containerVersionId = $containerVersionId;
- }
- public function getContainerVersionId()
- {
- return $this->containerVersionId;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setMacro($macro)
- {
- $this->macro = $macro;
- }
- public function getMacro()
- {
- return $this->macro;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setRule($rule)
- {
- $this->rule = $rule;
- }
- public function getRule()
- {
- return $this->rule;
- }
- public function setTag($tag)
- {
- $this->tag = $tag;
- }
- public function getTag()
- {
- return $this->tag;
- }
- public function setTrigger($trigger)
- {
- $this->trigger = $trigger;
- }
- public function getTrigger()
- {
- return $this->trigger;
- }
- public function setVariable($variable)
- {
- $this->variable = $variable;
- }
- public function getVariable()
- {
- return $this->variable;
- }
-}
-
-class Postman_Google_Service_TagManager_ContainerVersionHeader extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $containerId;
- public $containerVersionId;
- public $deleted;
- public $name;
- public $numMacros;
- public $numRules;
- public $numTags;
- public $numTriggers;
- public $numVariables;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setContainerVersionId($containerVersionId)
- {
- $this->containerVersionId = $containerVersionId;
- }
- public function getContainerVersionId()
- {
- return $this->containerVersionId;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNumMacros($numMacros)
- {
- $this->numMacros = $numMacros;
- }
- public function getNumMacros()
- {
- return $this->numMacros;
- }
- public function setNumRules($numRules)
- {
- $this->numRules = $numRules;
- }
- public function getNumRules()
- {
- return $this->numRules;
- }
- public function setNumTags($numTags)
- {
- $this->numTags = $numTags;
- }
- public function getNumTags()
- {
- return $this->numTags;
- }
- public function setNumTriggers($numTriggers)
- {
- $this->numTriggers = $numTriggers;
- }
- public function getNumTriggers()
- {
- return $this->numTriggers;
- }
- public function setNumVariables($numVariables)
- {
- $this->numVariables = $numVariables;
- }
- public function getNumVariables()
- {
- return $this->numVariables;
- }
-}
-
-class Postman_Google_Service_TagManager_CreateContainerVersionRequestVersionOptions extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $name;
- public $notes;
- public $quickPreview;
-
-
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setQuickPreview($quickPreview)
- {
- $this->quickPreview = $quickPreview;
- }
- public function getQuickPreview()
- {
- return $this->quickPreview;
- }
-}
-
-class Postman_Google_Service_TagManager_CreateContainerVersionResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $compilerError;
- protected $containerVersionType = 'Postman_Google_Service_TagManager_ContainerVersion';
- protected $containerVersionDataType = '';
-
-
- public function setCompilerError($compilerError)
- {
- $this->compilerError = $compilerError;
- }
- public function getCompilerError()
- {
- return $this->compilerError;
- }
- public function setContainerVersion(Postman_Google_Service_TagManager_ContainerVersion $containerVersion)
- {
- $this->containerVersion = $containerVersion;
- }
- public function getContainerVersion()
- {
- return $this->containerVersion;
- }
-}
-
-class Postman_Google_Service_TagManager_ListAccountUsersResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'userAccess';
- protected $internal_gapi_mappings = array(
- );
- protected $userAccessType = 'Postman_Google_Service_TagManager_UserAccess';
- protected $userAccessDataType = 'array';
-
-
- public function setUserAccess($userAccess)
- {
- $this->userAccess = $userAccess;
- }
- public function getUserAccess()
- {
- return $this->userAccess;
- }
-}
-
-class Postman_Google_Service_TagManager_ListAccountsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'accounts';
- protected $internal_gapi_mappings = array(
- );
- protected $accountsType = 'Postman_Google_Service_TagManager_Account';
- protected $accountsDataType = 'array';
-
-
- public function setAccounts($accounts)
- {
- $this->accounts = $accounts;
- }
- public function getAccounts()
- {
- return $this->accounts;
- }
-}
-
-class Postman_Google_Service_TagManager_ListContainerVersionsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'containerVersionHeader';
- protected $internal_gapi_mappings = array(
- );
- protected $containerVersionType = 'Postman_Google_Service_TagManager_ContainerVersion';
- protected $containerVersionDataType = 'array';
- protected $containerVersionHeaderType = 'Postman_Google_Service_TagManager_ContainerVersionHeader';
- protected $containerVersionHeaderDataType = 'array';
-
-
- public function setContainerVersion($containerVersion)
- {
- $this->containerVersion = $containerVersion;
- }
- public function getContainerVersion()
- {
- return $this->containerVersion;
- }
- public function setContainerVersionHeader($containerVersionHeader)
- {
- $this->containerVersionHeader = $containerVersionHeader;
- }
- public function getContainerVersionHeader()
- {
- return $this->containerVersionHeader;
- }
-}
-
-class Postman_Google_Service_TagManager_ListContainersResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'containers';
- protected $internal_gapi_mappings = array(
- );
- protected $containersType = 'Postman_Google_Service_TagManager_Container';
- protected $containersDataType = 'array';
-
-
- public function setContainers($containers)
- {
- $this->containers = $containers;
- }
- public function getContainers()
- {
- return $this->containers;
- }
-}
-
-class Postman_Google_Service_TagManager_ListMacrosResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'macros';
- protected $internal_gapi_mappings = array(
- );
- protected $macrosType = 'Postman_Google_Service_TagManager_Macro';
- protected $macrosDataType = 'array';
-
-
- public function setMacros($macros)
- {
- $this->macros = $macros;
- }
- public function getMacros()
- {
- return $this->macros;
- }
-}
-
-class Postman_Google_Service_TagManager_ListRulesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'rules';
- protected $internal_gapi_mappings = array(
- );
- protected $rulesType = 'Postman_Google_Service_TagManager_Rule';
- protected $rulesDataType = 'array';
-
-
- public function setRules($rules)
- {
- $this->rules = $rules;
- }
- public function getRules()
- {
- return $this->rules;
- }
-}
-
-class Postman_Google_Service_TagManager_ListTagsResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- protected $tagsType = 'Postman_Google_Service_TagManager_Tag';
- protected $tagsDataType = 'array';
-
-
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
-}
-
-class Postman_Google_Service_TagManager_ListTriggersResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'triggers';
- protected $internal_gapi_mappings = array(
- );
- protected $triggersType = 'Postman_Google_Service_TagManager_Trigger';
- protected $triggersDataType = 'array';
-
-
- public function setTriggers($triggers)
- {
- $this->triggers = $triggers;
- }
- public function getTriggers()
- {
- return $this->triggers;
- }
-}
-
-class Postman_Google_Service_TagManager_ListVariablesResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'variables';
- protected $internal_gapi_mappings = array(
- );
- protected $variablesType = 'Postman_Google_Service_TagManager_Variable';
- protected $variablesDataType = 'array';
-
-
- public function setVariables($variables)
- {
- $this->variables = $variables;
- }
- public function getVariables()
- {
- return $this->variables;
- }
-}
-
-class Postman_Google_Service_TagManager_Macro extends Postman_Google_Collection
-{
- protected $collection_key = 'parameter';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $containerId;
- public $disablingRuleId;
- public $enablingRuleId;
- public $fingerprint;
- public $macroId;
- public $name;
- public $notes;
- protected $parameterType = 'Postman_Google_Service_TagManager_Parameter';
- protected $parameterDataType = 'array';
- public $scheduleEndMs;
- public $scheduleStartMs;
- public $type;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setDisablingRuleId($disablingRuleId)
- {
- $this->disablingRuleId = $disablingRuleId;
- }
- public function getDisablingRuleId()
- {
- return $this->disablingRuleId;
- }
- public function setEnablingRuleId($enablingRuleId)
- {
- $this->enablingRuleId = $enablingRuleId;
- }
- public function getEnablingRuleId()
- {
- return $this->enablingRuleId;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setMacroId($macroId)
- {
- $this->macroId = $macroId;
- }
- public function getMacroId()
- {
- return $this->macroId;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setParameter($parameter)
- {
- $this->parameter = $parameter;
- }
- public function getParameter()
- {
- return $this->parameter;
- }
- public function setScheduleEndMs($scheduleEndMs)
- {
- $this->scheduleEndMs = $scheduleEndMs;
- }
- public function getScheduleEndMs()
- {
- return $this->scheduleEndMs;
- }
- public function setScheduleStartMs($scheduleStartMs)
- {
- $this->scheduleStartMs = $scheduleStartMs;
- }
- public function getScheduleStartMs()
- {
- return $this->scheduleStartMs;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_TagManager_Parameter extends Postman_Google_Collection
-{
- protected $collection_key = 'map';
- protected $internal_gapi_mappings = array(
- );
- public $key;
- protected $listType = 'Postman_Google_Service_TagManager_Parameter';
- protected $listDataType = 'array';
- protected $mapType = 'Postman_Google_Service_TagManager_Parameter';
- protected $mapDataType = 'array';
- public $type;
- public $value;
-
-
- public function setKey($key)
- {
- $this->key = $key;
- }
- public function getKey()
- {
- return $this->key;
- }
- public function setList($list)
- {
- $this->list = $list;
- }
- public function getList()
- {
- return $this->list;
- }
- public function setMap($map)
- {
- $this->map = $map;
- }
- public function getMap()
- {
- return $this->map;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_TagManager_PublishContainerVersionResponse extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $compilerError;
- protected $containerVersionType = 'Postman_Google_Service_TagManager_ContainerVersion';
- protected $containerVersionDataType = '';
-
-
- public function setCompilerError($compilerError)
- {
- $this->compilerError = $compilerError;
- }
- public function getCompilerError()
- {
- return $this->compilerError;
- }
- public function setContainerVersion(Postman_Google_Service_TagManager_ContainerVersion $containerVersion)
- {
- $this->containerVersion = $containerVersion;
- }
- public function getContainerVersion()
- {
- return $this->containerVersion;
- }
-}
-
-class Postman_Google_Service_TagManager_Rule extends Postman_Google_Collection
-{
- protected $collection_key = 'condition';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $conditionType = 'Postman_Google_Service_TagManager_Condition';
- protected $conditionDataType = 'array';
- public $containerId;
- public $fingerprint;
- public $name;
- public $notes;
- public $ruleId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setCondition($condition)
- {
- $this->condition = $condition;
- }
- public function getCondition()
- {
- return $this->condition;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setRuleId($ruleId)
- {
- $this->ruleId = $ruleId;
- }
- public function getRuleId()
- {
- return $this->ruleId;
- }
-}
-
-class Postman_Google_Service_TagManager_Tag extends Postman_Google_Collection
-{
- protected $collection_key = 'parameter';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $blockingRuleId;
- public $blockingTriggerId;
- public $containerId;
- public $fingerprint;
- public $firingRuleId;
- public $firingTriggerId;
- public $liveOnly;
- public $name;
- public $notes;
- protected $parameterType = 'Postman_Google_Service_TagManager_Parameter';
- protected $parameterDataType = 'array';
- protected $priorityType = 'Postman_Google_Service_TagManager_Parameter';
- protected $priorityDataType = '';
- public $scheduleEndMs;
- public $scheduleStartMs;
- public $tagId;
- public $type;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setBlockingRuleId($blockingRuleId)
- {
- $this->blockingRuleId = $blockingRuleId;
- }
- public function getBlockingRuleId()
- {
- return $this->blockingRuleId;
- }
- public function setBlockingTriggerId($blockingTriggerId)
- {
- $this->blockingTriggerId = $blockingTriggerId;
- }
- public function getBlockingTriggerId()
- {
- return $this->blockingTriggerId;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setFiringRuleId($firingRuleId)
- {
- $this->firingRuleId = $firingRuleId;
- }
- public function getFiringRuleId()
- {
- return $this->firingRuleId;
- }
- public function setFiringTriggerId($firingTriggerId)
- {
- $this->firingTriggerId = $firingTriggerId;
- }
- public function getFiringTriggerId()
- {
- return $this->firingTriggerId;
- }
- public function setLiveOnly($liveOnly)
- {
- $this->liveOnly = $liveOnly;
- }
- public function getLiveOnly()
- {
- return $this->liveOnly;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setParameter($parameter)
- {
- $this->parameter = $parameter;
- }
- public function getParameter()
- {
- return $this->parameter;
- }
- public function setPriority(Postman_Google_Service_TagManager_Parameter $priority)
- {
- $this->priority = $priority;
- }
- public function getPriority()
- {
- return $this->priority;
- }
- public function setScheduleEndMs($scheduleEndMs)
- {
- $this->scheduleEndMs = $scheduleEndMs;
- }
- public function getScheduleEndMs()
- {
- return $this->scheduleEndMs;
- }
- public function setScheduleStartMs($scheduleStartMs)
- {
- $this->scheduleStartMs = $scheduleStartMs;
- }
- public function getScheduleStartMs()
- {
- return $this->scheduleStartMs;
- }
- public function setTagId($tagId)
- {
- $this->tagId = $tagId;
- }
- public function getTagId()
- {
- return $this->tagId;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_TagManager_Trigger extends Postman_Google_Collection
-{
- protected $collection_key = 'filter';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- protected $autoEventFilterType = 'Postman_Google_Service_TagManager_Condition';
- protected $autoEventFilterDataType = 'array';
- protected $checkValidationType = 'Postman_Google_Service_TagManager_Parameter';
- protected $checkValidationDataType = '';
- public $containerId;
- protected $customEventFilterType = 'Postman_Google_Service_TagManager_Condition';
- protected $customEventFilterDataType = 'array';
- protected $enableAllVideosType = 'Postman_Google_Service_TagManager_Parameter';
- protected $enableAllVideosDataType = '';
- protected $eventNameType = 'Postman_Google_Service_TagManager_Parameter';
- protected $eventNameDataType = '';
- protected $filterType = 'Postman_Google_Service_TagManager_Condition';
- protected $filterDataType = 'array';
- public $fingerprint;
- protected $intervalType = 'Postman_Google_Service_TagManager_Parameter';
- protected $intervalDataType = '';
- protected $limitType = 'Postman_Google_Service_TagManager_Parameter';
- protected $limitDataType = '';
- public $name;
- public $triggerId;
- public $type;
- protected $uniqueTriggerIdType = 'Postman_Google_Service_TagManager_Parameter';
- protected $uniqueTriggerIdDataType = '';
- protected $videoPercentageListType = 'Postman_Google_Service_TagManager_Parameter';
- protected $videoPercentageListDataType = '';
- protected $waitForTagsType = 'Postman_Google_Service_TagManager_Parameter';
- protected $waitForTagsDataType = '';
- protected $waitForTagsTimeoutType = 'Postman_Google_Service_TagManager_Parameter';
- protected $waitForTagsTimeoutDataType = '';
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setAutoEventFilter($autoEventFilter)
- {
- $this->autoEventFilter = $autoEventFilter;
- }
- public function getAutoEventFilter()
- {
- return $this->autoEventFilter;
- }
- public function setCheckValidation(Postman_Google_Service_TagManager_Parameter $checkValidation)
- {
- $this->checkValidation = $checkValidation;
- }
- public function getCheckValidation()
- {
- return $this->checkValidation;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setCustomEventFilter($customEventFilter)
- {
- $this->customEventFilter = $customEventFilter;
- }
- public function getCustomEventFilter()
- {
- return $this->customEventFilter;
- }
- public function setEnableAllVideos(Postman_Google_Service_TagManager_Parameter $enableAllVideos)
- {
- $this->enableAllVideos = $enableAllVideos;
- }
- public function getEnableAllVideos()
- {
- return $this->enableAllVideos;
- }
- public function setEventName(Postman_Google_Service_TagManager_Parameter $eventName)
- {
- $this->eventName = $eventName;
- }
- public function getEventName()
- {
- return $this->eventName;
- }
- public function setFilter($filter)
- {
- $this->filter = $filter;
- }
- public function getFilter()
- {
- return $this->filter;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setInterval(Postman_Google_Service_TagManager_Parameter $interval)
- {
- $this->interval = $interval;
- }
- public function getInterval()
- {
- return $this->interval;
- }
- public function setLimit(Postman_Google_Service_TagManager_Parameter $limit)
- {
- $this->limit = $limit;
- }
- public function getLimit()
- {
- return $this->limit;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setTriggerId($triggerId)
- {
- $this->triggerId = $triggerId;
- }
- public function getTriggerId()
- {
- return $this->triggerId;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setUniqueTriggerId(Postman_Google_Service_TagManager_Parameter $uniqueTriggerId)
- {
- $this->uniqueTriggerId = $uniqueTriggerId;
- }
- public function getUniqueTriggerId()
- {
- return $this->uniqueTriggerId;
- }
- public function setVideoPercentageList(Postman_Google_Service_TagManager_Parameter $videoPercentageList)
- {
- $this->videoPercentageList = $videoPercentageList;
- }
- public function getVideoPercentageList()
- {
- return $this->videoPercentageList;
- }
- public function setWaitForTags(Postman_Google_Service_TagManager_Parameter $waitForTags)
- {
- $this->waitForTags = $waitForTags;
- }
- public function getWaitForTags()
- {
- return $this->waitForTags;
- }
- public function setWaitForTagsTimeout(Postman_Google_Service_TagManager_Parameter $waitForTagsTimeout)
- {
- $this->waitForTagsTimeout = $waitForTagsTimeout;
- }
- public function getWaitForTagsTimeout()
- {
- return $this->waitForTagsTimeout;
- }
-}
-
-class Postman_Google_Service_TagManager_UserAccess extends Postman_Google_Collection
-{
- protected $collection_key = 'containerAccess';
- protected $internal_gapi_mappings = array(
- );
- protected $accountAccessType = 'Postman_Google_Service_TagManager_AccountAccess';
- protected $accountAccessDataType = '';
- public $accountId;
- protected $containerAccessType = 'Postman_Google_Service_TagManager_ContainerAccess';
- protected $containerAccessDataType = 'array';
- public $emailAddress;
- public $permissionId;
-
-
- public function setAccountAccess(Postman_Google_Service_TagManager_AccountAccess $accountAccess)
- {
- $this->accountAccess = $accountAccess;
- }
- public function getAccountAccess()
- {
- return $this->accountAccess;
- }
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setContainerAccess($containerAccess)
- {
- $this->containerAccess = $containerAccess;
- }
- public function getContainerAccess()
- {
- return $this->containerAccess;
- }
- public function setEmailAddress($emailAddress)
- {
- $this->emailAddress = $emailAddress;
- }
- public function getEmailAddress()
- {
- return $this->emailAddress;
- }
- public function setPermissionId($permissionId)
- {
- $this->permissionId = $permissionId;
- }
- public function getPermissionId()
- {
- return $this->permissionId;
- }
-}
-
-class Postman_Google_Service_TagManager_Variable extends Postman_Google_Collection
-{
- protected $collection_key = 'parameter';
- protected $internal_gapi_mappings = array(
- );
- public $accountId;
- public $containerId;
- public $disablingTriggerId;
- public $enablingTriggerId;
- public $fingerprint;
- public $name;
- public $notes;
- protected $parameterType = 'Postman_Google_Service_TagManager_Parameter';
- protected $parameterDataType = 'array';
- public $scheduleEndMs;
- public $scheduleStartMs;
- public $type;
- public $variableId;
-
-
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- public function getAccountId()
- {
- return $this->accountId;
- }
- public function setContainerId($containerId)
- {
- $this->containerId = $containerId;
- }
- public function getContainerId()
- {
- return $this->containerId;
- }
- public function setDisablingTriggerId($disablingTriggerId)
- {
- $this->disablingTriggerId = $disablingTriggerId;
- }
- public function getDisablingTriggerId()
- {
- return $this->disablingTriggerId;
- }
- public function setEnablingTriggerId($enablingTriggerId)
- {
- $this->enablingTriggerId = $enablingTriggerId;
- }
- public function getEnablingTriggerId()
- {
- return $this->enablingTriggerId;
- }
- public function setFingerprint($fingerprint)
- {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint()
- {
- return $this->fingerprint;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setParameter($parameter)
- {
- $this->parameter = $parameter;
- }
- public function getParameter()
- {
- return $this->parameter;
- }
- public function setScheduleEndMs($scheduleEndMs)
- {
- $this->scheduleEndMs = $scheduleEndMs;
- }
- public function getScheduleEndMs()
- {
- return $this->scheduleEndMs;
- }
- public function setScheduleStartMs($scheduleStartMs)
- {
- $this->scheduleStartMs = $scheduleStartMs;
- }
- public function getScheduleStartMs()
- {
- return $this->scheduleStartMs;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVariableId($variableId)
- {
- $this->variableId = $variableId;
- }
- public function getVariableId()
- {
- return $this->variableId;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Taskqueue.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Taskqueue.php
deleted file mode 100644
index 0f70ecf..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Taskqueue.php
+++ /dev/null
@@ -1,689 +0,0 @@
-
- * Lets you access a Google App Engine Pull Task Queue over REST.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Taskqueue extends Postman_Google_Service -{ - /** Manage your Tasks and Taskqueues. */ - const TASKQUEUE = - "https://www.googleapis.com/auth/taskqueue"; - /** Consume Tasks from your Taskqueues. */ - const TASKQUEUE_CONSUMER = - "https://www.googleapis.com/auth/taskqueue.consumer"; - - public $taskqueues; - public $tasks; - - - /** - * Constructs the internal representation of the Taskqueue service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'taskqueue/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'taskqueue'; - - $this->taskqueues = new Postman_Google_Service_Taskqueue_Taskqueues_Resource( - $this, - $this->serviceName, - 'taskqueues', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/taskqueues/{taskqueue}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'getStats' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->tasks = new Postman_Google_Service_Taskqueue_Tasks_Resource( - $this, - $this->serviceName, - 'tasks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'lease' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/lease', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'numTasks' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'leaseSecs' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'groupByTag' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'tag' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'newLeaseSeconds' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'newLeaseSeconds' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "taskqueues" collection of methods. - * Typical usage is: - *
- * $taskqueueService = new Postman_Google_Service_Taskqueue(...);
- * $taskqueues = $taskqueueService->taskqueues;
- *
- */
-class Postman_Google_Service_Taskqueue_Taskqueues_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Get detailed information about a TaskQueue. (taskqueues.get)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue The id of the taskqueue to get the properties of.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool getStats Whether to get stats. Optional.
- * @return Postman_Google_Service_Taskqueue_TaskQueue
- */
- public function get($project, $taskqueue, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Taskqueue_TaskQueue");
- }
-}
-
-/**
- * The "tasks" collection of methods.
- * Typical usage is:
- *
- * $taskqueueService = new Postman_Google_Service_Taskqueue(...);
- * $tasks = $taskqueueService->tasks;
- *
- */
-class Postman_Google_Service_Taskqueue_Tasks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Delete a task from a TaskQueue. (tasks.delete)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue The taskqueue to delete a task from.
- * @param string $task The id of the task to delete.
- * @param array $optParams Optional parameters.
- */
- public function delete($project, $taskqueue, $task, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Get a particular task from a TaskQueue. (tasks.get)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue The taskqueue in which the task belongs.
- * @param string $task The task to get properties of.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Taskqueue_Task
- */
- public function get($project, $taskqueue, $task, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Taskqueue_Task");
- }
-
- /**
- * Insert a new task in a TaskQueue (tasks.insert)
- *
- * @param string $project The project under which the queue lies
- * @param string $taskqueue The taskqueue to insert the task into
- * @param Postman_Google_Task $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Taskqueue_Task
- */
- public function insert($project, $taskqueue, Postman_Google_Service_Taskqueue_Task $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Taskqueue_Task");
- }
-
- /**
- * Lease 1 or more tasks from a TaskQueue. (tasks.lease)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue The taskqueue to lease a task from.
- * @param int $numTasks The number of tasks to lease.
- * @param int $leaseSecs The lease in seconds.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool groupByTag When true, all returned tasks will have the same
- * tag
- * @opt_param string tag The tag allowed for tasks in the response. Must only be
- * specified if group_by_tag is true. If group_by_tag is true and tag is not
- * specified the tag will be that of the oldest task by eta, i.e. the first
- * available tag
- * @return Postman_Google_Service_Taskqueue_Tasks
- */
- public function lease($project, $taskqueue, $numTasks, $leaseSecs, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue, 'numTasks' => $numTasks, 'leaseSecs' => $leaseSecs);
- $params = array_merge($params, $optParams);
- return $this->call('lease', array($params), "Postman_Google_Service_Taskqueue_Tasks");
- }
-
- /**
- * List Tasks in a TaskQueue (tasks.listTasks)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue The id of the taskqueue to list tasks from.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Taskqueue_Tasks2
- */
- public function listTasks($project, $taskqueue, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Taskqueue_Tasks2");
- }
-
- /**
- * Update tasks that are leased out of a TaskQueue. This method supports patch
- * semantics. (tasks.patch)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue
- * @param string $task
- * @param int $newLeaseSeconds The new lease in seconds.
- * @param Postman_Google_Task $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Taskqueue_Task
- */
- public function patch($project, $taskqueue, $task, $newLeaseSeconds, Postman_Google_Service_Taskqueue_Task $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Taskqueue_Task");
- }
-
- /**
- * Update tasks that are leased out of a TaskQueue. (tasks.update)
- *
- * @param string $project The project under which the queue lies.
- * @param string $taskqueue
- * @param string $task
- * @param int $newLeaseSeconds The new lease in seconds.
- * @param Postman_Google_Task $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Taskqueue_Task
- */
- public function update($project, $taskqueue, $task, $newLeaseSeconds, Postman_Google_Service_Taskqueue_Task $postBody, $optParams = array())
- {
- $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Taskqueue_Task");
- }
-}
-
-
-
-
-class Postman_Google_Service_Taskqueue_Task extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "retryCount" => "retry_count",
- );
- public $enqueueTimestamp;
- public $id;
- public $kind;
- public $leaseTimestamp;
- public $payloadBase64;
- public $queueName;
- public $retryCount;
- public $tag;
-
-
- public function setEnqueueTimestamp($enqueueTimestamp)
- {
- $this->enqueueTimestamp = $enqueueTimestamp;
- }
- public function getEnqueueTimestamp()
- {
- return $this->enqueueTimestamp;
- }
- 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 setLeaseTimestamp($leaseTimestamp)
- {
- $this->leaseTimestamp = $leaseTimestamp;
- }
- public function getLeaseTimestamp()
- {
- return $this->leaseTimestamp;
- }
- public function setPayloadBase64($payloadBase64)
- {
- $this->payloadBase64 = $payloadBase64;
- }
- public function getPayloadBase64()
- {
- return $this->payloadBase64;
- }
- public function setQueueName($queueName)
- {
- $this->queueName = $queueName;
- }
- public function getQueueName()
- {
- return $this->queueName;
- }
- public function setRetryCount($retryCount)
- {
- $this->retryCount = $retryCount;
- }
- public function getRetryCount()
- {
- return $this->retryCount;
- }
- public function setTag($tag)
- {
- $this->tag = $tag;
- }
- public function getTag()
- {
- return $this->tag;
- }
-}
-
-class Postman_Google_Service_Taskqueue_TaskQueue extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $aclType = 'Postman_Google_Service_Taskqueue_TaskQueueAcl';
- protected $aclDataType = '';
- public $id;
- public $kind;
- public $maxLeases;
- protected $statsType = 'Postman_Google_Service_Taskqueue_TaskQueueStats';
- protected $statsDataType = '';
-
-
- public function setAcl(Postman_Google_Service_Taskqueue_TaskQueueAcl $acl)
- {
- $this->acl = $acl;
- }
- public function getAcl()
- {
- return $this->acl;
- }
- 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 setMaxLeases($maxLeases)
- {
- $this->maxLeases = $maxLeases;
- }
- public function getMaxLeases()
- {
- return $this->maxLeases;
- }
- public function setStats(Postman_Google_Service_Taskqueue_TaskQueueStats $stats)
- {
- $this->stats = $stats;
- }
- public function getStats()
- {
- return $this->stats;
- }
-}
-
-class Postman_Google_Service_Taskqueue_TaskQueueAcl extends Postman_Google_Collection
-{
- protected $collection_key = 'producerEmails';
- protected $internal_gapi_mappings = array(
- );
- public $adminEmails;
- public $consumerEmails;
- public $producerEmails;
-
-
- public function setAdminEmails($adminEmails)
- {
- $this->adminEmails = $adminEmails;
- }
- public function getAdminEmails()
- {
- return $this->adminEmails;
- }
- public function setConsumerEmails($consumerEmails)
- {
- $this->consumerEmails = $consumerEmails;
- }
- public function getConsumerEmails()
- {
- return $this->consumerEmails;
- }
- public function setProducerEmails($producerEmails)
- {
- $this->producerEmails = $producerEmails;
- }
- public function getProducerEmails()
- {
- return $this->producerEmails;
- }
-}
-
-class Postman_Google_Service_Taskqueue_TaskQueueStats extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $leasedLastHour;
- public $leasedLastMinute;
- public $oldestTask;
- public $totalTasks;
-
-
- public function setLeasedLastHour($leasedLastHour)
- {
- $this->leasedLastHour = $leasedLastHour;
- }
- public function getLeasedLastHour()
- {
- return $this->leasedLastHour;
- }
- public function setLeasedLastMinute($leasedLastMinute)
- {
- $this->leasedLastMinute = $leasedLastMinute;
- }
- public function getLeasedLastMinute()
- {
- return $this->leasedLastMinute;
- }
- public function setOldestTask($oldestTask)
- {
- $this->oldestTask = $oldestTask;
- }
- public function getOldestTask()
- {
- return $this->oldestTask;
- }
- public function setTotalTasks($totalTasks)
- {
- $this->totalTasks = $totalTasks;
- }
- public function getTotalTasks()
- {
- return $this->totalTasks;
- }
-}
-
-class Postman_Google_Service_Taskqueue_Tasks extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Taskqueue_Task';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_Taskqueue_Tasks2 extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Taskqueue_Task';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Tasks.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Tasks.php
deleted file mode 100644
index 772d295..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Tasks.php
+++ /dev/null
@@ -1,907 +0,0 @@
-
- * Lets you manage your tasks and task lists.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Tasks extends Postman_Google_Service -{ - /** Manage your tasks. */ - const TASKS = - "https://www.googleapis.com/auth/tasks"; - /** View your tasks. */ - const TASKS_READONLY = - "https://www.googleapis.com/auth/tasks.readonly"; - - public $tasklists; - public $tasks; - - - /** - * Constructs the internal representation of the Tasks service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'tasks/v1/'; - $this->version = 'v1'; - $this->serviceName = 'tasks'; - - $this->tasklists = new Postman_Google_Service_Tasks_Tasklists_Resource( - $this, - $this->serviceName, - 'tasklists', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'users/@me/lists', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'users/@me/lists', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tasks = new Postman_Google_Service_Tasks_Tasks_Resource( - $this, - $this->serviceName, - 'tasks', - array( - 'methods' => array( - 'clear' => array( - 'path' => 'lists/{tasklist}/clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'lists/{tasklist}/tasks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'previous' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'lists/{tasklist}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dueMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'completedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showCompleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'completedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showHidden' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'dueMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'lists/{tasklist}/tasks/{task}/move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'previous' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "tasklists" collection of methods. - * Typical usage is: - *
- * $tasksService = new Postman_Google_Service_Tasks(...);
- * $tasklists = $tasksService->tasklists;
- *
- */
-class Postman_Google_Service_Tasks_Tasklists_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes the authenticated user's specified task list. (tasklists.delete)
- *
- * @param string $tasklist Task list identifier.
- * @param array $optParams Optional parameters.
- */
- public function delete($tasklist, $optParams = array())
- {
- $params = array('tasklist' => $tasklist);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns the authenticated user's specified task list. (tasklists.get)
- *
- * @param string $tasklist Task list identifier.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_TaskList
- */
- public function get($tasklist, $optParams = array())
- {
- $params = array('tasklist' => $tasklist);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Tasks_TaskList");
- }
-
- /**
- * Creates a new task list and adds it to the authenticated user's task lists.
- * (tasklists.insert)
- *
- * @param Postman_Google_TaskList $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_TaskList
- */
- public function insert(Postman_Google_Service_Tasks_TaskList $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Tasks_TaskList");
- }
-
- /**
- * Returns all the authenticated user's task lists. (tasklists.listTasklists)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string pageToken Token specifying the result page to return.
- * Optional.
- * @opt_param string maxResults Maximum number of task lists returned on one
- * page. Optional. The default is 100.
- * @return Postman_Google_Service_Tasks_TaskLists
- */
- public function listTasklists($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Tasks_TaskLists");
- }
-
- /**
- * Updates the authenticated user's specified task list. This method supports
- * patch semantics. (tasklists.patch)
- *
- * @param string $tasklist Task list identifier.
- * @param Postman_Google_TaskList $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_TaskList
- */
- public function patch($tasklist, Postman_Google_Service_Tasks_TaskList $postBody, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Tasks_TaskList");
- }
-
- /**
- * Updates the authenticated user's specified task list. (tasklists.update)
- *
- * @param string $tasklist Task list identifier.
- * @param Postman_Google_TaskList $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_TaskList
- */
- public function update($tasklist, Postman_Google_Service_Tasks_TaskList $postBody, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Tasks_TaskList");
- }
-}
-
-/**
- * The "tasks" collection of methods.
- * Typical usage is:
- *
- * $tasksService = new Postman_Google_Service_Tasks(...);
- * $tasks = $tasksService->tasks;
- *
- */
-class Postman_Google_Service_Tasks_Tasks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Clears all completed tasks from the specified task list. The affected tasks
- * will be marked as 'hidden' and no longer be returned by default when
- * retrieving all tasks for a task list. (tasks.clear)
- *
- * @param string $tasklist Task list identifier.
- * @param array $optParams Optional parameters.
- */
- public function clear($tasklist, $optParams = array())
- {
- $params = array('tasklist' => $tasklist);
- $params = array_merge($params, $optParams);
- return $this->call('clear', array($params));
- }
-
- /**
- * Deletes the specified task from the task list. (tasks.delete)
- *
- * @param string $tasklist Task list identifier.
- * @param string $task Task identifier.
- * @param array $optParams Optional parameters.
- */
- public function delete($tasklist, $task, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'task' => $task);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Returns the specified task. (tasks.get)
- *
- * @param string $tasklist Task list identifier.
- * @param string $task Task identifier.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_Task
- */
- public function get($tasklist, $task, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'task' => $task);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Tasks_Task");
- }
-
- /**
- * Creates a new task on the specified task list. (tasks.insert)
- *
- * @param string $tasklist Task list identifier.
- * @param Postman_Google_Task $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string parent Parent task identifier. If the task is created at
- * the top level, this parameter is omitted. Optional.
- * @opt_param string previous Previous sibling task identifier. If the task is
- * created at the first position among its siblings, this parameter is omitted.
- * Optional.
- * @return Postman_Google_Service_Tasks_Task
- */
- public function insert($tasklist, Postman_Google_Service_Tasks_Task $postBody, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Tasks_Task");
- }
-
- /**
- * Returns all tasks in the specified task list. (tasks.listTasks)
- *
- * @param string $tasklist Task list identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string dueMax Upper bound for a task's due date (as a RFC 3339
- * timestamp) to filter by. Optional. The default is not to filter by due date.
- * @opt_param bool showDeleted Flag indicating whether deleted tasks are
- * returned in the result. Optional. The default is False.
- * @opt_param string updatedMin Lower bound for a task's last modification time
- * (as a RFC 3339 timestamp) to filter by. Optional. The default is not to
- * filter by last modification time.
- * @opt_param string completedMin Lower bound for a task's completion date (as a
- * RFC 3339 timestamp) to filter by. Optional. The default is not to filter by
- * completion date.
- * @opt_param string maxResults Maximum number of task lists returned on one
- * page. Optional. The default is 100.
- * @opt_param bool showCompleted Flag indicating whether completed tasks are
- * returned in the result. Optional. The default is True.
- * @opt_param string pageToken Token specifying the result page to return.
- * Optional.
- * @opt_param string completedMax Upper bound for a task's completion date (as a
- * RFC 3339 timestamp) to filter by. Optional. The default is not to filter by
- * completion date.
- * @opt_param bool showHidden Flag indicating whether hidden tasks are returned
- * in the result. Optional. The default is False.
- * @opt_param string dueMin Lower bound for a task's due date (as a RFC 3339
- * timestamp) to filter by. Optional. The default is not to filter by due date.
- * @return Postman_Google_Service_Tasks_Tasks
- */
- public function listTasks($tasklist, $optParams = array())
- {
- $params = array('tasklist' => $tasklist);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Tasks_Tasks");
- }
-
- /**
- * Moves the specified task to another position in the task list. This can
- * include putting it as a child task under a new parent and/or move it to a
- * different position among its sibling tasks. (tasks.move)
- *
- * @param string $tasklist Task list identifier.
- * @param string $task Task identifier.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string parent New parent task identifier. If the task is moved to
- * the top level, this parameter is omitted. Optional.
- * @opt_param string previous New previous sibling task identifier. If the task
- * is moved to the first position among its siblings, this parameter is omitted.
- * Optional.
- * @return Postman_Google_Service_Tasks_Task
- */
- public function move($tasklist, $task, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'task' => $task);
- $params = array_merge($params, $optParams);
- return $this->call('move', array($params), "Postman_Google_Service_Tasks_Task");
- }
-
- /**
- * Updates the specified task. This method supports patch semantics.
- * (tasks.patch)
- *
- * @param string $tasklist Task list identifier.
- * @param string $task Task identifier.
- * @param Postman_Google_Task $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_Task
- */
- public function patch($tasklist, $task, Postman_Google_Service_Tasks_Task $postBody, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('patch', array($params), "Postman_Google_Service_Tasks_Task");
- }
-
- /**
- * Updates the specified task. (tasks.update)
- *
- * @param string $tasklist Task list identifier.
- * @param string $task Task identifier.
- * @param Postman_Google_Task $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Tasks_Task
- */
- public function update($tasklist, $task, Postman_Google_Service_Tasks_Task $postBody, $optParams = array())
- {
- $params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_Tasks_Task");
- }
-}
-
-
-
-
-class Postman_Google_Service_Tasks_Task extends Postman_Google_Collection
-{
- protected $collection_key = 'links';
- protected $internal_gapi_mappings = array(
- );
- public $completed;
- public $deleted;
- public $due;
- public $etag;
- public $hidden;
- public $id;
- public $kind;
- protected $linksType = 'Postman_Google_Service_Tasks_TaskLinks';
- protected $linksDataType = 'array';
- public $notes;
- public $parent;
- public $position;
- public $selfLink;
- public $status;
- public $title;
- public $updated;
-
-
- public function setCompleted($completed)
- {
- $this->completed = $completed;
- }
- public function getCompleted()
- {
- return $this->completed;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setDue($due)
- {
- $this->due = $due;
- }
- public function getDue()
- {
- return $this->due;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setHidden($hidden)
- {
- $this->hidden = $hidden;
- }
- public function getHidden()
- {
- return $this->hidden;
- }
- 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 setLinks($links)
- {
- $this->links = $links;
- }
- public function getLinks()
- {
- return $this->links;
- }
- public function setNotes($notes)
- {
- $this->notes = $notes;
- }
- public function getNotes()
- {
- return $this->notes;
- }
- public function setParent($parent)
- {
- $this->parent = $parent;
- }
- public function getParent()
- {
- return $this->parent;
- }
- public function setPosition($position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
- public function setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Tasks_TaskLinks extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $link;
- public $type;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setLink($link)
- {
- $this->link = $link;
- }
- public function getLink()
- {
- return $this->link;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_Tasks_TaskList extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- public $selfLink;
- public $title;
- public $updated;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSelfLink($selfLink)
- {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink()
- {
- return $this->selfLink;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setUpdated($updated)
- {
- $this->updated = $updated;
- }
- public function getUpdated()
- {
- return $this->updated;
- }
-}
-
-class Postman_Google_Service_Tasks_TaskLists extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Tasks_TaskList';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
-
-class Postman_Google_Service_Tasks_Tasks extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $itemsType = 'Postman_Google_Service_Tasks_Task';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setItems($items)
- {
- $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;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Translate.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Translate.php
deleted file mode 100644
index d2157ab..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Translate.php
+++ /dev/null
@@ -1,368 +0,0 @@
-
- * Lets you translate text from one language to another
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Translate extends Postman_Google_Service -{ - - - public $detections; - public $languages; - public $translations; - - - /** - * Constructs the internal representation of the Translate service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'language/translate/'; - $this->version = 'v2'; - $this->serviceName = 'translate'; - - $this->detections = new Postman_Google_Service_Translate_Detections_Resource( - $this, - $this->serviceName, - 'detections', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/detect', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->languages = new Postman_Google_Service_Translate_Languages_Resource( - $this, - $this->serviceName, - 'languages', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/languages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'target' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->translations = new Postman_Google_Service_Translate_Translations_Resource( - $this, - $this->serviceName, - 'translations', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'target' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cid' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "detections" collection of methods. - * Typical usage is: - *
- * $translateService = new Postman_Google_Service_Translate(...);
- * $detections = $translateService->detections;
- *
- */
-class Postman_Google_Service_Translate_Detections_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Detect the language of text. (detections.listDetections)
- *
- * @param string $q The text to detect
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Translate_DetectionsListResponse
- */
- public function listDetections($q, $optParams = array())
- {
- $params = array('q' => $q);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Translate_DetectionsListResponse");
- }
-}
-
-/**
- * The "languages" collection of methods.
- * Typical usage is:
- *
- * $translateService = new Postman_Google_Service_Translate(...);
- * $languages = $translateService->languages;
- *
- */
-class Postman_Google_Service_Translate_Languages_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * List the source/target languages supported by the API
- * (languages.listLanguages)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string target the language and collation in which the localized
- * results should be returned
- * @return Postman_Google_Service_Translate_LanguagesListResponse
- */
- public function listLanguages($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Translate_LanguagesListResponse");
- }
-}
-
-/**
- * The "translations" collection of methods.
- * Typical usage is:
- *
- * $translateService = new Postman_Google_Service_Translate(...);
- * $translations = $translateService->translations;
- *
- */
-class Postman_Google_Service_Translate_Translations_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns text translations from one language to another.
- * (translations.listTranslations)
- *
- * @param string $q The text to translate
- * @param string $target The target language into which the text should be
- * translated
- * @param array $optParams Optional parameters.
- *
- * @opt_param string source The source language of the text
- * @opt_param string format The format of the text
- * @opt_param string cid The customization id for translate
- * @return Postman_Google_Service_Translate_TranslationsListResponse
- */
- public function listTranslations($q, $target, $optParams = array())
- {
- $params = array('q' => $q, 'target' => $target);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Translate_TranslationsListResponse");
- }
-}
-
-
-
-
-class Postman_Google_Service_Translate_DetectionsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'detections';
- protected $internal_gapi_mappings = array(
- );
- protected $detectionsType = 'Postman_Google_Service_Translate_DetectionsResourceItems';
- protected $detectionsDataType = 'array';
-
-
- public function setDetections($detections)
- {
- $this->detections = $detections;
- }
- public function getDetections()
- {
- return $this->detections;
- }
-}
-
-class Postman_Google_Service_Translate_DetectionsResourceItems extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $confidence;
- public $isReliable;
- public $language;
-
-
- public function setConfidence($confidence)
- {
- $this->confidence = $confidence;
- }
- public function getConfidence()
- {
- return $this->confidence;
- }
- public function setIsReliable($isReliable)
- {
- $this->isReliable = $isReliable;
- }
- public function getIsReliable()
- {
- return $this->isReliable;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
-}
-
-class Postman_Google_Service_Translate_LanguagesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'languages';
- protected $internal_gapi_mappings = array(
- );
- protected $languagesType = 'Postman_Google_Service_Translate_LanguagesResource';
- protected $languagesDataType = 'array';
-
-
- public function setLanguages($languages)
- {
- $this->languages = $languages;
- }
- public function getLanguages()
- {
- return $this->languages;
- }
-}
-
-class Postman_Google_Service_Translate_LanguagesResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $language;
- public $name;
-
-
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_Translate_TranslationsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'translations';
- protected $internal_gapi_mappings = array(
- );
- protected $translationsType = 'Postman_Google_Service_Translate_TranslationsResource';
- protected $translationsDataType = 'array';
-
-
- public function setTranslations($translations)
- {
- $this->translations = $translations;
- }
- public function getTranslations()
- {
- return $this->translations;
- }
-}
-
-class Postman_Google_Service_Translate_TranslationsResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $detectedSourceLanguage;
- public $translatedText;
-
-
- public function setDetectedSourceLanguage($detectedSourceLanguage)
- {
- $this->detectedSourceLanguage = $detectedSourceLanguage;
- }
- public function getDetectedSourceLanguage()
- {
- return $this->detectedSourceLanguage;
- }
- public function setTranslatedText($translatedText)
- {
- $this->translatedText = $translatedText;
- }
- public function getTranslatedText()
- {
- return $this->translatedText;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Urlshortener.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Urlshortener.php
deleted file mode 100644
index ff81979..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Urlshortener.php
+++ /dev/null
@@ -1,426 +0,0 @@
-
- * Lets you create, inspect, and manage goo.gl short URLs
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Urlshortener extends Postman_Google_Service -{ - /** Manage your goo.gl short URLs. */ - const URLSHORTENER = - "https://www.googleapis.com/auth/urlshortener"; - - public $url; - - - /** - * Constructs the internal representation of the Urlshortener service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'urlshortener/v1/'; - $this->version = 'v1'; - $this->serviceName = 'urlshortener'; - - $this->url = new Postman_Google_Service_Urlshortener_Url_Resource( - $this, - $this->serviceName, - 'url', - array( - 'methods' => array( - 'get' => array( - 'path' => 'url', - 'httpMethod' => 'GET', - 'parameters' => array( - 'shortUrl' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'url', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'url/history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'start-token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "url" collection of methods. - * Typical usage is: - *
- * $urlshortenerService = new Postman_Google_Service_Urlshortener(...);
- * $url = $urlshortenerService->url;
- *
- */
-class Postman_Google_Service_Urlshortener_Url_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Expands a short URL or gets creation time and analytics. (url.get)
- *
- * @param string $shortUrl The short URL, including the protocol.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string projection Additional information to return.
- * @return Postman_Google_Service_Urlshortener_Url
- */
- public function get($shortUrl, $optParams = array())
- {
- $params = array('shortUrl' => $shortUrl);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Urlshortener_Url");
- }
-
- /**
- * Creates a new short URL. (url.insert)
- *
- * @param Postman_Google_Url $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Urlshortener_Url
- */
- public function insert(Postman_Google_Service_Urlshortener_Url $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_Urlshortener_Url");
- }
-
- /**
- * Retrieves a list of URLs shortened by a user. (url.listUrl)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string start-token Token for requesting successive pages of
- * results.
- * @opt_param string projection Additional information to return.
- * @return Postman_Google_Service_Urlshortener_UrlHistory
- */
- public function listUrl($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Urlshortener_UrlHistory");
- }
-}
-
-
-
-
-class Postman_Google_Service_Urlshortener_AnalyticsSnapshot extends Postman_Google_Collection
-{
- protected $collection_key = 'referrers';
- protected $internal_gapi_mappings = array(
- );
- protected $browsersType = 'Postman_Google_Service_Urlshortener_StringCount';
- protected $browsersDataType = 'array';
- protected $countriesType = 'Postman_Google_Service_Urlshortener_StringCount';
- protected $countriesDataType = 'array';
- public $longUrlClicks;
- protected $platformsType = 'Postman_Google_Service_Urlshortener_StringCount';
- protected $platformsDataType = 'array';
- protected $referrersType = 'Postman_Google_Service_Urlshortener_StringCount';
- protected $referrersDataType = 'array';
- public $shortUrlClicks;
-
-
- public function setBrowsers($browsers)
- {
- $this->browsers = $browsers;
- }
- public function getBrowsers()
- {
- return $this->browsers;
- }
- public function setCountries($countries)
- {
- $this->countries = $countries;
- }
- public function getCountries()
- {
- return $this->countries;
- }
- public function setLongUrlClicks($longUrlClicks)
- {
- $this->longUrlClicks = $longUrlClicks;
- }
- public function getLongUrlClicks()
- {
- return $this->longUrlClicks;
- }
- public function setPlatforms($platforms)
- {
- $this->platforms = $platforms;
- }
- public function getPlatforms()
- {
- return $this->platforms;
- }
- public function setReferrers($referrers)
- {
- $this->referrers = $referrers;
- }
- public function getReferrers()
- {
- return $this->referrers;
- }
- public function setShortUrlClicks($shortUrlClicks)
- {
- $this->shortUrlClicks = $shortUrlClicks;
- }
- public function getShortUrlClicks()
- {
- return $this->shortUrlClicks;
- }
-}
-
-class Postman_Google_Service_Urlshortener_AnalyticsSummary extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $allTimeType = 'Postman_Google_Service_Urlshortener_AnalyticsSnapshot';
- protected $allTimeDataType = '';
- protected $dayType = 'Postman_Google_Service_Urlshortener_AnalyticsSnapshot';
- protected $dayDataType = '';
- protected $monthType = 'Postman_Google_Service_Urlshortener_AnalyticsSnapshot';
- protected $monthDataType = '';
- protected $twoHoursType = 'Postman_Google_Service_Urlshortener_AnalyticsSnapshot';
- protected $twoHoursDataType = '';
- protected $weekType = 'Postman_Google_Service_Urlshortener_AnalyticsSnapshot';
- protected $weekDataType = '';
-
-
- public function setAllTime(Postman_Google_Service_Urlshortener_AnalyticsSnapshot $allTime)
- {
- $this->allTime = $allTime;
- }
- public function getAllTime()
- {
- return $this->allTime;
- }
- public function setDay(Postman_Google_Service_Urlshortener_AnalyticsSnapshot $day)
- {
- $this->day = $day;
- }
- public function getDay()
- {
- return $this->day;
- }
- public function setMonth(Postman_Google_Service_Urlshortener_AnalyticsSnapshot $month)
- {
- $this->month = $month;
- }
- public function getMonth()
- {
- return $this->month;
- }
- public function setTwoHours(Postman_Google_Service_Urlshortener_AnalyticsSnapshot $twoHours)
- {
- $this->twoHours = $twoHours;
- }
- public function getTwoHours()
- {
- return $this->twoHours;
- }
- public function setWeek(Postman_Google_Service_Urlshortener_AnalyticsSnapshot $week)
- {
- $this->week = $week;
- }
- public function getWeek()
- {
- return $this->week;
- }
-}
-
-class Postman_Google_Service_Urlshortener_StringCount extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $id;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
-}
-
-class Postman_Google_Service_Urlshortener_Url extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $analyticsType = 'Postman_Google_Service_Urlshortener_AnalyticsSummary';
- protected $analyticsDataType = '';
- public $created;
- public $id;
- public $kind;
- public $longUrl;
- public $status;
-
-
- public function setAnalytics(Postman_Google_Service_Urlshortener_AnalyticsSummary $analytics)
- {
- $this->analytics = $analytics;
- }
- public function getAnalytics()
- {
- return $this->analytics;
- }
- public function setCreated($created)
- {
- $this->created = $created;
- }
- public function getCreated()
- {
- return $this->created;
- }
- 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 setLongUrl($longUrl)
- {
- $this->longUrl = $longUrl;
- }
- public function getLongUrl()
- {
- return $this->longUrl;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_Urlshortener_UrlHistory extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Urlshortener_Url';
- protected $itemsDataType = 'array';
- public $itemsPerPage;
- public $kind;
- public $nextPageToken;
- public $totalItems;
-
-
- public function setItems($items)
- {
- $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 setNextPageToken($nextPageToken)
- {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken()
- {
- return $this->nextPageToken;
- }
- public function setTotalItems($totalItems)
- {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems()
- {
- return $this->totalItems;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Webfonts.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Webfonts.php
deleted file mode 100644
index 08a1b8d..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Webfonts.php
+++ /dev/null
@@ -1,215 +0,0 @@
-
- * The Google Fonts Developer API.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Webfonts extends Postman_Google_Service -{ - - - public $webfonts; - - - /** - * Constructs the internal representation of the Webfonts service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'webfonts/v1/'; - $this->version = 'v1'; - $this->serviceName = 'webfonts'; - - $this->webfonts = new Postman_Google_Service_Webfonts_Webfonts_Resource( - $this, - $this->serviceName, - 'webfonts', - array( - 'methods' => array( - 'list' => array( - 'path' => 'webfonts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "webfonts" collection of methods. - * Typical usage is: - *
- * $webfontsService = new Postman_Google_Service_Webfonts(...);
- * $webfonts = $webfontsService->webfonts;
- *
- */
-class Postman_Google_Service_Webfonts_Webfonts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves the list of fonts currently served by the Google Fonts Developer
- * API (webfonts.listWebfonts)
- *
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sort Enables sorting of the list
- * @return Postman_Google_Service_Webfonts_WebfontList
- */
- public function listWebfonts($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Webfonts_WebfontList");
- }
-}
-
-
-
-
-class Postman_Google_Service_Webfonts_Webfont extends Postman_Google_Collection
-{
- protected $collection_key = 'variants';
- protected $internal_gapi_mappings = array(
- );
- public $category;
- public $family;
- public $files;
- public $kind;
- public $lastModified;
- public $subsets;
- public $variants;
- public $version;
-
-
- public function setCategory($category)
- {
- $this->category = $category;
- }
- public function getCategory()
- {
- return $this->category;
- }
- public function setFamily($family)
- {
- $this->family = $family;
- }
- public function getFamily()
- {
- return $this->family;
- }
- public function setFiles($files)
- {
- $this->files = $files;
- }
- public function getFiles()
- {
- return $this->files;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLastModified($lastModified)
- {
- $this->lastModified = $lastModified;
- }
- public function getLastModified()
- {
- return $this->lastModified;
- }
- public function setSubsets($subsets)
- {
- $this->subsets = $subsets;
- }
- public function getSubsets()
- {
- return $this->subsets;
- }
- public function setVariants($variants)
- {
- $this->variants = $variants;
- }
- public function getVariants()
- {
- return $this->variants;
- }
- public function setVersion($version)
- {
- $this->version = $version;
- }
- public function getVersion()
- {
- return $this->version;
- }
-}
-
-class Postman_Google_Service_Webfonts_WebfontFiles extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_Webfonts_WebfontList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_Webfonts_Webfont';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Webmasters.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Webmasters.php
deleted file mode 100644
index c7f8c52..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/Webmasters.php
+++ /dev/null
@@ -1,918 +0,0 @@
-
- * Lets you view Google Webmaster Tools data for your verified sites.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_Webmasters extends Postman_Google_Service -{ - /** View and modify Webmaster Tools data for your verified sites. */ - const WEBMASTERS = - "https://www.googleapis.com/auth/webmasters"; - /** View Webmaster Tools data for your verified sites. */ - const WEBMASTERS_READONLY = - "https://www.googleapis.com/auth/webmasters.readonly"; - - public $sitemaps; - public $sites; - public $urlcrawlerrorscounts; - public $urlcrawlerrorssamples; - - - /** - * Constructs the internal representation of the Webmasters service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'webmasters/v3/'; - $this->version = 'v3'; - $this->serviceName = 'webmasters'; - - $this->sitemaps = new Postman_Google_Service_Webmasters_Sitemaps_Resource( - $this, - $this->serviceName, - 'sitemaps', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'sites/{siteUrl}/sitemaps/{feedpath}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedpath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'sites/{siteUrl}/sitemaps/{feedpath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedpath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'sites/{siteUrl}/sitemaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sitemapIndex' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'submit' => array( - 'path' => 'sites/{siteUrl}/sitemaps/{feedpath}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedpath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sites = new Postman_Google_Service_Webmasters_Sites_Resource( - $this, - $this->serviceName, - 'sites', - array( - 'methods' => array( - 'add' => array( - 'path' => 'sites/{siteUrl}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'sites/{siteUrl}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'sites/{siteUrl}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'sites', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->urlcrawlerrorscounts = new Postman_Google_Service_Webmasters_Urlcrawlerrorscounts_Resource( - $this, - $this->serviceName, - 'urlcrawlerrorscounts', - array( - 'methods' => array( - 'query' => array( - 'path' => 'sites/{siteUrl}/urlCrawlErrorsCounts/query', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'platform' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'latestCountsOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->urlcrawlerrorssamples = new Postman_Google_Service_Webmasters_Urlcrawlerrorssamples_Resource( - $this, - $this->serviceName, - 'urlcrawlerrorssamples', - array( - 'methods' => array( - 'get' => array( - 'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'url' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'platform' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'platform' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'markAsFixed' => array( - 'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'url' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'platform' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "sitemaps" collection of methods. - * Typical usage is: - *
- * $webmastersService = new Postman_Google_Service_Webmasters(...);
- * $sitemaps = $webmastersService->sitemaps;
- *
- */
-class Postman_Google_Service_Webmasters_Sitemaps_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a sitemap from this site. (sitemaps.delete)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param string $feedpath The URL of the actual sitemap (for example
- * http://www.example.com/sitemap.xml).
- * @param array $optParams Optional parameters.
- */
- public function delete($siteUrl, $feedpath, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves information about a specific sitemap. (sitemaps.get)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param string $feedpath The URL of the actual sitemap (for example
- * http://www.example.com/sitemap.xml).
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Webmasters_WmxSitemap
- */
- public function get($siteUrl, $feedpath, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Webmasters_WmxSitemap");
- }
-
- /**
- * Lists sitemaps uploaded to the site. (sitemaps.listSitemaps)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param array $optParams Optional parameters.
- *
- * @opt_param string sitemapIndex A URL of a site's sitemap index.
- * @return Postman_Google_Service_Webmasters_SitemapsListResponse
- */
- public function listSitemaps($siteUrl, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Webmasters_SitemapsListResponse");
- }
-
- /**
- * Submits a sitemap for a site. (sitemaps.submit)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param string $feedpath The URL of the sitemap to add.
- * @param array $optParams Optional parameters.
- */
- public function submit($siteUrl, $feedpath, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
- $params = array_merge($params, $optParams);
- return $this->call('submit', array($params));
- }
-}
-
-/**
- * The "sites" collection of methods.
- * Typical usage is:
- *
- * $webmastersService = new Postman_Google_Service_Webmasters(...);
- * $sites = $webmastersService->sites;
- *
- */
-class Postman_Google_Service_Webmasters_Sites_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Adds a site to the set of the user's sites in Webmaster Tools. (sites.add)
- *
- * @param string $siteUrl The URL of the site to add.
- * @param array $optParams Optional parameters.
- */
- public function add($siteUrl, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl);
- $params = array_merge($params, $optParams);
- return $this->call('add', array($params));
- }
-
- /**
- * Removes a site from the set of the user's Webmaster Tools sites.
- * (sites.delete)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param array $optParams Optional parameters.
- */
- public function delete($siteUrl, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves information about specific site. (sites.get)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Webmasters_WmxSite
- */
- public function get($siteUrl, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Webmasters_WmxSite");
- }
-
- /**
- * Lists your Webmaster Tools sites. (sites.listSites)
- *
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Webmasters_SitesListResponse
- */
- public function listSites($optParams = array())
- {
- $params = array();
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Webmasters_SitesListResponse");
- }
-}
-
-/**
- * The "urlcrawlerrorscounts" collection of methods.
- * Typical usage is:
- *
- * $webmastersService = new Postman_Google_Service_Webmasters(...);
- * $urlcrawlerrorscounts = $webmastersService->urlcrawlerrorscounts;
- *
- */
-class Postman_Google_Service_Webmasters_Urlcrawlerrorscounts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a time series of the number of URL crawl errors per error category
- * and platform. (urlcrawlerrorscounts.query)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param array $optParams Optional parameters.
- *
- * @opt_param string category The crawl error category, for example
- * 'serverError'. If not specified, we return results for all categories.
- * @opt_param string platform The user agent type (platform) that made the
- * request, for example 'web'. If not specified, we return results for all
- * platforms.
- * @opt_param bool latestCountsOnly If true, returns only the latest crawl error
- * counts.
- * @return Postman_Google_Service_Webmasters_UrlCrawlErrorsCountsQueryResponse
- */
- public function query($siteUrl, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl);
- $params = array_merge($params, $optParams);
- return $this->call('query', array($params), "Postman_Google_Service_Webmasters_UrlCrawlErrorsCountsQueryResponse");
- }
-}
-
-/**
- * The "urlcrawlerrorssamples" collection of methods.
- * Typical usage is:
- *
- * $webmastersService = new Postman_Google_Service_Webmasters(...);
- * $urlcrawlerrorssamples = $webmastersService->urlcrawlerrorssamples;
- *
- */
-class Postman_Google_Service_Webmasters_Urlcrawlerrorssamples_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves details about crawl errors for a site's sample URL.
- * (urlcrawlerrorssamples.get)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param string $url The relative path (without the site) of the sample URL;
- * must be one of the URLs returned by list
- * @param string $category The crawl error category, for example
- * 'authPermissions'
- * @param string $platform The user agent type (platform) that made the request,
- * for example 'web'
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Webmasters_UrlCrawlErrorsSample
- */
- public function get($siteUrl, $url, $category, $platform, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl, 'url' => $url, 'category' => $category, 'platform' => $platform);
- $params = array_merge($params, $optParams);
- return $this->call('get', array($params), "Postman_Google_Service_Webmasters_UrlCrawlErrorsSample");
- }
-
- /**
- * Lists a site's sample URLs for the specified crawl error category and
- * platform. (urlcrawlerrorssamples.listUrlcrawlerrorssamples)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param string $category The crawl error category, for example
- * 'authPermissions'
- * @param string $platform The user agent type (platform) that made the request,
- * for example 'web'
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_Webmasters_UrlCrawlErrorsSamplesListResponse
- */
- public function listUrlcrawlerrorssamples($siteUrl, $category, $platform, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl, 'category' => $category, 'platform' => $platform);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_Webmasters_UrlCrawlErrorsSamplesListResponse");
- }
-
- /**
- * Marks the provided site's sample URL as fixed, and removes it from the
- * samples list. (urlcrawlerrorssamples.markAsFixed)
- *
- * @param string $siteUrl The site's URL, including protocol, for example
- * 'http://www.example.com/'
- * @param string $url The relative path (without the site) of the sample URL;
- * must be one of the URLs returned by list
- * @param string $category The crawl error category, for example
- * 'authPermissions'
- * @param string $platform The user agent type (platform) that made the request,
- * for example 'web'
- * @param array $optParams Optional parameters.
- */
- public function markAsFixed($siteUrl, $url, $category, $platform, $optParams = array())
- {
- $params = array('siteUrl' => $siteUrl, 'url' => $url, 'category' => $category, 'platform' => $platform);
- $params = array_merge($params, $optParams);
- return $this->call('markAsFixed', array($params));
- }
-}
-
-
-
-
-class Postman_Google_Service_Webmasters_SitemapsListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'sitemap';
- protected $internal_gapi_mappings = array(
- );
- protected $sitemapType = 'Postman_Google_Service_Webmasters_WmxSitemap';
- protected $sitemapDataType = 'array';
-
-
- public function setSitemap($sitemap)
- {
- $this->sitemap = $sitemap;
- }
- public function getSitemap()
- {
- return $this->sitemap;
- }
-}
-
-class Postman_Google_Service_Webmasters_SitesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'siteEntry';
- protected $internal_gapi_mappings = array(
- );
- protected $siteEntryType = 'Postman_Google_Service_Webmasters_WmxSite';
- protected $siteEntryDataType = 'array';
-
-
- public function setSiteEntry($siteEntry)
- {
- $this->siteEntry = $siteEntry;
- }
- public function getSiteEntry()
- {
- return $this->siteEntry;
- }
-}
-
-class Postman_Google_Service_Webmasters_UrlCrawlErrorCount extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $count;
- public $timestamp;
-
-
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function getCount()
- {
- return $this->count;
- }
- public function setTimestamp($timestamp)
- {
- $this->timestamp = $timestamp;
- }
- public function getTimestamp()
- {
- return $this->timestamp;
- }
-}
-
-class Postman_Google_Service_Webmasters_UrlCrawlErrorCountsPerType extends Postman_Google_Collection
-{
- protected $collection_key = 'entries';
- protected $internal_gapi_mappings = array(
- );
- public $category;
- protected $entriesType = 'Postman_Google_Service_Webmasters_UrlCrawlErrorCount';
- protected $entriesDataType = 'array';
- public $platform;
-
-
- public function setCategory($category)
- {
- $this->category = $category;
- }
- public function getCategory()
- {
- return $this->category;
- }
- public function setEntries($entries)
- {
- $this->entries = $entries;
- }
- public function getEntries()
- {
- return $this->entries;
- }
- public function setPlatform($platform)
- {
- $this->platform = $platform;
- }
- public function getPlatform()
- {
- return $this->platform;
- }
-}
-
-class Postman_Google_Service_Webmasters_UrlCrawlErrorsCountsQueryResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'countPerTypes';
- protected $internal_gapi_mappings = array(
- );
- protected $countPerTypesType = 'Postman_Google_Service_Webmasters_UrlCrawlErrorCountsPerType';
- protected $countPerTypesDataType = 'array';
-
-
- public function setCountPerTypes($countPerTypes)
- {
- $this->countPerTypes = $countPerTypes;
- }
- public function getCountPerTypes()
- {
- return $this->countPerTypes;
- }
-}
-
-class Postman_Google_Service_Webmasters_UrlCrawlErrorsSample extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- "firstDetected" => "first_detected",
- "lastCrawled" => "last_crawled",
- );
- public $firstDetected;
- public $lastCrawled;
- public $pageUrl;
- public $responseCode;
- protected $urlDetailsType = 'Postman_Google_Service_Webmasters_UrlSampleDetails';
- protected $urlDetailsDataType = '';
-
-
- public function setFirstDetected($firstDetected)
- {
- $this->firstDetected = $firstDetected;
- }
- public function getFirstDetected()
- {
- return $this->firstDetected;
- }
- public function setLastCrawled($lastCrawled)
- {
- $this->lastCrawled = $lastCrawled;
- }
- public function getLastCrawled()
- {
- return $this->lastCrawled;
- }
- public function setPageUrl($pageUrl)
- {
- $this->pageUrl = $pageUrl;
- }
- public function getPageUrl()
- {
- return $this->pageUrl;
- }
- public function setResponseCode($responseCode)
- {
- $this->responseCode = $responseCode;
- }
- public function getResponseCode()
- {
- return $this->responseCode;
- }
- public function setUrlDetails(Postman_Google_Service_Webmasters_UrlSampleDetails $urlDetails)
- {
- $this->urlDetails = $urlDetails;
- }
- public function getUrlDetails()
- {
- return $this->urlDetails;
- }
-}
-
-class Postman_Google_Service_Webmasters_UrlCrawlErrorsSamplesListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'urlCrawlErrorSample';
- protected $internal_gapi_mappings = array(
- );
- protected $urlCrawlErrorSampleType = 'Postman_Google_Service_Webmasters_UrlCrawlErrorsSample';
- protected $urlCrawlErrorSampleDataType = 'array';
-
-
- public function setUrlCrawlErrorSample($urlCrawlErrorSample)
- {
- $this->urlCrawlErrorSample = $urlCrawlErrorSample;
- }
- public function getUrlCrawlErrorSample()
- {
- return $this->urlCrawlErrorSample;
- }
-}
-
-class Postman_Google_Service_Webmasters_UrlSampleDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'linkedFromUrls';
- protected $internal_gapi_mappings = array(
- );
- public $containingSitemaps;
- public $linkedFromUrls;
-
-
- public function setContainingSitemaps($containingSitemaps)
- {
- $this->containingSitemaps = $containingSitemaps;
- }
- public function getContainingSitemaps()
- {
- return $this->containingSitemaps;
- }
- public function setLinkedFromUrls($linkedFromUrls)
- {
- $this->linkedFromUrls = $linkedFromUrls;
- }
- public function getLinkedFromUrls()
- {
- return $this->linkedFromUrls;
- }
-}
-
-class Postman_Google_Service_Webmasters_WmxSite extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $permissionLevel;
- public $siteUrl;
-
-
- public function setPermissionLevel($permissionLevel)
- {
- $this->permissionLevel = $permissionLevel;
- }
- public function getPermissionLevel()
- {
- return $this->permissionLevel;
- }
- public function setSiteUrl($siteUrl)
- {
- $this->siteUrl = $siteUrl;
- }
- public function getSiteUrl()
- {
- return $this->siteUrl;
- }
-}
-
-class Postman_Google_Service_Webmasters_WmxSitemap extends Postman_Google_Collection
-{
- protected $collection_key = 'contents';
- protected $internal_gapi_mappings = array(
- );
- protected $contentsType = 'Postman_Google_Service_Webmasters_WmxSitemapContent';
- protected $contentsDataType = 'array';
- public $errors;
- public $isPending;
- public $isSitemapsIndex;
- public $lastDownloaded;
- public $lastSubmitted;
- public $path;
- public $type;
- public $warnings;
-
-
- public function setContents($contents)
- {
- $this->contents = $contents;
- }
- public function getContents()
- {
- return $this->contents;
- }
- public function setErrors($errors)
- {
- $this->errors = $errors;
- }
- public function getErrors()
- {
- return $this->errors;
- }
- public function setIsPending($isPending)
- {
- $this->isPending = $isPending;
- }
- public function getIsPending()
- {
- return $this->isPending;
- }
- public function setIsSitemapsIndex($isSitemapsIndex)
- {
- $this->isSitemapsIndex = $isSitemapsIndex;
- }
- public function getIsSitemapsIndex()
- {
- return $this->isSitemapsIndex;
- }
- public function setLastDownloaded($lastDownloaded)
- {
- $this->lastDownloaded = $lastDownloaded;
- }
- public function getLastDownloaded()
- {
- return $this->lastDownloaded;
- }
- public function setLastSubmitted($lastSubmitted)
- {
- $this->lastSubmitted = $lastSubmitted;
- }
- public function getLastSubmitted()
- {
- return $this->lastSubmitted;
- }
- public function setPath($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setWarnings($warnings)
- {
- $this->warnings = $warnings;
- }
- public function getWarnings()
- {
- return $this->warnings;
- }
-}
-
-class Postman_Google_Service_Webmasters_WmxSitemapContent extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $indexed;
- public $submitted;
- public $type;
-
-
- public function setIndexed($indexed)
- {
- $this->indexed = $indexed;
- }
- public function getIndexed()
- {
- return $this->indexed;
- }
- public function setSubmitted($submitted)
- {
- $this->submitted = $submitted;
- }
- public function getSubmitted()
- {
- return $this->submitted;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/YouTube.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/YouTube.php
deleted file mode 100644
index 8f6f912..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/YouTube.php
+++ /dev/null
@@ -1,10456 +0,0 @@
-
- * Programmatic access to YouTube features.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_YouTube extends Postman_Google_Service -{ - /** Manage your YouTube account. */ - const YOUTUBE = - "https://www.googleapis.com/auth/youtube"; - /** View your YouTube account. */ - const YOUTUBE_READONLY = - "https://www.googleapis.com/auth/youtube.readonly"; - /** Manage your YouTube videos. */ - const YOUTUBE_UPLOAD = - "https://www.googleapis.com/auth/youtube.upload"; - /** View and manage your assets and associated content on YouTube. */ - const YOUTUBEPARTNER = - "https://www.googleapis.com/auth/youtubepartner"; - /** View private information of your YouTube channel relevant during the audit process with a YouTube partner. */ - const YOUTUBEPARTNER_CHANNEL_AUDIT = - "https://www.googleapis.com/auth/youtubepartner-channel-audit"; - - public $activities; - public $channelBanners; - public $channelSections; - public $channels; - public $guideCategories; - public $i18nLanguages; - public $i18nRegions; - public $liveBroadcasts; - public $liveStreams; - public $playlistItems; - public $playlists; - public $search; - public $subscriptions; - public $thumbnails; - public $videoCategories; - public $videos; - public $watermarks; - - - /** - * Constructs the internal representation of the YouTube service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'youtube/v3/'; - $this->version = 'v3'; - $this->serviceName = 'youtube'; - - $this->activities = new Postman_Google_Service_YouTube_Activities_Resource( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'activities', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'activities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'home' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'publishedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channelBanners = new Postman_Google_Service_YouTube_ChannelBanners_Resource( - $this, - $this->serviceName, - 'channelBanners', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'channelBanners/insert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channelSections = new Postman_Google_Service_YouTube_ChannelSections_Resource( - $this, - $this->serviceName, - 'channelSections', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'channelSections', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'channelSections', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'channelSections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'channelSections', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Postman_Google_Service_YouTube_Channels_Resource( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'channels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'managedByMe' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'forUsername' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mySubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'categoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'channels', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->guideCategories = new Postman_Google_Service_YouTube_GuideCategories_Resource( - $this, - $this->serviceName, - 'guideCategories', - array( - 'methods' => array( - 'list' => array( - 'path' => 'guideCategories', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->i18nLanguages = new Postman_Google_Service_YouTube_I18nLanguages_Resource( - $this, - $this->serviceName, - 'i18nLanguages', - array( - 'methods' => array( - 'list' => array( - 'path' => 'i18nLanguages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->i18nRegions = new Postman_Google_Service_YouTube_I18nRegions_Resource( - $this, - $this->serviceName, - 'i18nRegions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'i18nRegions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->liveBroadcasts = new Postman_Google_Service_YouTube_LiveBroadcasts_Resource( - $this, - $this->serviceName, - 'liveBroadcasts', - array( - 'methods' => array( - 'bind' => array( - 'path' => 'liveBroadcasts/bind', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'streamId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'control' => array( - 'path' => 'liveBroadcasts/control', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'displaySlate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offsetTimeMs' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'walltime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'broadcastStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'transition' => array( - 'path' => 'liveBroadcasts/transition', - 'httpMethod' => 'POST', - 'parameters' => array( - 'broadcastStatus' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->liveStreams = new Postman_Google_Service_YouTube_LiveStreams_Resource( - $this, - $this->serviceName, - 'liveStreams', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->playlistItems = new Postman_Google_Service_YouTube_PlaylistItems_Resource( - $this, - $this->serviceName, - 'playlistItems', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'playlistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->playlists = new Postman_Google_Service_YouTube_Playlists_Resource( - $this, - $this->serviceName, - 'playlists', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'playlists', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'playlists', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'playlists', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'playlists', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->search = new Postman_Google_Service_YouTube_Search_Resource( - $this, - $this->serviceName, - 'search', - array( - 'methods' => array( - 'list' => array( - 'path' => 'search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'eventType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoSyndicated' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoCaption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'forContentOwner' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locationRadius' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'topicId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoDimension' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoLicense' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'relatedToVideoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoDefinition' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoDuration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'forMine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'safeSearch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoEmbeddable' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoCategoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'order' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->subscriptions = new Postman_Google_Service_YouTube_Subscriptions_Resource( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'forChannelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mySubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'order' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->thumbnails = new Postman_Google_Service_YouTube_Thumbnails_Resource( - $this, - $this->serviceName, - 'thumbnails', - array( - 'methods' => array( - 'set' => array( - 'path' => 'thumbnails/set', - 'httpMethod' => 'POST', - 'parameters' => array( - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->videoCategories = new Postman_Google_Service_YouTube_VideoCategories_Resource( - $this, - $this->serviceName, - 'videoCategories', - array( - 'methods' => array( - 'list' => array( - 'path' => 'videoCategories', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->videos = new Postman_Google_Service_YouTube_Videos_Resource( - $this, - $this->serviceName, - 'videos', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'videos', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getRating' => array( - 'path' => 'videos/getRating', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'videos', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'stabilize' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'notifySubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'autoLevels' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'videos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoCategoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'chart' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'myRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rate' => array( - 'path' => 'videos/rate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'rating' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'videos', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->watermarks = new Postman_Google_Service_YouTube_Watermarks_Resource( - $this, - $this->serviceName, - 'watermarks', - array( - 'methods' => array( - 'set' => array( - 'path' => 'watermarks/set', - 'httpMethod' => 'POST', - 'parameters' => array( - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'unset' => array( - 'path' => 'watermarks/unset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "activities" collection of methods. - * Typical usage is: - *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $activities = $youtubeService->activities;
- *
- */
-class Postman_Google_Service_YouTube_Activities_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Posts a bulletin for a specific channel. (The user submitting the request
- * must be authorized to act on the channel's behalf.)
- *
- * Note: Even though an activity resource can contain information about actions
- * like a user rating a video or marking a video as a favorite, you need to use
- * other API methods to generate those activity resources. For example, you
- * would use the API's videos.rate() method to rate a video and the
- * playlistItems.insert() method to mark a video as a favorite.
- * (activities.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet and
- * contentDetails.
- * @param Postman_Google_Activity $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_YouTube_Activity
- */
- public function insert($part, Postman_Google_Service_YouTube_Activity $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_Activity");
- }
-
- /**
- * Returns a list of channel activity events that match the request criteria.
- * For example, you can retrieve events associated with a particular channel,
- * events associated with the user's subscriptions and Google+ friends, or the
- * YouTube home page feed, which is customized for each user.
- * (activities.listActivities)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more activity resource properties that the API response will include.
- * The part names that you can include in the parameter value are id, snippet,
- * and contentDetails.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a activity
- * resource, the snippet property contains other properties that identify the
- * type of activity, a display title for the activity, and so forth. If you set
- * part=snippet, the API response will also contain all of those nested
- * properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string regionCode The regionCode parameter instructs the API to
- * return results for the specified country. The parameter value is an ISO
- * 3166-1 alpha-2 country code. YouTube uses this value when the authorized
- * user's previous activity on YouTube does not provide enough information to
- * generate the activity feed.
- * @opt_param string publishedBefore The publishedBefore parameter specifies the
- * date and time before which an activity must have occurred for that activity
- * to be included in the API response. If the parameter value specifies a day,
- * but not a time, then any activities that occurred that day will be excluded
- * from the result set. The value is specified in ISO 8601 (YYYY-MM-
- * DDThh:mm:ss.sZ) format.
- * @opt_param string channelId The channelId parameter specifies a unique
- * YouTube channel ID. The API will then return a list of that channel's
- * activities.
- * @opt_param bool mine Set this parameter's value to true to retrieve a feed of
- * the authenticated user's activities.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param bool home Set this parameter's value to true to retrieve the
- * activity feed that displays on the YouTube home page for the currently
- * authenticated user.
- * @opt_param string publishedAfter The publishedAfter parameter specifies the
- * earliest date and time that an activity could have occurred for that activity
- * to be included in the API response. If the parameter value specifies a day,
- * but not a time, then any activities that occurred that day will be included
- * in the result set. The value is specified in ISO 8601 (YYYY-MM-
- * DDThh:mm:ss.sZ) format.
- * @return Postman_Google_Service_YouTube_ActivityListResponse
- */
- public function listActivities($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_ActivityListResponse");
- }
-}
-
-/**
- * The "channelBanners" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $channelBanners = $youtubeService->channelBanners;
- *
- */
-class Postman_Google_Service_YouTube_ChannelBanners_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Uploads a channel banner image to YouTube. This method represents the first
- * two steps in a three-step process to update the banner image for a channel:
- *
- * - Call the channelBanners.insert method to upload the binary image data to
- * YouTube. The image must have a 16:9 aspect ratio and be at least 2120x1192
- * pixels. - Extract the url property's value from the response that the API
- * returns for step 1. - Call the channels.update method to update the channel's
- * branding settings. Set the brandingSettings.image.bannerExternalUrl
- * property's value to the URL obtained in step 2. (channelBanners.insert)
- *
- * @param Postman_Google_ChannelBannerResource $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_ChannelBannerResource
- */
- public function insert(Postman_Google_Service_YouTube_ChannelBannerResource $postBody, $optParams = array())
- {
- $params = array('postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_ChannelBannerResource");
- }
-}
-
-/**
- * The "channelSections" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $channelSections = $youtubeService->channelSections;
- *
- */
-class Postman_Google_Service_YouTube_ChannelSections_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a channelSection. (channelSections.delete)
- *
- * @param string $id The id parameter specifies the YouTube channelSection ID
- * for the resource that is being deleted. In a channelSection resource, the id
- * property specifies the YouTube channelSection ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Adds a channelSection for the authenticated user's channel.
- * (channelSections.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet and
- * contentDetails.
- * @param Postman_Google_ChannelSection $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_ChannelSection
- */
- public function insert($part, Postman_Google_Service_YouTube_ChannelSection $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_ChannelSection");
- }
-
- /**
- * Returns channelSection resources that match the API request criteria.
- * (channelSections.listChannelSections)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more channelSection resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, and contentDetails.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a
- * channelSection resource, the snippet property contains other properties, such
- * as a display title for the channelSection. If you set part=snippet, the API
- * response will also contain all of those nested properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string channelId The channelId parameter specifies a YouTube
- * channel ID. The API will only return that channel's channelSections.
- * @opt_param string id The id parameter specifies a comma-separated list of the
- * YouTube channelSection ID(s) for the resource(s) that are being retrieved. In
- * a channelSection resource, the id property specifies the YouTube
- * channelSection ID.
- * @opt_param bool mine Set this parameter's value to true to retrieve a feed of
- * the authenticated user's channelSections.
- * @return Postman_Google_Service_YouTube_ChannelSectionListResponse
- */
- public function listChannelSections($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_ChannelSectionListResponse");
- }
-
- /**
- * Update a channelSection. (channelSections.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet and
- * contentDetails.
- * @param Postman_Google_ChannelSection $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_ChannelSection
- */
- public function update($part, Postman_Google_Service_YouTube_ChannelSection $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_ChannelSection");
- }
-}
-
-/**
- * The "channels" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $channels = $youtubeService->channels;
- *
- */
-class Postman_Google_Service_YouTube_Channels_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a collection of zero or more channel resources that match the request
- * criteria. (channels.listChannels)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more channel resource properties that the API response will include.
- * The part names that you can include in the parameter value are id, snippet,
- * contentDetails, statistics, topicDetails, and invideoPromotion.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a channel
- * resource, the contentDetails property contains other properties, such as the
- * uploads properties. As such, if you set part=contentDetails, the API response
- * will also contain all of those nested properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param bool managedByMe Set this parameter's value to true to instruct
- * the API to only return channels managed by the content owner that the
- * onBehalfOfContentOwner parameter specifies. The user must be authenticated as
- * a CMS account linked to the specified content owner and
- * onBehalfOfContentOwner must be provided.
- * @opt_param string onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * indicates that the authenticated user is acting on behalf of the content
- * owner specified in the parameter value. This parameter is intended for
- * YouTube content partners that own and manage many different YouTube channels.
- * It allows content owners to authenticate once and get access to all their
- * video and channel data, without having to provide authentication credentials
- * for each individual channel. The actual CMS account that the user
- * authenticates with needs to be linked to the specified YouTube content owner.
- * @opt_param string forUsername The forUsername parameter specifies a YouTube
- * username, thereby requesting the channel associated with that username.
- * @opt_param bool mine Set this parameter's value to true to instruct the API
- * to only return channels owned by the authenticated user.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string id The id parameter specifies a comma-separated list of the
- * YouTube channel ID(s) for the resource(s) that are being retrieved. In a
- * channel resource, the id property specifies the channel's YouTube channel ID.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param bool mySubscribers Set this parameter's value to true to retrieve
- * a list of channels that subscribed to the authenticated user's channel.
- * @opt_param string categoryId The categoryId parameter specifies a YouTube
- * guide category, thereby requesting YouTube channels associated with that
- * category.
- * @return Postman_Google_Service_YouTube_ChannelListResponse
- */
- public function listChannels($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_ChannelListResponse");
- }
-
- /**
- * Updates a channel's metadata. (channels.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are id and
- * invideoPromotion.
- *
- * Note that this method will override the existing values for all of the
- * mutable properties that are contained in any parts that the parameter value
- * specifies.
- * @param Postman_Google_Channel $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * indicates that the authenticated user is acting on behalf of the content
- * owner specified in the parameter value. This parameter is intended for
- * YouTube content partners that own and manage many different YouTube channels.
- * It allows content owners to authenticate once and get access to all their
- * video and channel data, without having to provide authentication credentials
- * for each individual channel. The actual CMS account that the user
- * authenticates with needs to be linked to the specified YouTube content owner.
- * @return Postman_Google_Service_YouTube_Channel
- */
- public function update($part, Postman_Google_Service_YouTube_Channel $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_Channel");
- }
-}
-
-/**
- * The "guideCategories" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $guideCategories = $youtubeService->guideCategories;
- *
- */
-class Postman_Google_Service_YouTube_GuideCategories_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of categories that can be associated with YouTube channels.
- * (guideCategories.listGuideCategories)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more guideCategory resource properties that the API response will
- * include. The part names that you can include in the parameter value are id
- * and snippet.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a
- * guideCategory resource, the snippet property contains other properties, such
- * as the category's title. If you set part=snippet, the API response will also
- * contain all of those nested properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string regionCode The regionCode parameter instructs the API to
- * return the list of guide categories available in the specified country. The
- * parameter value is an ISO 3166-1 alpha-2 country code.
- * @opt_param string id The id parameter specifies a comma-separated list of the
- * YouTube channel category ID(s) for the resource(s) that are being retrieved.
- * In a guideCategory resource, the id property specifies the YouTube channel
- * category ID.
- * @opt_param string hl The hl parameter specifies the language that will be
- * used for text values in the API response.
- * @return Postman_Google_Service_YouTube_GuideCategoryListResponse
- */
- public function listGuideCategories($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_GuideCategoryListResponse");
- }
-}
-
-/**
- * The "i18nLanguages" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $i18nLanguages = $youtubeService->i18nLanguages;
- *
- */
-class Postman_Google_Service_YouTube_I18nLanguages_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of supported languages. (i18nLanguages.listI18nLanguages)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more i18nLanguage resource properties that the API response will
- * include. The part names that you can include in the parameter value are id
- * and snippet.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string hl The hl parameter specifies the language that should be
- * used for text values in the API response.
- * @return Postman_Google_Service_YouTube_I18nLanguageListResponse
- */
- public function listI18nLanguages($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_I18nLanguageListResponse");
- }
-}
-
-/**
- * The "i18nRegions" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $i18nRegions = $youtubeService->i18nRegions;
- *
- */
-class Postman_Google_Service_YouTube_I18nRegions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of supported regions. (i18nRegions.listI18nRegions)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more i18nRegion resource properties that the API response will
- * include. The part names that you can include in the parameter value are id
- * and snippet.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string hl The hl parameter specifies the language that should be
- * used for text values in the API response.
- * @return Postman_Google_Service_YouTube_I18nRegionListResponse
- */
- public function listI18nRegions($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_I18nRegionListResponse");
- }
-}
-
-/**
- * The "liveBroadcasts" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $liveBroadcasts = $youtubeService->liveBroadcasts;
- *
- */
-class Postman_Google_Service_YouTube_LiveBroadcasts_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Binds a YouTube broadcast to a stream or removes an existing binding between
- * a broadcast and a stream. A broadcast can only be bound to one video stream.
- * (liveBroadcasts.bind)
- *
- * @param string $id The id parameter specifies the unique ID of the broadcast
- * that is being bound to a video stream.
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more liveBroadcast resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string streamId The streamId parameter specifies the unique ID of
- * the video stream that is being bound to a broadcast. If this parameter is
- * omitted, the API will remove any existing binding between the broadcast and a
- * video stream.
- * @return Postman_Google_Service_YouTube_LiveBroadcast
- */
- public function bind($id, $part, $optParams = array())
- {
- $params = array('id' => $id, 'part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('bind', array($params), "Postman_Google_Service_YouTube_LiveBroadcast");
- }
-
- /**
- * Controls the settings for a slate that can be displayed in the broadcast
- * stream. (liveBroadcasts.control)
- *
- * @param string $id The id parameter specifies the YouTube live broadcast ID
- * that uniquely identifies the broadcast in which the slate is being updated.
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more liveBroadcast resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param bool displaySlate The displaySlate parameter specifies whether the
- * slate is being enabled or disabled.
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string offsetTimeMs The offsetTimeMs parameter specifies a
- * positive time offset when the specified slate change will occur. The value is
- * measured in milliseconds from the beginning of the broadcast's monitor
- * stream, which is the time that the testing phase for the broadcast began.
- * Even though it is specified in milliseconds, the value is actually an
- * approximation, and YouTube completes the requested action as closely as
- * possible to that time.
- *
- * If you do not specify a value for this parameter, then YouTube performs the
- * action as soon as possible. See the Getting started guide for more details.
- *
- * Important: You should only specify a value for this parameter if your
- * broadcast stream is delayed.
- * @opt_param string walltime The walltime parameter specifies the wall clock
- * time at which the specified slate change will occur. The value is specified
- * in ISO 8601 (YYYY-MM-DDThh:mm:ss.sssZ) format.
- * @return Postman_Google_Service_YouTube_LiveBroadcast
- */
- public function control($id, $part, $optParams = array())
- {
- $params = array('id' => $id, 'part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('control', array($params), "Postman_Google_Service_YouTube_LiveBroadcast");
- }
-
- /**
- * Deletes a broadcast. (liveBroadcasts.delete)
- *
- * @param string $id The id parameter specifies the YouTube live broadcast ID
- * for the resource that is being deleted.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Creates a broadcast. (liveBroadcasts.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part properties that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- * @param Postman_Google_LiveBroadcast $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_LiveBroadcast
- */
- public function insert($part, Postman_Google_Service_YouTube_LiveBroadcast $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_LiveBroadcast");
- }
-
- /**
- * Returns a list of YouTube broadcasts that match the API request parameters.
- * (liveBroadcasts.listLiveBroadcasts)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more liveBroadcast resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string broadcastStatus The broadcastStatus parameter filters the
- * API response to only include broadcasts with the specified status.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param bool mine The mine parameter can be used to instruct the API to
- * only return broadcasts owned by the authenticated user. Set the parameter
- * value to true to only retrieve your own broadcasts.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param string id The id parameter specifies a comma-separated list of
- * YouTube broadcast IDs that identify the broadcasts being retrieved. In a
- * liveBroadcast resource, the id property specifies the broadcast's ID.
- * @return Postman_Google_Service_YouTube_LiveBroadcastListResponse
- */
- public function listLiveBroadcasts($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_LiveBroadcastListResponse");
- }
-
- /**
- * Changes the status of a YouTube live broadcast and initiates any processes
- * associated with the new status. For example, when you transition a
- * broadcast's status to testing, YouTube starts to transmit video to that
- * broadcast's monitor stream. Before calling this method, you should confirm
- * that the value of the status.streamStatus property for the stream bound to
- * your broadcast is active. (liveBroadcasts.transition)
- *
- * @param string $broadcastStatus The broadcastStatus parameter identifies the
- * state to which the broadcast is changing. Note that to transition a broadcast
- * to either the testing or live state, the status.streamStatus must be active
- * for the stream that the broadcast is bound to.
- * @param string $id The id parameter specifies the unique ID of the broadcast
- * that is transitioning to another status.
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more liveBroadcast resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_LiveBroadcast
- */
- public function transition($broadcastStatus, $id, $part, $optParams = array())
- {
- $params = array('broadcastStatus' => $broadcastStatus, 'id' => $id, 'part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('transition', array($params), "Postman_Google_Service_YouTube_LiveBroadcast");
- }
-
- /**
- * Updates a broadcast. For example, you could modify the broadcast settings
- * defined in the liveBroadcast resource's contentDetails object.
- * (liveBroadcasts.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part properties that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- *
- * Note that this method will override the existing values for all of the
- * mutable properties that are contained in any parts that the parameter value
- * specifies. For example, a broadcast's privacy status is defined in the status
- * part. As such, if your request is updating a private or unlisted broadcast,
- * and the request's part parameter value includes the status part, the
- * broadcast's privacy setting will be updated to whatever value the request
- * body specifies. If the request body does not specify a value, the existing
- * privacy setting will be removed and the broadcast will revert to the default
- * privacy setting.
- * @param Postman_Google_LiveBroadcast $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_LiveBroadcast
- */
- public function update($part, Postman_Google_Service_YouTube_LiveBroadcast $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_LiveBroadcast");
- }
-}
-
-/**
- * The "liveStreams" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $liveStreams = $youtubeService->liveStreams;
- *
- */
-class Postman_Google_Service_YouTube_LiveStreams_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a video stream. (liveStreams.delete)
- *
- * @param string $id The id parameter specifies the YouTube live stream ID for
- * the resource that is being deleted.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Creates a video stream. The stream enables you to send your video to YouTube,
- * which can then broadcast the video to your audience. (liveStreams.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part properties that you can include in the parameter value are id,
- * snippet, cdn, and status.
- * @param Postman_Google_LiveStream $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_LiveStream
- */
- public function insert($part, Postman_Google_Service_YouTube_LiveStream $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_LiveStream");
- }
-
- /**
- * Returns a list of video streams that match the API request parameters.
- * (liveStreams.listLiveStreams)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more liveStream resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, cdn, and status.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param bool mine The mine parameter can be used to instruct the API to
- * only return streams owned by the authenticated user. Set the parameter value
- * to true to only retrieve your own streams.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set. Acceptable values
- * are 0 to 50, inclusive. The default value is 5.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param string id The id parameter specifies a comma-separated list of
- * YouTube stream IDs that identify the streams being retrieved. In a liveStream
- * resource, the id property specifies the stream's ID.
- * @return Postman_Google_Service_YouTube_LiveStreamListResponse
- */
- public function listLiveStreams($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_LiveStreamListResponse");
- }
-
- /**
- * Updates a video stream. If the properties that you want to change cannot be
- * updated, then you need to create a new stream with the proper settings.
- * (liveStreams.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part properties that you can include in the parameter value are id,
- * snippet, cdn, and status.
- *
- * Note that this method will override the existing values for all of the
- * mutable properties that are contained in any parts that the parameter value
- * specifies. If the request body does not specify a value for a mutable
- * property, the existing value for that property will be removed.
- * @param Postman_Google_LiveStream $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_LiveStream
- */
- public function update($part, Postman_Google_Service_YouTube_LiveStream $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_LiveStream");
- }
-}
-
-/**
- * The "playlistItems" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $playlistItems = $youtubeService->playlistItems;
- *
- */
-class Postman_Google_Service_YouTube_PlaylistItems_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a playlist item. (playlistItems.delete)
- *
- * @param string $id The id parameter specifies the YouTube playlist item ID for
- * the playlist item that is being deleted. In a playlistItem resource, the id
- * property specifies the playlist item's ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Adds a resource to a playlist. (playlistItems.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet,
- * contentDetails, and status.
- * @param Postman_Google_PlaylistItem $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_PlaylistItem
- */
- public function insert($part, Postman_Google_Service_YouTube_PlaylistItem $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_PlaylistItem");
- }
-
- /**
- * Returns a collection of playlist items that match the API request parameters.
- * You can retrieve all of the playlist items in a specified playlist or
- * retrieve one or more playlist items by their unique IDs.
- * (playlistItems.listPlaylistItems)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more playlistItem resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, contentDetails, and status.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a
- * playlistItem resource, the snippet property contains numerous fields,
- * including the title, description, position, and resourceId properties. As
- * such, if you set part=snippet, the API response will contain all of those
- * properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string playlistId The playlistId parameter specifies the unique ID
- * of the playlist for which you want to retrieve playlist items. Note that even
- * though this is an optional parameter, every request to retrieve playlist
- * items must specify a value for either the id parameter or the playlistId
- * parameter.
- * @opt_param string videoId The videoId parameter specifies that the request
- * should return only the playlist items that contain the specified video.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param string id The id parameter specifies a comma-separated list of one
- * or more unique playlist item IDs.
- * @return Postman_Google_Service_YouTube_PlaylistItemListResponse
- */
- public function listPlaylistItems($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_PlaylistItemListResponse");
- }
-
- /**
- * Modifies a playlist item. For example, you could update the item's position
- * in the playlist. (playlistItems.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet,
- * contentDetails, and status.
- *
- * Note that this method will override the existing values for all of the
- * mutable properties that are contained in any parts that the parameter value
- * specifies. For example, a playlist item can specify a start time and end
- * time, which identify the times portion of the video that should play when
- * users watch the video in the playlist. If your request is updating a playlist
- * item that sets these values, and the request's part parameter value includes
- * the contentDetails part, the playlist item's start and end times will be
- * updated to whatever value the request body specifies. If the request body
- * does not specify values, the existing start and end times will be removed and
- * replaced with the default settings.
- * @param Postman_Google_PlaylistItem $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_YouTube_PlaylistItem
- */
- public function update($part, Postman_Google_Service_YouTube_PlaylistItem $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_PlaylistItem");
- }
-}
-
-/**
- * The "playlists" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $playlists = $youtubeService->playlists;
- *
- */
-class Postman_Google_Service_YouTube_Playlists_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a playlist. (playlists.delete)
- *
- * @param string $id The id parameter specifies the YouTube playlist ID for the
- * playlist that is being deleted. In a playlist resource, the id property
- * specifies the playlist's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Creates a playlist. (playlists.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet and
- * status.
- * @param Postman_Google_Playlist $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_Playlist
- */
- public function insert($part, Postman_Google_Service_YouTube_Playlist $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_Playlist");
- }
-
- /**
- * Returns a collection of playlists that match the API request parameters. For
- * example, you can retrieve all playlists that the authenticated user owns, or
- * you can retrieve one or more playlists by their unique IDs.
- * (playlists.listPlaylists)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more playlist resource properties that the API response will include.
- * The part names that you can include in the parameter value are id, snippet,
- * status, and contentDetails.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a playlist
- * resource, the snippet property contains properties like author, title,
- * description, tags, and timeCreated. As such, if you set part=snippet, the API
- * response will contain all of those properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string channelId This value indicates that the API should only
- * return the specified channel's playlists.
- * @opt_param bool mine Set this parameter's value to true to instruct the API
- * to only return playlists owned by the authenticated user.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param string id The id parameter specifies a comma-separated list of the
- * YouTube playlist ID(s) for the resource(s) that are being retrieved. In a
- * playlist resource, the id property specifies the playlist's YouTube playlist
- * ID.
- * @return Postman_Google_Service_YouTube_PlaylistListResponse
- */
- public function listPlaylists($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_PlaylistListResponse");
- }
-
- /**
- * Modifies a playlist. For example, you could change a playlist's title,
- * description, or privacy status. (playlists.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet and
- * status.
- *
- * Note that this method will override the existing values for all of the
- * mutable properties that are contained in any parts that the parameter value
- * specifies. For example, a playlist's privacy setting is contained in the
- * status part. As such, if your request is updating a private playlist, and the
- * request's part parameter value includes the status part, the playlist's
- * privacy setting will be updated to whatever value the request body specifies.
- * If the request body does not specify a value, the existing privacy setting
- * will be removed and the playlist will revert to the default privacy setting.
- * @param Postman_Google_Playlist $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_Playlist
- */
- public function update($part, Postman_Google_Service_YouTube_Playlist $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_Playlist");
- }
-}
-
-/**
- * The "search" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $search = $youtubeService->search;
- *
- */
-class Postman_Google_Service_YouTube_Search_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a collection of search results that match the query parameters
- * specified in the API request. By default, a search result set identifies
- * matching video, channel, and playlist resources, but you can also configure
- * queries to only retrieve a specific type of resource. (search.listSearch)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more search resource properties that the API response will include.
- * The part names that you can include in the parameter value are id and
- * snippet.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a search
- * result, the snippet property contains other properties that identify the
- * result's title, description, and so forth. If you set part=snippet, the API
- * response will also contain all of those nested properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string eventType The eventType parameter restricts a search to
- * broadcast events.
- * @opt_param string channelId The channelId parameter indicates that the API
- * response should only contain resources created by the channel
- * @opt_param string videoSyndicated The videoSyndicated parameter lets you to
- * restrict a search to only videos that can be played outside youtube.com.
- * @opt_param string channelType The channelType parameter lets you restrict a
- * search to a particular type of channel.
- * @opt_param string videoCaption The videoCaption parameter indicates whether
- * the API should filter video search results based on whether they have
- * captions.
- * @opt_param string publishedAfter The publishedAfter parameter indicates that
- * the API response should only contain resources created after the specified
- * time. The value is an RFC 3339 formatted date-time value
- * (1970-01-01T00:00:00Z).
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param bool forContentOwner Note: This parameter is intended exclusively
- * for YouTube content partners.
- *
- * The forContentOwner parameter restricts the search to only retrieve resources
- * owned by the content owner specified by the onBehalfOfContentOwner parameter.
- * The user must be authenticated using a CMS account linked to the specified
- * content owner and onBehalfOfContentOwner must be provided.
- * @opt_param string regionCode The regionCode parameter instructs the API to
- * return search results for the specified country. The parameter value is an
- * ISO 3166-1 alpha-2 country code.
- * @opt_param string location The location parameter restricts a search to
- * videos that have a geographical location specified in their metadata. The
- * value is a string that specifies geographic latitude/longitude coordinates
- * e.g. (37.42307,-122.08427)
- * @opt_param string locationRadius The locationRadius, in conjunction with the
- * location parameter, defines a geographic area. If the geographic coordinates
- * associated with a video fall within that area, then the video may be included
- * in search results. This parameter value must be a floating point number
- * followed by a measurement unit. Valid measurement units are m, km, ft, and
- * mi. For example, valid parameter values include 1500m, 5km, 10000ft, and
- * 0.75mi. The API does not support locationRadius parameter values larger than
- * 1000 kilometers.
- * @opt_param string videoType The videoType parameter lets you restrict a
- * search to a particular type of videos.
- * @opt_param string type The type parameter restricts a search query to only
- * retrieve a particular type of resource. The value is a comma-separated list
- * of resource types.
- * @opt_param string topicId The topicId parameter indicates that the API
- * response should only contain resources associated with the specified topic.
- * The value identifies a Freebase topic ID.
- * @opt_param string publishedBefore The publishedBefore parameter indicates
- * that the API response should only contain resources created before the
- * specified time. The value is an RFC 3339 formatted date-time value
- * (1970-01-01T00:00:00Z).
- * @opt_param string videoDimension The videoDimension parameter lets you
- * restrict a search to only retrieve 2D or 3D videos.
- * @opt_param string videoLicense The videoLicense parameter filters search
- * results to only include videos with a particular license. YouTube lets video
- * uploaders choose to attach either the Creative Commons license or the
- * standard YouTube license to each of their videos.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string relatedToVideoId The relatedToVideoId parameter retrieves a
- * list of videos that are related to the video that the parameter value
- * identifies. The parameter value must be set to a YouTube video ID and, if you
- * are using this parameter, the type parameter must be set to video.
- * @opt_param string videoDefinition The videoDefinition parameter lets you
- * restrict a search to only include either high definition (HD) or standard
- * definition (SD) videos. HD videos are available for playback in at least
- * 720p, though higher resolutions, like 1080p, might also be available.
- * @opt_param string videoDuration The videoDuration parameter filters video
- * search results based on their duration.
- * @opt_param bool forMine The forMine parameter restricts the search to only
- * retrieve videos owned by the authenticated user. If you set this parameter to
- * true, then the type parameter's value must also be set to video.
- * @opt_param string q The q parameter specifies the query term to search for.
- * @opt_param string safeSearch The safeSearch parameter indicates whether the
- * search results should include restricted content as well as standard content.
- * @opt_param string videoEmbeddable The videoEmbeddable parameter lets you to
- * restrict a search to only videos that can be embedded into a webpage.
- * @opt_param string videoCategoryId The videoCategoryId parameter filters video
- * search results based on their category.
- * @opt_param string order The order parameter specifies the method that will be
- * used to order resources in the API response.
- * @return Postman_Google_Service_YouTube_SearchListResponse
- */
- public function listSearch($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_SearchListResponse");
- }
-}
-
-/**
- * The "subscriptions" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $subscriptions = $youtubeService->subscriptions;
- *
- */
-class Postman_Google_Service_YouTube_Subscriptions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a subscription. (subscriptions.delete)
- *
- * @param string $id The id parameter specifies the YouTube subscription ID for
- * the resource that is being deleted. In a subscription resource, the id
- * property specifies the YouTube subscription ID.
- * @param array $optParams Optional parameters.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Adds a subscription for the authenticated user's channel.
- * (subscriptions.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet and
- * contentDetails.
- * @param Postman_Google_Subscription $postBody
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_YouTube_Subscription
- */
- public function insert($part, Postman_Google_Service_YouTube_Subscription $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_Subscription");
- }
-
- /**
- * Returns subscription resources that match the API request criteria.
- * (subscriptions.listSubscriptions)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more subscription resource properties that the API response will
- * include. The part names that you can include in the parameter value are id,
- * snippet, and contentDetails.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a
- * subscription resource, the snippet property contains other properties, such
- * as a display title for the subscription. If you set part=snippet, the API
- * response will also contain all of those nested properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param string channelId The channelId parameter specifies a YouTube
- * channel ID. The API will only return that channel's subscriptions.
- * @opt_param bool mine Set this parameter's value to true to retrieve a feed of
- * the authenticated user's subscriptions.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- * @opt_param string forChannelId The forChannelId parameter specifies a comma-
- * separated list of channel IDs. The API response will then only contain
- * subscriptions matching those channels.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- * @opt_param bool mySubscribers Set this parameter's value to true to retrieve
- * a feed of the subscribers of the authenticated user.
- * @opt_param string order The order parameter specifies the method that will be
- * used to sort resources in the API response.
- * @opt_param string id The id parameter specifies a comma-separated list of the
- * YouTube subscription ID(s) for the resource(s) that are being retrieved. In a
- * subscription resource, the id property specifies the YouTube subscription ID.
- * @return Postman_Google_Service_YouTube_SubscriptionListResponse
- */
- public function listSubscriptions($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_SubscriptionListResponse");
- }
-}
-
-/**
- * The "thumbnails" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $thumbnails = $youtubeService->thumbnails;
- *
- */
-class Postman_Google_Service_YouTube_Thumbnails_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Uploads a custom video thumbnail to YouTube and sets it for a video.
- * (thumbnails.set)
- *
- * @param string $videoId The videoId parameter specifies a YouTube video ID for
- * which the custom video thumbnail is being provided.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * indicates that the authenticated user is acting on behalf of the content
- * owner specified in the parameter value. This parameter is intended for
- * YouTube content partners that own and manage many different YouTube channels.
- * It allows content owners to authenticate once and get access to all their
- * video and channel data, without having to provide authentication credentials
- * for each individual channel. The actual CMS account that the user
- * authenticates with needs to be linked to the specified YouTube content owner.
- * @return Postman_Google_Service_YouTube_ThumbnailSetResponse
- */
- public function set($videoId, $optParams = array())
- {
- $params = array('videoId' => $videoId);
- $params = array_merge($params, $optParams);
- return $this->call('set', array($params), "Postman_Google_Service_YouTube_ThumbnailSetResponse");
- }
-}
-
-/**
- * The "videoCategories" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $videoCategories = $youtubeService->videoCategories;
- *
- */
-class Postman_Google_Service_YouTube_VideoCategories_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Returns a list of categories that can be associated with YouTube videos.
- * (videoCategories.listVideoCategories)
- *
- * @param string $part The part parameter specifies the videoCategory resource
- * parts that the API response will include. Supported values are id and
- * snippet.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string regionCode The regionCode parameter instructs the API to
- * return the list of video categories available in the specified country. The
- * parameter value is an ISO 3166-1 alpha-2 country code.
- * @opt_param string id The id parameter specifies a comma-separated list of
- * video category IDs for the resources that you are retrieving.
- * @opt_param string hl The hl parameter specifies the language that should be
- * used for text values in the API response.
- * @return Postman_Google_Service_YouTube_VideoCategoryListResponse
- */
- public function listVideoCategories($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_VideoCategoryListResponse");
- }
-}
-
-/**
- * The "videos" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $videos = $youtubeService->videos;
- *
- */
-class Postman_Google_Service_YouTube_Videos_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Deletes a YouTube video. (videos.delete)
- *
- * @param string $id The id parameter specifies the YouTube video ID for the
- * resource that is being deleted. In a video resource, the id property
- * specifies the video's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The actual CMS
- * account that the user authenticates with must be linked to the specified
- * YouTube content owner.
- */
- public function delete($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('delete', array($params));
- }
-
- /**
- * Retrieves the ratings that the authorized user gave to a list of specified
- * videos. (videos.getRating)
- *
- * @param string $id The id parameter specifies a comma-separated list of the
- * YouTube video ID(s) for the resource(s) for which you are retrieving rating
- * data. In a video resource, the id property specifies the video's ID.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @return Postman_Google_Service_YouTube_VideoGetRatingResponse
- */
- public function getRating($id, $optParams = array())
- {
- $params = array('id' => $id);
- $params = array_merge($params, $optParams);
- return $this->call('getRating', array($params), "Postman_Google_Service_YouTube_VideoGetRatingResponse");
- }
-
- /**
- * Uploads a video to YouTube and optionally sets the video's metadata.
- * (videos.insert)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet,
- * contentDetails, fileDetails, liveStreamingDetails, player, processingDetails,
- * recordingDetails, statistics, status, suggestions, and topicDetails. However,
- * not all of those parts contain properties that can be set when setting or
- * updating a video's metadata. For example, the statistics object encapsulates
- * statistics that YouTube calculates for a video and does not contain values
- * that you can set or modify. If the parameter value specifies a part that does
- * not contain mutable values, that part will still be included in the API
- * response.
- * @param Postman_Google_Video $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param bool stabilize The stabilize parameter indicates whether YouTube
- * should adjust the video to remove shaky camera motions.
- * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be
- * used in a properly authorized request. Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID
- * of the channel to which a video is being added. This parameter is required
- * when a request specifies a value for the onBehalfOfContentOwner parameter,
- * and it can only be used in conjunction with that parameter. In addition, the
- * request must be authorized using a CMS account that is linked to the content
- * owner that the onBehalfOfContentOwner parameter specifies. Finally, the
- * channel that the onBehalfOfContentOwnerChannel parameter value specifies must
- * be linked to the content owner that the onBehalfOfContentOwner parameter
- * specifies.
- *
- * This parameter is intended for YouTube content partners that own and manage
- * many different YouTube channels. It allows content owners to authenticate
- * once and perform actions on behalf of the channel specified in the parameter
- * value, without having to provide authentication credentials for each separate
- * channel.
- * @opt_param bool notifySubscribers The notifySubscribers parameter indicates
- * whether YouTube should send notification to subscribers about the inserted
- * video.
- * @opt_param bool autoLevels The autoLevels parameter indicates whether YouTube
- * should automatically enhance the video's lighting and color.
- * @return Postman_Google_Service_YouTube_Video
- */
- public function insert($part, Postman_Google_Service_YouTube_Video $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('insert', array($params), "Postman_Google_Service_YouTube_Video");
- }
-
- /**
- * Returns a list of videos that match the API request parameters.
- * (videos.listVideos)
- *
- * @param string $part The part parameter specifies a comma-separated list of
- * one or more video resource properties that the API response will include. The
- * part names that you can include in the parameter value are id, snippet,
- * contentDetails, fileDetails, liveStreamingDetails, player, processingDetails,
- * recordingDetails, statistics, status, suggestions, and topicDetails.
- *
- * If the parameter identifies a property that contains child properties, the
- * child properties will be included in the response. For example, in a video
- * resource, the snippet property contains the channelId, title, description,
- * tags, and categoryId properties. As such, if you set part=snippet, the API
- * response will contain all of those properties.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- * @opt_param string regionCode The regionCode parameter instructs the API to
- * select a video chart available in the specified region. This parameter can
- * only be used in conjunction with the chart parameter. The parameter value is
- * an ISO 3166-1 alpha-2 country code.
- * @opt_param string locale DEPRECATED
- * @opt_param string videoCategoryId The videoCategoryId parameter identifies
- * the video category for which the chart should be retrieved. This parameter
- * can only be used in conjunction with the chart parameter. By default, charts
- * are not restricted to a particular category.
- * @opt_param string chart The chart parameter identifies the chart that you
- * want to retrieve.
- * @opt_param string maxResults The maxResults parameter specifies the maximum
- * number of items that should be returned in the result set.
- *
- * Note: This parameter is supported for use in conjunction with the myRating
- * parameter, but it is not supported for use in conjunction with the id
- * parameter.
- * @opt_param string pageToken The pageToken parameter identifies a specific
- * page in the result set that should be returned. In an API response, the
- * nextPageToken and prevPageToken properties identify other pages that could be
- * retrieved.
- *
- * Note: This parameter is supported for use in conjunction with the myRating
- * parameter, but it is not supported for use in conjunction with the id
- * parameter.
- * @opt_param string myRating Set this parameter's value to like or dislike to
- * instruct the API to only return videos liked or disliked by the authenticated
- * user.
- * @opt_param string id The id parameter specifies a comma-separated list of the
- * YouTube video ID(s) for the resource(s) that are being retrieved. In a video
- * resource, the id property specifies the video's ID.
- * @return Postman_Google_Service_YouTube_VideoListResponse
- */
- public function listVideos($part, $optParams = array())
- {
- $params = array('part' => $part);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTube_VideoListResponse");
- }
-
- /**
- * Add a like or dislike rating to a video or remove a rating from a video.
- * (videos.rate)
- *
- * @param string $id The id parameter specifies the YouTube video ID of the
- * video that is being rated or having its rating removed.
- * @param string $rating Specifies the rating to record.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The CMS account that
- * the user authenticates with must be linked to the specified YouTube content
- * owner.
- */
- public function rate($id, $rating, $optParams = array())
- {
- $params = array('id' => $id, 'rating' => $rating);
- $params = array_merge($params, $optParams);
- return $this->call('rate', array($params));
- }
-
- /**
- * Updates a video's metadata. (videos.update)
- *
- * @param string $part The part parameter serves two purposes in this operation.
- * It identifies the properties that the write operation will set as well as the
- * properties that the API response will include.
- *
- * The part names that you can include in the parameter value are snippet,
- * contentDetails, fileDetails, liveStreamingDetails, player, processingDetails,
- * recordingDetails, statistics, status, suggestions, and topicDetails.
- *
- * Note that this method will override the existing values for all of the
- * mutable properties that are contained in any parts that the parameter value
- * specifies. For example, a video's privacy setting is contained in the status
- * part. As such, if your request is updating a private video, and the request's
- * part parameter value includes the status part, the video's privacy setting
- * will be updated to whatever value the request body specifies. If the request
- * body does not specify a value, the existing privacy setting will be removed
- * and the video will revert to the default privacy setting.
- *
- * In addition, not all of those parts contain properties that can be set when
- * setting or updating a video's metadata. For example, the statistics object
- * encapsulates statistics that YouTube calculates for a video and does not
- * contain values that you can set or modify. If the parameter value specifies a
- * part that does not contain mutable values, that part will still be included
- * in the API response.
- * @param Postman_Google_Video $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner Note: This parameter is intended
- * exclusively for YouTube content partners.
- *
- * The onBehalfOfContentOwner parameter indicates that the request's
- * authorization credentials identify a YouTube CMS user who is acting on behalf
- * of the content owner specified in the parameter value. This parameter is
- * intended for YouTube content partners that own and manage many different
- * YouTube channels. It allows content owners to authenticate once and get
- * access to all their video and channel data, without having to provide
- * authentication credentials for each individual channel. The actual CMS
- * account that the user authenticates with must be linked to the specified
- * YouTube content owner.
- * @return Postman_Google_Service_YouTube_Video
- */
- public function update($part, Postman_Google_Service_YouTube_Video $postBody, $optParams = array())
- {
- $params = array('part' => $part, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('update', array($params), "Postman_Google_Service_YouTube_Video");
- }
-}
-
-/**
- * The "watermarks" collection of methods.
- * Typical usage is:
- *
- * $youtubeService = new Postman_Google_Service_YouTube(...);
- * $watermarks = $youtubeService->watermarks;
- *
- */
-class Postman_Google_Service_YouTube_Watermarks_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Uploads a watermark image to YouTube and sets it for a channel.
- * (watermarks.set)
- *
- * @param string $channelId The channelId parameter specifies a YouTube channel
- * ID for which the watermark is being provided.
- * @param Postman_Google_InvideoBranding $postBody
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * indicates that the authenticated user is acting on behalf of the content
- * owner specified in the parameter value. This parameter is intended for
- * YouTube content partners that own and manage many different YouTube channels.
- * It allows content owners to authenticate once and get access to all their
- * video and channel data, without having to provide authentication credentials
- * for each individual channel. The actual CMS account that the user
- * authenticates with needs to be linked to the specified YouTube content owner.
- */
- public function set($channelId, Postman_Google_Service_YouTube_InvideoBranding $postBody, $optParams = array())
- {
- $params = array('channelId' => $channelId, 'postBody' => $postBody);
- $params = array_merge($params, $optParams);
- return $this->call('set', array($params));
- }
-
- /**
- * Deletes a watermark. (watermarks.unsetWatermarks)
- *
- * @param string $channelId The channelId parameter specifies a YouTube channel
- * ID for which the watermark is being unset.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * indicates that the authenticated user is acting on behalf of the content
- * owner specified in the parameter value. This parameter is intended for
- * YouTube content partners that own and manage many different YouTube channels.
- * It allows content owners to authenticate once and get access to all their
- * video and channel data, without having to provide authentication credentials
- * for each individual channel. The actual CMS account that the user
- * authenticates with needs to be linked to the specified YouTube content owner.
- */
- public function unsetWatermarks($channelId, $optParams = array())
- {
- $params = array('channelId' => $channelId);
- $params = array_merge($params, $optParams);
- return $this->call('unset', array($params));
- }
-}
-
-
-
-
-class Postman_Google_Service_YouTube_AccessPolicy extends Postman_Google_Collection
-{
- protected $collection_key = 'exception';
- protected $internal_gapi_mappings = array(
- );
- public $allowed;
- public $exception;
-
-
- public function setAllowed($allowed)
- {
- $this->allowed = $allowed;
- }
- public function getAllowed()
- {
- return $this->allowed;
- }
- public function setException($exception)
- {
- $this->exception = $exception;
- }
- public function getException()
- {
- return $this->exception;
- }
-}
-
-class Postman_Google_Service_YouTube_Activity extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_ActivityContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_ActivitySnippet';
- protected $snippetDataType = '';
-
-
- public function setContentDetails(Postman_Google_Service_YouTube_ActivityContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_ActivitySnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $bulletinType = 'Postman_Google_Service_YouTube_ActivityContentDetailsBulletin';
- protected $bulletinDataType = '';
- protected $channelItemType = 'Postman_Google_Service_YouTube_ActivityContentDetailsChannelItem';
- protected $channelItemDataType = '';
- protected $commentType = 'Postman_Google_Service_YouTube_ActivityContentDetailsComment';
- protected $commentDataType = '';
- protected $favoriteType = 'Postman_Google_Service_YouTube_ActivityContentDetailsFavorite';
- protected $favoriteDataType = '';
- protected $likeType = 'Postman_Google_Service_YouTube_ActivityContentDetailsLike';
- protected $likeDataType = '';
- protected $playlistItemType = 'Postman_Google_Service_YouTube_ActivityContentDetailsPlaylistItem';
- protected $playlistItemDataType = '';
- protected $promotedItemType = 'Postman_Google_Service_YouTube_ActivityContentDetailsPromotedItem';
- protected $promotedItemDataType = '';
- protected $recommendationType = 'Postman_Google_Service_YouTube_ActivityContentDetailsRecommendation';
- protected $recommendationDataType = '';
- protected $socialType = 'Postman_Google_Service_YouTube_ActivityContentDetailsSocial';
- protected $socialDataType = '';
- protected $subscriptionType = 'Postman_Google_Service_YouTube_ActivityContentDetailsSubscription';
- protected $subscriptionDataType = '';
- protected $uploadType = 'Postman_Google_Service_YouTube_ActivityContentDetailsUpload';
- protected $uploadDataType = '';
-
-
- public function setBulletin(Postman_Google_Service_YouTube_ActivityContentDetailsBulletin $bulletin)
- {
- $this->bulletin = $bulletin;
- }
- public function getBulletin()
- {
- return $this->bulletin;
- }
- public function setChannelItem(Postman_Google_Service_YouTube_ActivityContentDetailsChannelItem $channelItem)
- {
- $this->channelItem = $channelItem;
- }
- public function getChannelItem()
- {
- return $this->channelItem;
- }
- public function setComment(Postman_Google_Service_YouTube_ActivityContentDetailsComment $comment)
- {
- $this->comment = $comment;
- }
- public function getComment()
- {
- return $this->comment;
- }
- public function setFavorite(Postman_Google_Service_YouTube_ActivityContentDetailsFavorite $favorite)
- {
- $this->favorite = $favorite;
- }
- public function getFavorite()
- {
- return $this->favorite;
- }
- public function setLike(Postman_Google_Service_YouTube_ActivityContentDetailsLike $like)
- {
- $this->like = $like;
- }
- public function getLike()
- {
- return $this->like;
- }
- public function setPlaylistItem(Postman_Google_Service_YouTube_ActivityContentDetailsPlaylistItem $playlistItem)
- {
- $this->playlistItem = $playlistItem;
- }
- public function getPlaylistItem()
- {
- return $this->playlistItem;
- }
- public function setPromotedItem(Postman_Google_Service_YouTube_ActivityContentDetailsPromotedItem $promotedItem)
- {
- $this->promotedItem = $promotedItem;
- }
- public function getPromotedItem()
- {
- return $this->promotedItem;
- }
- public function setRecommendation(Postman_Google_Service_YouTube_ActivityContentDetailsRecommendation $recommendation)
- {
- $this->recommendation = $recommendation;
- }
- public function getRecommendation()
- {
- return $this->recommendation;
- }
- public function setSocial(Postman_Google_Service_YouTube_ActivityContentDetailsSocial $social)
- {
- $this->social = $social;
- }
- public function getSocial()
- {
- return $this->social;
- }
- public function setSubscription(Postman_Google_Service_YouTube_ActivityContentDetailsSubscription $subscription)
- {
- $this->subscription = $subscription;
- }
- public function getSubscription()
- {
- return $this->subscription;
- }
- public function setUpload(Postman_Google_Service_YouTube_ActivityContentDetailsUpload $upload)
- {
- $this->upload = $upload;
- }
- public function getUpload()
- {
- return $this->upload;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsBulletin extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsChannelItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsComment extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsFavorite extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsLike extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsPlaylistItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $playlistId;
- public $playlistItemId;
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setPlaylistId($playlistId)
- {
- $this->playlistId = $playlistId;
- }
- public function getPlaylistId()
- {
- return $this->playlistId;
- }
- public function setPlaylistItemId($playlistItemId)
- {
- $this->playlistItemId = $playlistItemId;
- }
- public function getPlaylistItemId()
- {
- return $this->playlistItemId;
- }
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsPromotedItem extends Postman_Google_Collection
-{
- protected $collection_key = 'impressionUrl';
- protected $internal_gapi_mappings = array(
- );
- public $adTag;
- public $clickTrackingUrl;
- public $creativeViewUrl;
- public $ctaType;
- public $customCtaButtonText;
- public $descriptionText;
- public $destinationUrl;
- public $forecastingUrl;
- public $impressionUrl;
- public $videoId;
-
-
- public function setAdTag($adTag)
- {
- $this->adTag = $adTag;
- }
- public function getAdTag()
- {
- return $this->adTag;
- }
- public function setClickTrackingUrl($clickTrackingUrl)
- {
- $this->clickTrackingUrl = $clickTrackingUrl;
- }
- public function getClickTrackingUrl()
- {
- return $this->clickTrackingUrl;
- }
- public function setCreativeViewUrl($creativeViewUrl)
- {
- $this->creativeViewUrl = $creativeViewUrl;
- }
- public function getCreativeViewUrl()
- {
- return $this->creativeViewUrl;
- }
- public function setCtaType($ctaType)
- {
- $this->ctaType = $ctaType;
- }
- public function getCtaType()
- {
- return $this->ctaType;
- }
- public function setCustomCtaButtonText($customCtaButtonText)
- {
- $this->customCtaButtonText = $customCtaButtonText;
- }
- public function getCustomCtaButtonText()
- {
- return $this->customCtaButtonText;
- }
- public function setDescriptionText($descriptionText)
- {
- $this->descriptionText = $descriptionText;
- }
- public function getDescriptionText()
- {
- return $this->descriptionText;
- }
- public function setDestinationUrl($destinationUrl)
- {
- $this->destinationUrl = $destinationUrl;
- }
- public function getDestinationUrl()
- {
- return $this->destinationUrl;
- }
- public function setForecastingUrl($forecastingUrl)
- {
- $this->forecastingUrl = $forecastingUrl;
- }
- public function getForecastingUrl()
- {
- return $this->forecastingUrl;
- }
- public function setImpressionUrl($impressionUrl)
- {
- $this->impressionUrl = $impressionUrl;
- }
- public function getImpressionUrl()
- {
- return $this->impressionUrl;
- }
- public function setVideoId($videoId)
- {
- $this->videoId = $videoId;
- }
- public function getVideoId()
- {
- return $this->videoId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsRecommendation extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $reason;
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
- protected $seedResourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $seedResourceIdDataType = '';
-
-
- public function setReason($reason)
- {
- $this->reason = $reason;
- }
- public function getReason()
- {
- return $this->reason;
- }
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setSeedResourceId(Postman_Google_Service_YouTube_ResourceId $seedResourceId)
- {
- $this->seedResourceId = $seedResourceId;
- }
- public function getSeedResourceId()
- {
- return $this->seedResourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsSocial extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $author;
- public $imageUrl;
- public $referenceUrl;
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
- public $type;
-
-
- public function setAuthor($author)
- {
- $this->author = $author;
- }
- public function getAuthor()
- {
- return $this->author;
- }
- public function setImageUrl($imageUrl)
- {
- $this->imageUrl = $imageUrl;
- }
- public function getImageUrl()
- {
- return $this->imageUrl;
- }
- public function setReferenceUrl($referenceUrl)
- {
- $this->referenceUrl = $referenceUrl;
- }
- public function getReferenceUrl()
- {
- return $this->referenceUrl;
- }
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsSubscription extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
-
-
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityContentDetailsUpload extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $videoId;
-
-
- public function setVideoId($videoId)
- {
- $this->videoId = $videoId;
- }
- public function getVideoId()
- {
- return $this->videoId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivityListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_Activity';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_ActivitySnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $channelTitle;
- public $description;
- public $groupId;
- public $publishedAt;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
- public $type;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setChannelTitle($channelTitle)
- {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle()
- {
- return $this->channelTitle;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setGroupId($groupId)
- {
- $this->groupId = $groupId;
- }
- public function getGroupId()
- {
- return $this->groupId;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTube_CdnSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $format;
- protected $ingestionInfoType = 'Postman_Google_Service_YouTube_IngestionInfo';
- protected $ingestionInfoDataType = '';
- public $ingestionType;
-
-
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setIngestionInfo(Postman_Google_Service_YouTube_IngestionInfo $ingestionInfo)
- {
- $this->ingestionInfo = $ingestionInfo;
- }
- public function getIngestionInfo()
- {
- return $this->ingestionInfo;
- }
- public function setIngestionType($ingestionType)
- {
- $this->ingestionType = $ingestionType;
- }
- public function getIngestionType()
- {
- return $this->ingestionType;
- }
-}
-
-class Postman_Google_Service_YouTube_Channel extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $auditDetailsType = 'Postman_Google_Service_YouTube_ChannelAuditDetails';
- protected $auditDetailsDataType = '';
- protected $brandingSettingsType = 'Postman_Google_Service_YouTube_ChannelBrandingSettings';
- protected $brandingSettingsDataType = '';
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_ChannelContentDetails';
- protected $contentDetailsDataType = '';
- protected $contentOwnerDetailsType = 'Postman_Google_Service_YouTube_ChannelContentOwnerDetails';
- protected $contentOwnerDetailsDataType = '';
- protected $conversionPingsType = 'Postman_Google_Service_YouTube_ChannelConversionPings';
- protected $conversionPingsDataType = '';
- public $etag;
- public $id;
- protected $invideoPromotionType = 'Postman_Google_Service_YouTube_InvideoPromotion';
- protected $invideoPromotionDataType = '';
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_ChannelSnippet';
- protected $snippetDataType = '';
- protected $statisticsType = 'Postman_Google_Service_YouTube_ChannelStatistics';
- protected $statisticsDataType = '';
- protected $statusType = 'Postman_Google_Service_YouTube_ChannelStatus';
- protected $statusDataType = '';
- protected $topicDetailsType = 'Postman_Google_Service_YouTube_ChannelTopicDetails';
- protected $topicDetailsDataType = '';
-
-
- public function setAuditDetails(Postman_Google_Service_YouTube_ChannelAuditDetails $auditDetails)
- {
- $this->auditDetails = $auditDetails;
- }
- public function getAuditDetails()
- {
- return $this->auditDetails;
- }
- public function setBrandingSettings(Postman_Google_Service_YouTube_ChannelBrandingSettings $brandingSettings)
- {
- $this->brandingSettings = $brandingSettings;
- }
- public function getBrandingSettings()
- {
- return $this->brandingSettings;
- }
- public function setContentDetails(Postman_Google_Service_YouTube_ChannelContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setContentOwnerDetails(Postman_Google_Service_YouTube_ChannelContentOwnerDetails $contentOwnerDetails)
- {
- $this->contentOwnerDetails = $contentOwnerDetails;
- }
- public function getContentOwnerDetails()
- {
- return $this->contentOwnerDetails;
- }
- public function setConversionPings(Postman_Google_Service_YouTube_ChannelConversionPings $conversionPings)
- {
- $this->conversionPings = $conversionPings;
- }
- public function getConversionPings()
- {
- return $this->conversionPings;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setInvideoPromotion(Postman_Google_Service_YouTube_InvideoPromotion $invideoPromotion)
- {
- $this->invideoPromotion = $invideoPromotion;
- }
- public function getInvideoPromotion()
- {
- return $this->invideoPromotion;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setSnippet(Postman_Google_Service_YouTube_ChannelSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStatistics(Postman_Google_Service_YouTube_ChannelStatistics $statistics)
- {
- $this->statistics = $statistics;
- }
- public function getStatistics()
- {
- return $this->statistics;
- }
- public function setStatus(Postman_Google_Service_YouTube_ChannelStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTopicDetails(Postman_Google_Service_YouTube_ChannelTopicDetails $topicDetails)
- {
- $this->topicDetails = $topicDetails;
- }
- public function getTopicDetails()
- {
- return $this->topicDetails;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelAuditDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $communityGuidelinesGoodStanding;
- public $contentIdClaimsGoodStanding;
- public $copyrightStrikesGoodStanding;
- public $overallGoodStanding;
-
-
- public function setCommunityGuidelinesGoodStanding($communityGuidelinesGoodStanding)
- {
- $this->communityGuidelinesGoodStanding = $communityGuidelinesGoodStanding;
- }
- public function getCommunityGuidelinesGoodStanding()
- {
- return $this->communityGuidelinesGoodStanding;
- }
- public function setContentIdClaimsGoodStanding($contentIdClaimsGoodStanding)
- {
- $this->contentIdClaimsGoodStanding = $contentIdClaimsGoodStanding;
- }
- public function getContentIdClaimsGoodStanding()
- {
- return $this->contentIdClaimsGoodStanding;
- }
- public function setCopyrightStrikesGoodStanding($copyrightStrikesGoodStanding)
- {
- $this->copyrightStrikesGoodStanding = $copyrightStrikesGoodStanding;
- }
- public function getCopyrightStrikesGoodStanding()
- {
- return $this->copyrightStrikesGoodStanding;
- }
- public function setOverallGoodStanding($overallGoodStanding)
- {
- $this->overallGoodStanding = $overallGoodStanding;
- }
- public function getOverallGoodStanding()
- {
- return $this->overallGoodStanding;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelBannerResource extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $kind;
- public $url;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelBrandingSettings extends Postman_Google_Collection
-{
- protected $collection_key = 'hints';
- protected $internal_gapi_mappings = array(
- );
- protected $channelType = 'Postman_Google_Service_YouTube_ChannelSettings';
- protected $channelDataType = '';
- protected $hintsType = 'Postman_Google_Service_YouTube_PropertyValue';
- protected $hintsDataType = 'array';
- protected $imageType = 'Postman_Google_Service_YouTube_ImageSettings';
- protected $imageDataType = '';
- protected $watchType = 'Postman_Google_Service_YouTube_WatchSettings';
- protected $watchDataType = '';
-
-
- public function setChannel(Postman_Google_Service_YouTube_ChannelSettings $channel)
- {
- $this->channel = $channel;
- }
- public function getChannel()
- {
- return $this->channel;
- }
- public function setHints($hints)
- {
- $this->hints = $hints;
- }
- public function getHints()
- {
- return $this->hints;
- }
- public function setImage(Postman_Google_Service_YouTube_ImageSettings $image)
- {
- $this->image = $image;
- }
- public function getImage()
- {
- return $this->image;
- }
- public function setWatch(Postman_Google_Service_YouTube_WatchSettings $watch)
- {
- $this->watch = $watch;
- }
- public function getWatch()
- {
- return $this->watch;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $googlePlusUserId;
- protected $relatedPlaylistsType = 'Postman_Google_Service_YouTube_ChannelContentDetailsRelatedPlaylists';
- protected $relatedPlaylistsDataType = '';
-
-
- public function setGooglePlusUserId($googlePlusUserId)
- {
- $this->googlePlusUserId = $googlePlusUserId;
- }
- public function getGooglePlusUserId()
- {
- return $this->googlePlusUserId;
- }
- public function setRelatedPlaylists(Postman_Google_Service_YouTube_ChannelContentDetailsRelatedPlaylists $relatedPlaylists)
- {
- $this->relatedPlaylists = $relatedPlaylists;
- }
- public function getRelatedPlaylists()
- {
- return $this->relatedPlaylists;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelContentDetailsRelatedPlaylists extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $favorites;
- public $likes;
- public $uploads;
- public $watchHistory;
- public $watchLater;
-
-
- public function setFavorites($favorites)
- {
- $this->favorites = $favorites;
- }
- public function getFavorites()
- {
- return $this->favorites;
- }
- public function setLikes($likes)
- {
- $this->likes = $likes;
- }
- public function getLikes()
- {
- return $this->likes;
- }
- public function setUploads($uploads)
- {
- $this->uploads = $uploads;
- }
- public function getUploads()
- {
- return $this->uploads;
- }
- public function setWatchHistory($watchHistory)
- {
- $this->watchHistory = $watchHistory;
- }
- public function getWatchHistory()
- {
- return $this->watchHistory;
- }
- public function setWatchLater($watchLater)
- {
- $this->watchLater = $watchLater;
- }
- public function getWatchLater()
- {
- return $this->watchLater;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelContentOwnerDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $contentOwner;
- public $timeLinked;
-
-
- public function setContentOwner($contentOwner)
- {
- $this->contentOwner = $contentOwner;
- }
- public function getContentOwner()
- {
- return $this->contentOwner;
- }
- public function setTimeLinked($timeLinked)
- {
- $this->timeLinked = $timeLinked;
- }
- public function getTimeLinked()
- {
- return $this->timeLinked;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelConversionPing extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $context;
- public $conversionUrl;
-
-
- public function setContext($context)
- {
- $this->context = $context;
- }
- public function getContext()
- {
- return $this->context;
- }
- public function setConversionUrl($conversionUrl)
- {
- $this->conversionUrl = $conversionUrl;
- }
- public function getConversionUrl()
- {
- return $this->conversionUrl;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelConversionPings extends Postman_Google_Collection
-{
- protected $collection_key = 'pings';
- protected $internal_gapi_mappings = array(
- );
- protected $pingsType = 'Postman_Google_Service_YouTube_ChannelConversionPing';
- protected $pingsDataType = 'array';
-
-
- public function setPings($pings)
- {
- $this->pings = $pings;
- }
- public function getPings()
- {
- return $this->pings;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_Channel';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelSection extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_ChannelSectionContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_ChannelSectionSnippet';
- protected $snippetDataType = '';
-
-
- public function setContentDetails(Postman_Google_Service_YouTube_ChannelSectionContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_ChannelSectionSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelSectionContentDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'playlists';
- protected $internal_gapi_mappings = array(
- );
- public $channels;
- public $playlists;
-
-
- public function setChannels($channels)
- {
- $this->channels = $channels;
- }
- public function getChannels()
- {
- return $this->channels;
- }
- public function setPlaylists($playlists)
- {
- $this->playlists = $playlists;
- }
- public function getPlaylists()
- {
- return $this->playlists;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelSectionListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_ChannelSection';
- protected $itemsDataType = 'array';
- public $kind;
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelSectionSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $position;
- public $style;
- public $title;
- public $type;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setPosition($position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
- public function setStyle($style)
- {
- $this->style = $style;
- }
- public function getStyle()
- {
- return $this->style;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelSettings extends Postman_Google_Collection
-{
- protected $collection_key = 'featuredChannelsUrls';
- protected $internal_gapi_mappings = array(
- );
- public $defaultTab;
- public $description;
- public $featuredChannelsTitle;
- public $featuredChannelsUrls;
- public $keywords;
- public $moderateComments;
- public $profileColor;
- public $showBrowseView;
- public $showRelatedChannels;
- public $title;
- public $trackingAnalyticsAccountId;
- public $unsubscribedTrailer;
-
-
- public function setDefaultTab($defaultTab)
- {
- $this->defaultTab = $defaultTab;
- }
- public function getDefaultTab()
- {
- return $this->defaultTab;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setFeaturedChannelsTitle($featuredChannelsTitle)
- {
- $this->featuredChannelsTitle = $featuredChannelsTitle;
- }
- public function getFeaturedChannelsTitle()
- {
- return $this->featuredChannelsTitle;
- }
- public function setFeaturedChannelsUrls($featuredChannelsUrls)
- {
- $this->featuredChannelsUrls = $featuredChannelsUrls;
- }
- public function getFeaturedChannelsUrls()
- {
- return $this->featuredChannelsUrls;
- }
- public function setKeywords($keywords)
- {
- $this->keywords = $keywords;
- }
- public function getKeywords()
- {
- return $this->keywords;
- }
- public function setModerateComments($moderateComments)
- {
- $this->moderateComments = $moderateComments;
- }
- public function getModerateComments()
- {
- return $this->moderateComments;
- }
- public function setProfileColor($profileColor)
- {
- $this->profileColor = $profileColor;
- }
- public function getProfileColor()
- {
- return $this->profileColor;
- }
- public function setShowBrowseView($showBrowseView)
- {
- $this->showBrowseView = $showBrowseView;
- }
- public function getShowBrowseView()
- {
- return $this->showBrowseView;
- }
- public function setShowRelatedChannels($showRelatedChannels)
- {
- $this->showRelatedChannels = $showRelatedChannels;
- }
- public function getShowRelatedChannels()
- {
- return $this->showRelatedChannels;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setTrackingAnalyticsAccountId($trackingAnalyticsAccountId)
- {
- $this->trackingAnalyticsAccountId = $trackingAnalyticsAccountId;
- }
- public function getTrackingAnalyticsAccountId()
- {
- return $this->trackingAnalyticsAccountId;
- }
- public function setUnsubscribedTrailer($unsubscribedTrailer)
- {
- $this->unsubscribedTrailer = $unsubscribedTrailer;
- }
- public function getUnsubscribedTrailer()
- {
- return $this->unsubscribedTrailer;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $description;
- public $publishedAt;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelStatistics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $commentCount;
- public $hiddenSubscriberCount;
- public $subscriberCount;
- public $videoCount;
- public $viewCount;
-
-
- public function setCommentCount($commentCount)
- {
- $this->commentCount = $commentCount;
- }
- public function getCommentCount()
- {
- return $this->commentCount;
- }
- public function setHiddenSubscriberCount($hiddenSubscriberCount)
- {
- $this->hiddenSubscriberCount = $hiddenSubscriberCount;
- }
- public function getHiddenSubscriberCount()
- {
- return $this->hiddenSubscriberCount;
- }
- public function setSubscriberCount($subscriberCount)
- {
- $this->subscriberCount = $subscriberCount;
- }
- public function getSubscriberCount()
- {
- return $this->subscriberCount;
- }
- public function setVideoCount($videoCount)
- {
- $this->videoCount = $videoCount;
- }
- public function getVideoCount()
- {
- return $this->videoCount;
- }
- public function setViewCount($viewCount)
- {
- $this->viewCount = $viewCount;
- }
- public function getViewCount()
- {
- return $this->viewCount;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $isLinked;
- public $longUploadsStatus;
- public $privacyStatus;
-
-
- public function setIsLinked($isLinked)
- {
- $this->isLinked = $isLinked;
- }
- public function getIsLinked()
- {
- return $this->isLinked;
- }
- public function setLongUploadsStatus($longUploadsStatus)
- {
- $this->longUploadsStatus = $longUploadsStatus;
- }
- public function getLongUploadsStatus()
- {
- return $this->longUploadsStatus;
- }
- public function setPrivacyStatus($privacyStatus)
- {
- $this->privacyStatus = $privacyStatus;
- }
- public function getPrivacyStatus()
- {
- return $this->privacyStatus;
- }
-}
-
-class Postman_Google_Service_YouTube_ChannelTopicDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'topicIds';
- protected $internal_gapi_mappings = array(
- );
- public $topicIds;
-
-
- public function setTopicIds($topicIds)
- {
- $this->topicIds = $topicIds;
- }
- public function getTopicIds()
- {
- return $this->topicIds;
- }
-}
-
-class Postman_Google_Service_YouTube_ContentRating extends Postman_Google_Collection
-{
- protected $collection_key = 'djctqRatingReasons';
- protected $internal_gapi_mappings = array(
- );
- public $acbRating;
- public $agcomRating;
- public $anatelRating;
- public $bbfcRating;
- public $bfvcRating;
- public $bmukkRating;
- public $catvRating;
- public $catvfrRating;
- public $cbfcRating;
- public $cccRating;
- public $cceRating;
- public $chfilmRating;
- public $chvrsRating;
- public $cicfRating;
- public $cnaRating;
- public $csaRating;
- public $cscfRating;
- public $czfilmRating;
- public $djctqRating;
- public $djctqRatingReasons;
- public $eefilmRating;
- public $egfilmRating;
- public $eirinRating;
- public $fcbmRating;
- public $fcoRating;
- public $fmocRating;
- public $fpbRating;
- public $fskRating;
- public $grfilmRating;
- public $icaaRating;
- public $ifcoRating;
- public $ilfilmRating;
- public $incaaRating;
- public $kfcbRating;
- public $kijkwijzerRating;
- public $kmrbRating;
- public $lsfRating;
- public $mccaaRating;
- public $mccypRating;
- public $mdaRating;
- public $medietilsynetRating;
- public $mekuRating;
- public $mibacRating;
- public $mocRating;
- public $moctwRating;
- public $mpaaRating;
- public $mtrcbRating;
- public $nbcRating;
- public $nbcplRating;
- public $nfrcRating;
- public $nfvcbRating;
- public $nkclvRating;
- public $oflcRating;
- public $pefilmRating;
- public $rcnofRating;
- public $resorteviolenciaRating;
- public $rtcRating;
- public $rteRating;
- public $russiaRating;
- public $skfilmRating;
- public $smaisRating;
- public $smsaRating;
- public $tvpgRating;
- public $ytRating;
-
-
- public function setAcbRating($acbRating)
- {
- $this->acbRating = $acbRating;
- }
- public function getAcbRating()
- {
- return $this->acbRating;
- }
- public function setAgcomRating($agcomRating)
- {
- $this->agcomRating = $agcomRating;
- }
- public function getAgcomRating()
- {
- return $this->agcomRating;
- }
- public function setAnatelRating($anatelRating)
- {
- $this->anatelRating = $anatelRating;
- }
- public function getAnatelRating()
- {
- return $this->anatelRating;
- }
- public function setBbfcRating($bbfcRating)
- {
- $this->bbfcRating = $bbfcRating;
- }
- public function getBbfcRating()
- {
- return $this->bbfcRating;
- }
- public function setBfvcRating($bfvcRating)
- {
- $this->bfvcRating = $bfvcRating;
- }
- public function getBfvcRating()
- {
- return $this->bfvcRating;
- }
- public function setBmukkRating($bmukkRating)
- {
- $this->bmukkRating = $bmukkRating;
- }
- public function getBmukkRating()
- {
- return $this->bmukkRating;
- }
- public function setCatvRating($catvRating)
- {
- $this->catvRating = $catvRating;
- }
- public function getCatvRating()
- {
- return $this->catvRating;
- }
- public function setCatvfrRating($catvfrRating)
- {
- $this->catvfrRating = $catvfrRating;
- }
- public function getCatvfrRating()
- {
- return $this->catvfrRating;
- }
- public function setCbfcRating($cbfcRating)
- {
- $this->cbfcRating = $cbfcRating;
- }
- public function getCbfcRating()
- {
- return $this->cbfcRating;
- }
- public function setCccRating($cccRating)
- {
- $this->cccRating = $cccRating;
- }
- public function getCccRating()
- {
- return $this->cccRating;
- }
- public function setCceRating($cceRating)
- {
- $this->cceRating = $cceRating;
- }
- public function getCceRating()
- {
- return $this->cceRating;
- }
- public function setChfilmRating($chfilmRating)
- {
- $this->chfilmRating = $chfilmRating;
- }
- public function getChfilmRating()
- {
- return $this->chfilmRating;
- }
- public function setChvrsRating($chvrsRating)
- {
- $this->chvrsRating = $chvrsRating;
- }
- public function getChvrsRating()
- {
- return $this->chvrsRating;
- }
- public function setCicfRating($cicfRating)
- {
- $this->cicfRating = $cicfRating;
- }
- public function getCicfRating()
- {
- return $this->cicfRating;
- }
- public function setCnaRating($cnaRating)
- {
- $this->cnaRating = $cnaRating;
- }
- public function getCnaRating()
- {
- return $this->cnaRating;
- }
- public function setCsaRating($csaRating)
- {
- $this->csaRating = $csaRating;
- }
- public function getCsaRating()
- {
- return $this->csaRating;
- }
- public function setCscfRating($cscfRating)
- {
- $this->cscfRating = $cscfRating;
- }
- public function getCscfRating()
- {
- return $this->cscfRating;
- }
- public function setCzfilmRating($czfilmRating)
- {
- $this->czfilmRating = $czfilmRating;
- }
- public function getCzfilmRating()
- {
- return $this->czfilmRating;
- }
- public function setDjctqRating($djctqRating)
- {
- $this->djctqRating = $djctqRating;
- }
- public function getDjctqRating()
- {
- return $this->djctqRating;
- }
- public function setDjctqRatingReasons($djctqRatingReasons)
- {
- $this->djctqRatingReasons = $djctqRatingReasons;
- }
- public function getDjctqRatingReasons()
- {
- return $this->djctqRatingReasons;
- }
- public function setEefilmRating($eefilmRating)
- {
- $this->eefilmRating = $eefilmRating;
- }
- public function getEefilmRating()
- {
- return $this->eefilmRating;
- }
- public function setEgfilmRating($egfilmRating)
- {
- $this->egfilmRating = $egfilmRating;
- }
- public function getEgfilmRating()
- {
- return $this->egfilmRating;
- }
- public function setEirinRating($eirinRating)
- {
- $this->eirinRating = $eirinRating;
- }
- public function getEirinRating()
- {
- return $this->eirinRating;
- }
- public function setFcbmRating($fcbmRating)
- {
- $this->fcbmRating = $fcbmRating;
- }
- public function getFcbmRating()
- {
- return $this->fcbmRating;
- }
- public function setFcoRating($fcoRating)
- {
- $this->fcoRating = $fcoRating;
- }
- public function getFcoRating()
- {
- return $this->fcoRating;
- }
- public function setFmocRating($fmocRating)
- {
- $this->fmocRating = $fmocRating;
- }
- public function getFmocRating()
- {
- return $this->fmocRating;
- }
- public function setFpbRating($fpbRating)
- {
- $this->fpbRating = $fpbRating;
- }
- public function getFpbRating()
- {
- return $this->fpbRating;
- }
- public function setFskRating($fskRating)
- {
- $this->fskRating = $fskRating;
- }
- public function getFskRating()
- {
- return $this->fskRating;
- }
- public function setGrfilmRating($grfilmRating)
- {
- $this->grfilmRating = $grfilmRating;
- }
- public function getGrfilmRating()
- {
- return $this->grfilmRating;
- }
- public function setIcaaRating($icaaRating)
- {
- $this->icaaRating = $icaaRating;
- }
- public function getIcaaRating()
- {
- return $this->icaaRating;
- }
- public function setIfcoRating($ifcoRating)
- {
- $this->ifcoRating = $ifcoRating;
- }
- public function getIfcoRating()
- {
- return $this->ifcoRating;
- }
- public function setIlfilmRating($ilfilmRating)
- {
- $this->ilfilmRating = $ilfilmRating;
- }
- public function getIlfilmRating()
- {
- return $this->ilfilmRating;
- }
- public function setIncaaRating($incaaRating)
- {
- $this->incaaRating = $incaaRating;
- }
- public function getIncaaRating()
- {
- return $this->incaaRating;
- }
- public function setKfcbRating($kfcbRating)
- {
- $this->kfcbRating = $kfcbRating;
- }
- public function getKfcbRating()
- {
- return $this->kfcbRating;
- }
- public function setKijkwijzerRating($kijkwijzerRating)
- {
- $this->kijkwijzerRating = $kijkwijzerRating;
- }
- public function getKijkwijzerRating()
- {
- return $this->kijkwijzerRating;
- }
- public function setKmrbRating($kmrbRating)
- {
- $this->kmrbRating = $kmrbRating;
- }
- public function getKmrbRating()
- {
- return $this->kmrbRating;
- }
- public function setLsfRating($lsfRating)
- {
- $this->lsfRating = $lsfRating;
- }
- public function getLsfRating()
- {
- return $this->lsfRating;
- }
- public function setMccaaRating($mccaaRating)
- {
- $this->mccaaRating = $mccaaRating;
- }
- public function getMccaaRating()
- {
- return $this->mccaaRating;
- }
- public function setMccypRating($mccypRating)
- {
- $this->mccypRating = $mccypRating;
- }
- public function getMccypRating()
- {
- return $this->mccypRating;
- }
- public function setMdaRating($mdaRating)
- {
- $this->mdaRating = $mdaRating;
- }
- public function getMdaRating()
- {
- return $this->mdaRating;
- }
- public function setMedietilsynetRating($medietilsynetRating)
- {
- $this->medietilsynetRating = $medietilsynetRating;
- }
- public function getMedietilsynetRating()
- {
- return $this->medietilsynetRating;
- }
- public function setMekuRating($mekuRating)
- {
- $this->mekuRating = $mekuRating;
- }
- public function getMekuRating()
- {
- return $this->mekuRating;
- }
- public function setMibacRating($mibacRating)
- {
- $this->mibacRating = $mibacRating;
- }
- public function getMibacRating()
- {
- return $this->mibacRating;
- }
- public function setMocRating($mocRating)
- {
- $this->mocRating = $mocRating;
- }
- public function getMocRating()
- {
- return $this->mocRating;
- }
- public function setMoctwRating($moctwRating)
- {
- $this->moctwRating = $moctwRating;
- }
- public function getMoctwRating()
- {
- return $this->moctwRating;
- }
- public function setMpaaRating($mpaaRating)
- {
- $this->mpaaRating = $mpaaRating;
- }
- public function getMpaaRating()
- {
- return $this->mpaaRating;
- }
- public function setMtrcbRating($mtrcbRating)
- {
- $this->mtrcbRating = $mtrcbRating;
- }
- public function getMtrcbRating()
- {
- return $this->mtrcbRating;
- }
- public function setNbcRating($nbcRating)
- {
- $this->nbcRating = $nbcRating;
- }
- public function getNbcRating()
- {
- return $this->nbcRating;
- }
- public function setNbcplRating($nbcplRating)
- {
- $this->nbcplRating = $nbcplRating;
- }
- public function getNbcplRating()
- {
- return $this->nbcplRating;
- }
- public function setNfrcRating($nfrcRating)
- {
- $this->nfrcRating = $nfrcRating;
- }
- public function getNfrcRating()
- {
- return $this->nfrcRating;
- }
- public function setNfvcbRating($nfvcbRating)
- {
- $this->nfvcbRating = $nfvcbRating;
- }
- public function getNfvcbRating()
- {
- return $this->nfvcbRating;
- }
- public function setNkclvRating($nkclvRating)
- {
- $this->nkclvRating = $nkclvRating;
- }
- public function getNkclvRating()
- {
- return $this->nkclvRating;
- }
- public function setOflcRating($oflcRating)
- {
- $this->oflcRating = $oflcRating;
- }
- public function getOflcRating()
- {
- return $this->oflcRating;
- }
- public function setPefilmRating($pefilmRating)
- {
- $this->pefilmRating = $pefilmRating;
- }
- public function getPefilmRating()
- {
- return $this->pefilmRating;
- }
- public function setRcnofRating($rcnofRating)
- {
- $this->rcnofRating = $rcnofRating;
- }
- public function getRcnofRating()
- {
- return $this->rcnofRating;
- }
- public function setResorteviolenciaRating($resorteviolenciaRating)
- {
- $this->resorteviolenciaRating = $resorteviolenciaRating;
- }
- public function getResorteviolenciaRating()
- {
- return $this->resorteviolenciaRating;
- }
- public function setRtcRating($rtcRating)
- {
- $this->rtcRating = $rtcRating;
- }
- public function getRtcRating()
- {
- return $this->rtcRating;
- }
- public function setRteRating($rteRating)
- {
- $this->rteRating = $rteRating;
- }
- public function getRteRating()
- {
- return $this->rteRating;
- }
- public function setRussiaRating($russiaRating)
- {
- $this->russiaRating = $russiaRating;
- }
- public function getRussiaRating()
- {
- return $this->russiaRating;
- }
- public function setSkfilmRating($skfilmRating)
- {
- $this->skfilmRating = $skfilmRating;
- }
- public function getSkfilmRating()
- {
- return $this->skfilmRating;
- }
- public function setSmaisRating($smaisRating)
- {
- $this->smaisRating = $smaisRating;
- }
- public function getSmaisRating()
- {
- return $this->smaisRating;
- }
- public function setSmsaRating($smsaRating)
- {
- $this->smsaRating = $smsaRating;
- }
- public function getSmsaRating()
- {
- return $this->smsaRating;
- }
- public function setTvpgRating($tvpgRating)
- {
- $this->tvpgRating = $tvpgRating;
- }
- public function getTvpgRating()
- {
- return $this->tvpgRating;
- }
- public function setYtRating($ytRating)
- {
- $this->ytRating = $ytRating;
- }
- public function getYtRating()
- {
- return $this->ytRating;
- }
-}
-
-class Postman_Google_Service_YouTube_GeoPoint extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $altitude;
- public $latitude;
- public $longitude;
-
-
- public function setAltitude($altitude)
- {
- $this->altitude = $altitude;
- }
- public function getAltitude()
- {
- return $this->altitude;
- }
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- public function getLatitude()
- {
- return $this->latitude;
- }
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- public function getLongitude()
- {
- return $this->longitude;
- }
-}
-
-class Postman_Google_Service_YouTube_GuideCategory extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_GuideCategorySnippet';
- protected $snippetDataType = '';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_GuideCategorySnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_GuideCategoryListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_GuideCategory';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_GuideCategorySnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_I18nLanguage extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_I18nLanguageSnippet';
- protected $snippetDataType = '';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_I18nLanguageSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_I18nLanguageListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_I18nLanguage';
- protected $itemsDataType = 'array';
- public $kind;
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_I18nLanguageSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $hl;
- public $name;
-
-
- public function setHl($hl)
- {
- $this->hl = $hl;
- }
- public function getHl()
- {
- return $this->hl;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_YouTube_I18nRegion extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_I18nRegionSnippet';
- protected $snippetDataType = '';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_I18nRegionSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_I18nRegionListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_I18nRegion';
- protected $itemsDataType = 'array';
- public $kind;
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_I18nRegionSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $gl;
- public $name;
-
-
- public function setGl($gl)
- {
- $this->gl = $gl;
- }
- public function getGl()
- {
- return $this->gl;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
-
-class Postman_Google_Service_YouTube_ImageSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $backgroundImageUrlType = 'Postman_Google_Service_YouTube_LocalizedProperty';
- protected $backgroundImageUrlDataType = '';
- public $bannerExternalUrl;
- public $bannerImageUrl;
- public $bannerMobileExtraHdImageUrl;
- public $bannerMobileHdImageUrl;
- public $bannerMobileImageUrl;
- public $bannerMobileLowImageUrl;
- public $bannerMobileMediumHdImageUrl;
- public $bannerTabletExtraHdImageUrl;
- public $bannerTabletHdImageUrl;
- public $bannerTabletImageUrl;
- public $bannerTabletLowImageUrl;
- public $bannerTvHighImageUrl;
- public $bannerTvImageUrl;
- public $bannerTvLowImageUrl;
- public $bannerTvMediumImageUrl;
- protected $largeBrandedBannerImageImapScriptType = 'Postman_Google_Service_YouTube_LocalizedProperty';
- protected $largeBrandedBannerImageImapScriptDataType = '';
- protected $largeBrandedBannerImageUrlType = 'Postman_Google_Service_YouTube_LocalizedProperty';
- protected $largeBrandedBannerImageUrlDataType = '';
- protected $smallBrandedBannerImageImapScriptType = 'Postman_Google_Service_YouTube_LocalizedProperty';
- protected $smallBrandedBannerImageImapScriptDataType = '';
- protected $smallBrandedBannerImageUrlType = 'Postman_Google_Service_YouTube_LocalizedProperty';
- protected $smallBrandedBannerImageUrlDataType = '';
- public $trackingImageUrl;
- public $watchIconImageUrl;
-
-
- public function setBackgroundImageUrl(Postman_Google_Service_YouTube_LocalizedProperty $backgroundImageUrl)
- {
- $this->backgroundImageUrl = $backgroundImageUrl;
- }
- public function getBackgroundImageUrl()
- {
- return $this->backgroundImageUrl;
- }
- public function setBannerExternalUrl($bannerExternalUrl)
- {
- $this->bannerExternalUrl = $bannerExternalUrl;
- }
- public function getBannerExternalUrl()
- {
- return $this->bannerExternalUrl;
- }
- public function setBannerImageUrl($bannerImageUrl)
- {
- $this->bannerImageUrl = $bannerImageUrl;
- }
- public function getBannerImageUrl()
- {
- return $this->bannerImageUrl;
- }
- public function setBannerMobileExtraHdImageUrl($bannerMobileExtraHdImageUrl)
- {
- $this->bannerMobileExtraHdImageUrl = $bannerMobileExtraHdImageUrl;
- }
- public function getBannerMobileExtraHdImageUrl()
- {
- return $this->bannerMobileExtraHdImageUrl;
- }
- public function setBannerMobileHdImageUrl($bannerMobileHdImageUrl)
- {
- $this->bannerMobileHdImageUrl = $bannerMobileHdImageUrl;
- }
- public function getBannerMobileHdImageUrl()
- {
- return $this->bannerMobileHdImageUrl;
- }
- public function setBannerMobileImageUrl($bannerMobileImageUrl)
- {
- $this->bannerMobileImageUrl = $bannerMobileImageUrl;
- }
- public function getBannerMobileImageUrl()
- {
- return $this->bannerMobileImageUrl;
- }
- public function setBannerMobileLowImageUrl($bannerMobileLowImageUrl)
- {
- $this->bannerMobileLowImageUrl = $bannerMobileLowImageUrl;
- }
- public function getBannerMobileLowImageUrl()
- {
- return $this->bannerMobileLowImageUrl;
- }
- public function setBannerMobileMediumHdImageUrl($bannerMobileMediumHdImageUrl)
- {
- $this->bannerMobileMediumHdImageUrl = $bannerMobileMediumHdImageUrl;
- }
- public function getBannerMobileMediumHdImageUrl()
- {
- return $this->bannerMobileMediumHdImageUrl;
- }
- public function setBannerTabletExtraHdImageUrl($bannerTabletExtraHdImageUrl)
- {
- $this->bannerTabletExtraHdImageUrl = $bannerTabletExtraHdImageUrl;
- }
- public function getBannerTabletExtraHdImageUrl()
- {
- return $this->bannerTabletExtraHdImageUrl;
- }
- public function setBannerTabletHdImageUrl($bannerTabletHdImageUrl)
- {
- $this->bannerTabletHdImageUrl = $bannerTabletHdImageUrl;
- }
- public function getBannerTabletHdImageUrl()
- {
- return $this->bannerTabletHdImageUrl;
- }
- public function setBannerTabletImageUrl($bannerTabletImageUrl)
- {
- $this->bannerTabletImageUrl = $bannerTabletImageUrl;
- }
- public function getBannerTabletImageUrl()
- {
- return $this->bannerTabletImageUrl;
- }
- public function setBannerTabletLowImageUrl($bannerTabletLowImageUrl)
- {
- $this->bannerTabletLowImageUrl = $bannerTabletLowImageUrl;
- }
- public function getBannerTabletLowImageUrl()
- {
- return $this->bannerTabletLowImageUrl;
- }
- public function setBannerTvHighImageUrl($bannerTvHighImageUrl)
- {
- $this->bannerTvHighImageUrl = $bannerTvHighImageUrl;
- }
- public function getBannerTvHighImageUrl()
- {
- return $this->bannerTvHighImageUrl;
- }
- public function setBannerTvImageUrl($bannerTvImageUrl)
- {
- $this->bannerTvImageUrl = $bannerTvImageUrl;
- }
- public function getBannerTvImageUrl()
- {
- return $this->bannerTvImageUrl;
- }
- public function setBannerTvLowImageUrl($bannerTvLowImageUrl)
- {
- $this->bannerTvLowImageUrl = $bannerTvLowImageUrl;
- }
- public function getBannerTvLowImageUrl()
- {
- return $this->bannerTvLowImageUrl;
- }
- public function setBannerTvMediumImageUrl($bannerTvMediumImageUrl)
- {
- $this->bannerTvMediumImageUrl = $bannerTvMediumImageUrl;
- }
- public function getBannerTvMediumImageUrl()
- {
- return $this->bannerTvMediumImageUrl;
- }
- public function setLargeBrandedBannerImageImapScript(Postman_Google_Service_YouTube_LocalizedProperty $largeBrandedBannerImageImapScript)
- {
- $this->largeBrandedBannerImageImapScript = $largeBrandedBannerImageImapScript;
- }
- public function getLargeBrandedBannerImageImapScript()
- {
- return $this->largeBrandedBannerImageImapScript;
- }
- public function setLargeBrandedBannerImageUrl(Postman_Google_Service_YouTube_LocalizedProperty $largeBrandedBannerImageUrl)
- {
- $this->largeBrandedBannerImageUrl = $largeBrandedBannerImageUrl;
- }
- public function getLargeBrandedBannerImageUrl()
- {
- return $this->largeBrandedBannerImageUrl;
- }
- public function setSmallBrandedBannerImageImapScript(Postman_Google_Service_YouTube_LocalizedProperty $smallBrandedBannerImageImapScript)
- {
- $this->smallBrandedBannerImageImapScript = $smallBrandedBannerImageImapScript;
- }
- public function getSmallBrandedBannerImageImapScript()
- {
- return $this->smallBrandedBannerImageImapScript;
- }
- public function setSmallBrandedBannerImageUrl(Postman_Google_Service_YouTube_LocalizedProperty $smallBrandedBannerImageUrl)
- {
- $this->smallBrandedBannerImageUrl = $smallBrandedBannerImageUrl;
- }
- public function getSmallBrandedBannerImageUrl()
- {
- return $this->smallBrandedBannerImageUrl;
- }
- public function setTrackingImageUrl($trackingImageUrl)
- {
- $this->trackingImageUrl = $trackingImageUrl;
- }
- public function getTrackingImageUrl()
- {
- return $this->trackingImageUrl;
- }
- public function setWatchIconImageUrl($watchIconImageUrl)
- {
- $this->watchIconImageUrl = $watchIconImageUrl;
- }
- public function getWatchIconImageUrl()
- {
- return $this->watchIconImageUrl;
- }
-}
-
-class Postman_Google_Service_YouTube_IngestionInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $backupIngestionAddress;
- public $ingestionAddress;
- public $streamName;
-
-
- public function setBackupIngestionAddress($backupIngestionAddress)
- {
- $this->backupIngestionAddress = $backupIngestionAddress;
- }
- public function getBackupIngestionAddress()
- {
- return $this->backupIngestionAddress;
- }
- public function setIngestionAddress($ingestionAddress)
- {
- $this->ingestionAddress = $ingestionAddress;
- }
- public function getIngestionAddress()
- {
- return $this->ingestionAddress;
- }
- public function setStreamName($streamName)
- {
- $this->streamName = $streamName;
- }
- public function getStreamName()
- {
- return $this->streamName;
- }
-}
-
-class Postman_Google_Service_YouTube_InvideoBranding extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $imageBytes;
- public $imageUrl;
- protected $positionType = 'Postman_Google_Service_YouTube_InvideoPosition';
- protected $positionDataType = '';
- public $targetChannelId;
- protected $timingType = 'Postman_Google_Service_YouTube_InvideoTiming';
- protected $timingDataType = '';
-
-
- public function setImageBytes($imageBytes)
- {
- $this->imageBytes = $imageBytes;
- }
- public function getImageBytes()
- {
- return $this->imageBytes;
- }
- public function setImageUrl($imageUrl)
- {
- $this->imageUrl = $imageUrl;
- }
- public function getImageUrl()
- {
- return $this->imageUrl;
- }
- public function setPosition(Postman_Google_Service_YouTube_InvideoPosition $position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
- public function setTargetChannelId($targetChannelId)
- {
- $this->targetChannelId = $targetChannelId;
- }
- public function getTargetChannelId()
- {
- return $this->targetChannelId;
- }
- public function setTiming(Postman_Google_Service_YouTube_InvideoTiming $timing)
- {
- $this->timing = $timing;
- }
- public function getTiming()
- {
- return $this->timing;
- }
-}
-
-class Postman_Google_Service_YouTube_InvideoPosition extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $cornerPosition;
- public $type;
-
-
- public function setCornerPosition($cornerPosition)
- {
- $this->cornerPosition = $cornerPosition;
- }
- public function getCornerPosition()
- {
- return $this->cornerPosition;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTube_InvideoPromotion extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $defaultTimingType = 'Postman_Google_Service_YouTube_InvideoTiming';
- protected $defaultTimingDataType = '';
- protected $itemsType = 'Postman_Google_Service_YouTube_PromotedItem';
- protected $itemsDataType = 'array';
- protected $positionType = 'Postman_Google_Service_YouTube_InvideoPosition';
- protected $positionDataType = '';
- public $useSmartTiming;
-
-
- public function setDefaultTiming(Postman_Google_Service_YouTube_InvideoTiming $defaultTiming)
- {
- $this->defaultTiming = $defaultTiming;
- }
- public function getDefaultTiming()
- {
- return $this->defaultTiming;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setPosition(Postman_Google_Service_YouTube_InvideoPosition $position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
- public function setUseSmartTiming($useSmartTiming)
- {
- $this->useSmartTiming = $useSmartTiming;
- }
- public function getUseSmartTiming()
- {
- return $this->useSmartTiming;
- }
-}
-
-class Postman_Google_Service_YouTube_InvideoTiming extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $durationMs;
- public $offsetMs;
- public $type;
-
-
- public function setDurationMs($durationMs)
- {
- $this->durationMs = $durationMs;
- }
- public function getDurationMs()
- {
- return $this->durationMs;
- }
- public function setOffsetMs($offsetMs)
- {
- $this->offsetMs = $offsetMs;
- }
- public function getOffsetMs()
- {
- return $this->offsetMs;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveBroadcast extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_LiveBroadcastContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_LiveBroadcastSnippet';
- protected $snippetDataType = '';
- protected $statusType = 'Postman_Google_Service_YouTube_LiveBroadcastStatus';
- protected $statusDataType = '';
-
-
- public function setContentDetails(Postman_Google_Service_YouTube_LiveBroadcastContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_LiveBroadcastSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStatus(Postman_Google_Service_YouTube_LiveBroadcastStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveBroadcastContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $boundStreamId;
- public $enableClosedCaptions;
- public $enableContentEncryption;
- public $enableDvr;
- public $enableEmbed;
- protected $monitorStreamType = 'Postman_Google_Service_YouTube_MonitorStreamInfo';
- protected $monitorStreamDataType = '';
- public $recordFromStart;
- public $startWithSlate;
-
-
- public function setBoundStreamId($boundStreamId)
- {
- $this->boundStreamId = $boundStreamId;
- }
- public function getBoundStreamId()
- {
- return $this->boundStreamId;
- }
- public function setEnableClosedCaptions($enableClosedCaptions)
- {
- $this->enableClosedCaptions = $enableClosedCaptions;
- }
- public function getEnableClosedCaptions()
- {
- return $this->enableClosedCaptions;
- }
- public function setEnableContentEncryption($enableContentEncryption)
- {
- $this->enableContentEncryption = $enableContentEncryption;
- }
- public function getEnableContentEncryption()
- {
- return $this->enableContentEncryption;
- }
- public function setEnableDvr($enableDvr)
- {
- $this->enableDvr = $enableDvr;
- }
- public function getEnableDvr()
- {
- return $this->enableDvr;
- }
- public function setEnableEmbed($enableEmbed)
- {
- $this->enableEmbed = $enableEmbed;
- }
- public function getEnableEmbed()
- {
- return $this->enableEmbed;
- }
- public function setMonitorStream(Postman_Google_Service_YouTube_MonitorStreamInfo $monitorStream)
- {
- $this->monitorStream = $monitorStream;
- }
- public function getMonitorStream()
- {
- return $this->monitorStream;
- }
- public function setRecordFromStart($recordFromStart)
- {
- $this->recordFromStart = $recordFromStart;
- }
- public function getRecordFromStart()
- {
- return $this->recordFromStart;
- }
- public function setStartWithSlate($startWithSlate)
- {
- $this->startWithSlate = $startWithSlate;
- }
- public function getStartWithSlate()
- {
- return $this->startWithSlate;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveBroadcastListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_LiveBroadcast';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveBroadcastSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $actualEndTime;
- public $actualStartTime;
- public $channelId;
- public $description;
- public $publishedAt;
- public $scheduledEndTime;
- public $scheduledStartTime;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setActualEndTime($actualEndTime)
- {
- $this->actualEndTime = $actualEndTime;
- }
- public function getActualEndTime()
- {
- return $this->actualEndTime;
- }
- public function setActualStartTime($actualStartTime)
- {
- $this->actualStartTime = $actualStartTime;
- }
- public function getActualStartTime()
- {
- return $this->actualStartTime;
- }
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setScheduledEndTime($scheduledEndTime)
- {
- $this->scheduledEndTime = $scheduledEndTime;
- }
- public function getScheduledEndTime()
- {
- return $this->scheduledEndTime;
- }
- public function setScheduledStartTime($scheduledStartTime)
- {
- $this->scheduledStartTime = $scheduledStartTime;
- }
- public function getScheduledStartTime()
- {
- return $this->scheduledStartTime;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveBroadcastStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $lifeCycleStatus;
- public $liveBroadcastPriority;
- public $privacyStatus;
- public $recordingStatus;
-
-
- public function setLifeCycleStatus($lifeCycleStatus)
- {
- $this->lifeCycleStatus = $lifeCycleStatus;
- }
- public function getLifeCycleStatus()
- {
- return $this->lifeCycleStatus;
- }
- public function setLiveBroadcastPriority($liveBroadcastPriority)
- {
- $this->liveBroadcastPriority = $liveBroadcastPriority;
- }
- public function getLiveBroadcastPriority()
- {
- return $this->liveBroadcastPriority;
- }
- public function setPrivacyStatus($privacyStatus)
- {
- $this->privacyStatus = $privacyStatus;
- }
- public function getPrivacyStatus()
- {
- return $this->privacyStatus;
- }
- public function setRecordingStatus($recordingStatus)
- {
- $this->recordingStatus = $recordingStatus;
- }
- public function getRecordingStatus()
- {
- return $this->recordingStatus;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveStream extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $cdnType = 'Postman_Google_Service_YouTube_CdnSettings';
- protected $cdnDataType = '';
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_LiveStreamContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_LiveStreamSnippet';
- protected $snippetDataType = '';
- protected $statusType = 'Postman_Google_Service_YouTube_LiveStreamStatus';
- protected $statusDataType = '';
-
-
- public function setCdn(Postman_Google_Service_YouTube_CdnSettings $cdn)
- {
- $this->cdn = $cdn;
- }
- public function getCdn()
- {
- return $this->cdn;
- }
- public function setContentDetails(Postman_Google_Service_YouTube_LiveStreamContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_LiveStreamSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStatus(Postman_Google_Service_YouTube_LiveStreamStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveStreamContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $closedCaptionsIngestionUrl;
- public $isReusable;
-
-
- public function setClosedCaptionsIngestionUrl($closedCaptionsIngestionUrl)
- {
- $this->closedCaptionsIngestionUrl = $closedCaptionsIngestionUrl;
- }
- public function getClosedCaptionsIngestionUrl()
- {
- return $this->closedCaptionsIngestionUrl;
- }
- public function setIsReusable($isReusable)
- {
- $this->isReusable = $isReusable;
- }
- public function getIsReusable()
- {
- return $this->isReusable;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveStreamListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_LiveStream';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveStreamSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $description;
- public $publishedAt;
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_LiveStreamStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $streamStatus;
-
-
- public function setStreamStatus($streamStatus)
- {
- $this->streamStatus = $streamStatus;
- }
- public function getStreamStatus()
- {
- return $this->streamStatus;
- }
-}
-
-class Postman_Google_Service_YouTube_LocalizedProperty extends Postman_Google_Collection
-{
- protected $collection_key = 'localized';
- protected $internal_gapi_mappings = array(
- );
- public $default;
- protected $localizedType = 'Postman_Google_Service_YouTube_LocalizedString';
- protected $localizedDataType = 'array';
-
-
- public function setDefault($default)
- {
- $this->default = $default;
- }
- public function getDefault()
- {
- return $this->default;
- }
- public function setLocalized($localized)
- {
- $this->localized = $localized;
- }
- public function getLocalized()
- {
- return $this->localized;
- }
-}
-
-class Postman_Google_Service_YouTube_LocalizedString extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $language;
- public $value;
-
-
- public function setLanguage($language)
- {
- $this->language = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_YouTube_MonitorStreamInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $broadcastStreamDelayMs;
- public $embedHtml;
- public $enableMonitorStream;
-
-
- public function setBroadcastStreamDelayMs($broadcastStreamDelayMs)
- {
- $this->broadcastStreamDelayMs = $broadcastStreamDelayMs;
- }
- public function getBroadcastStreamDelayMs()
- {
- return $this->broadcastStreamDelayMs;
- }
- public function setEmbedHtml($embedHtml)
- {
- $this->embedHtml = $embedHtml;
- }
- public function getEmbedHtml()
- {
- return $this->embedHtml;
- }
- public function setEnableMonitorStream($enableMonitorStream)
- {
- $this->enableMonitorStream = $enableMonitorStream;
- }
- public function getEnableMonitorStream()
- {
- return $this->enableMonitorStream;
- }
-}
-
-class Postman_Google_Service_YouTube_PageInfo extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $resultsPerPage;
- public $totalResults;
-
-
- public function setResultsPerPage($resultsPerPage)
- {
- $this->resultsPerPage = $resultsPerPage;
- }
- public function getResultsPerPage()
- {
- return $this->resultsPerPage;
- }
- public function setTotalResults($totalResults)
- {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults()
- {
- return $this->totalResults;
- }
-}
-
-class Postman_Google_Service_YouTube_Playlist extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_PlaylistContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $playerType = 'Postman_Google_Service_YouTube_PlaylistPlayer';
- protected $playerDataType = '';
- protected $snippetType = 'Postman_Google_Service_YouTube_PlaylistSnippet';
- protected $snippetDataType = '';
- protected $statusType = 'Postman_Google_Service_YouTube_PlaylistStatus';
- protected $statusDataType = '';
-
-
- public function setContentDetails(Postman_Google_Service_YouTube_PlaylistContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setPlayer(Postman_Google_Service_YouTube_PlaylistPlayer $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
- public function setSnippet(Postman_Google_Service_YouTube_PlaylistSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStatus(Postman_Google_Service_YouTube_PlaylistStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $itemCount;
-
-
- public function setItemCount($itemCount)
- {
- $this->itemCount = $itemCount;
- }
- public function getItemCount()
- {
- return $this->itemCount;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_PlaylistItemContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_PlaylistItemSnippet';
- protected $snippetDataType = '';
- protected $statusType = 'Postman_Google_Service_YouTube_PlaylistItemStatus';
- protected $statusDataType = '';
-
-
- public function setContentDetails(Postman_Google_Service_YouTube_PlaylistItemContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_PlaylistItemSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStatus(Postman_Google_Service_YouTube_PlaylistItemStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistItemContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endAt;
- public $note;
- public $startAt;
- public $videoId;
-
-
- public function setEndAt($endAt)
- {
- $this->endAt = $endAt;
- }
- public function getEndAt()
- {
- return $this->endAt;
- }
- public function setNote($note)
- {
- $this->note = $note;
- }
- public function getNote()
- {
- return $this->note;
- }
- public function setStartAt($startAt)
- {
- $this->startAt = $startAt;
- }
- public function getStartAt()
- {
- return $this->startAt;
- }
- public function setVideoId($videoId)
- {
- $this->videoId = $videoId;
- }
- public function getVideoId()
- {
- return $this->videoId;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistItemListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_PlaylistItem';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistItemSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $channelTitle;
- public $description;
- public $playlistId;
- public $position;
- public $publishedAt;
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setChannelTitle($channelTitle)
- {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle()
- {
- return $this->channelTitle;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setPlaylistId($playlistId)
- {
- $this->playlistId = $playlistId;
- }
- public function getPlaylistId()
- {
- return $this->playlistId;
- }
- public function setPosition($position)
- {
- $this->position = $position;
- }
- public function getPosition()
- {
- return $this->position;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistItemStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $privacyStatus;
-
-
- public function setPrivacyStatus($privacyStatus)
- {
- $this->privacyStatus = $privacyStatus;
- }
- public function getPrivacyStatus()
- {
- return $this->privacyStatus;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_Playlist';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistPlayer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $embedHtml;
-
-
- public function setEmbedHtml($embedHtml)
- {
- $this->embedHtml = $embedHtml;
- }
- public function getEmbedHtml()
- {
- return $this->embedHtml;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistSnippet extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $channelTitle;
- public $description;
- public $publishedAt;
- public $tags;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setChannelTitle($channelTitle)
- {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle()
- {
- return $this->channelTitle;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_PlaylistStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $privacyStatus;
-
-
- public function setPrivacyStatus($privacyStatus)
- {
- $this->privacyStatus = $privacyStatus;
- }
- public function getPrivacyStatus()
- {
- return $this->privacyStatus;
- }
-}
-
-class Postman_Google_Service_YouTube_PromotedItem extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $customMessage;
- protected $idType = 'Postman_Google_Service_YouTube_PromotedItemId';
- protected $idDataType = '';
- public $promotedByContentOwner;
- protected $timingType = 'Postman_Google_Service_YouTube_InvideoTiming';
- protected $timingDataType = '';
-
-
- public function setCustomMessage($customMessage)
- {
- $this->customMessage = $customMessage;
- }
- public function getCustomMessage()
- {
- return $this->customMessage;
- }
- public function setId(Postman_Google_Service_YouTube_PromotedItemId $id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setPromotedByContentOwner($promotedByContentOwner)
- {
- $this->promotedByContentOwner = $promotedByContentOwner;
- }
- public function getPromotedByContentOwner()
- {
- return $this->promotedByContentOwner;
- }
- public function setTiming(Postman_Google_Service_YouTube_InvideoTiming $timing)
- {
- $this->timing = $timing;
- }
- public function getTiming()
- {
- return $this->timing;
- }
-}
-
-class Postman_Google_Service_YouTube_PromotedItemId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $recentlyUploadedBy;
- public $type;
- public $videoId;
- public $websiteUrl;
-
-
- public function setRecentlyUploadedBy($recentlyUploadedBy)
- {
- $this->recentlyUploadedBy = $recentlyUploadedBy;
- }
- public function getRecentlyUploadedBy()
- {
- return $this->recentlyUploadedBy;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function setVideoId($videoId)
- {
- $this->videoId = $videoId;
- }
- public function getVideoId()
- {
- return $this->videoId;
- }
- public function setWebsiteUrl($websiteUrl)
- {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl()
- {
- return $this->websiteUrl;
- }
-}
-
-class Postman_Google_Service_YouTube_PropertyValue extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $property;
- public $value;
-
-
- public function setProperty($property)
- {
- $this->property = $property;
- }
- public function getProperty()
- {
- return $this->property;
- }
- public function setValue($value)
- {
- $this->value = $value;
- }
- public function getValue()
- {
- return $this->value;
- }
-}
-
-class Postman_Google_Service_YouTube_ResourceId extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $kind;
- public $playlistId;
- public $videoId;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setPlaylistId($playlistId)
- {
- $this->playlistId = $playlistId;
- }
- public function getPlaylistId()
- {
- return $this->playlistId;
- }
- public function setVideoId($videoId)
- {
- $this->videoId = $videoId;
- }
- public function getVideoId()
- {
- return $this->videoId;
- }
-}
-
-class Postman_Google_Service_YouTube_SearchListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_SearchResult';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_SearchResult extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- protected $idType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $idDataType = '';
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_SearchResultSnippet';
- protected $snippetDataType = '';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setId(Postman_Google_Service_YouTube_ResourceId $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 setSnippet(Postman_Google_Service_YouTube_SearchResultSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_SearchResultSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $channelTitle;
- public $description;
- public $liveBroadcastContent;
- public $publishedAt;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setChannelTitle($channelTitle)
- {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle()
- {
- return $this->channelTitle;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setLiveBroadcastContent($liveBroadcastContent)
- {
- $this->liveBroadcastContent = $liveBroadcastContent;
- }
- public function getLiveBroadcastContent()
- {
- return $this->liveBroadcastContent;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_Subscription extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_SubscriptionContentDetails';
- protected $contentDetailsDataType = '';
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_SubscriptionSnippet';
- protected $snippetDataType = '';
- protected $subscriberSnippetType = 'Postman_Google_Service_YouTube_SubscriptionSubscriberSnippet';
- protected $subscriberSnippetDataType = '';
-
-
- public function setContentDetails(Postman_Google_Service_YouTube_SubscriptionContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_SubscriptionSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setSubscriberSnippet(Postman_Google_Service_YouTube_SubscriptionSubscriberSnippet $subscriberSnippet)
- {
- $this->subscriberSnippet = $subscriberSnippet;
- }
- public function getSubscriberSnippet()
- {
- return $this->subscriberSnippet;
- }
-}
-
-class Postman_Google_Service_YouTube_SubscriptionContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $activityType;
- public $newItemCount;
- public $totalItemCount;
-
-
- public function setActivityType($activityType)
- {
- $this->activityType = $activityType;
- }
- public function getActivityType()
- {
- return $this->activityType;
- }
- public function setNewItemCount($newItemCount)
- {
- $this->newItemCount = $newItemCount;
- }
- public function getNewItemCount()
- {
- return $this->newItemCount;
- }
- public function setTotalItemCount($totalItemCount)
- {
- $this->totalItemCount = $totalItemCount;
- }
- public function getTotalItemCount()
- {
- return $this->totalItemCount;
- }
-}
-
-class Postman_Google_Service_YouTube_SubscriptionListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_Subscription';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_SubscriptionSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $channelTitle;
- public $description;
- public $publishedAt;
- protected $resourceIdType = 'Postman_Google_Service_YouTube_ResourceId';
- protected $resourceIdDataType = '';
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setChannelTitle($channelTitle)
- {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle()
- {
- return $this->channelTitle;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setResourceId(Postman_Google_Service_YouTube_ResourceId $resourceId)
- {
- $this->resourceId = $resourceId;
- }
- public function getResourceId()
- {
- return $this->resourceId;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_SubscriptionSubscriberSnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $channelId;
- public $description;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_Thumbnail extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $height;
- public $url;
- public $width;
-
-
- public function setHeight($height)
- {
- $this->height = $height;
- }
- public function getHeight()
- {
- return $this->height;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function setWidth($width)
- {
- $this->width = $width;
- }
- public function getWidth()
- {
- return $this->width;
- }
-}
-
-class Postman_Google_Service_YouTube_ThumbnailDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $defaultType = 'Postman_Google_Service_YouTube_Thumbnail';
- protected $defaultDataType = '';
- protected $highType = 'Postman_Google_Service_YouTube_Thumbnail';
- protected $highDataType = '';
- protected $maxresType = 'Postman_Google_Service_YouTube_Thumbnail';
- protected $maxresDataType = '';
- protected $mediumType = 'Postman_Google_Service_YouTube_Thumbnail';
- protected $mediumDataType = '';
- protected $standardType = 'Postman_Google_Service_YouTube_Thumbnail';
- protected $standardDataType = '';
-
-
- public function setDefault(Postman_Google_Service_YouTube_Thumbnail $default)
- {
- $this->default = $default;
- }
- public function getDefault()
- {
- return $this->default;
- }
- public function setHigh(Postman_Google_Service_YouTube_Thumbnail $high)
- {
- $this->high = $high;
- }
- public function getHigh()
- {
- return $this->high;
- }
- public function setMaxres(Postman_Google_Service_YouTube_Thumbnail $maxres)
- {
- $this->maxres = $maxres;
- }
- public function getMaxres()
- {
- return $this->maxres;
- }
- public function setMedium(Postman_Google_Service_YouTube_Thumbnail $medium)
- {
- $this->medium = $medium;
- }
- public function getMedium()
- {
- return $this->medium;
- }
- public function setStandard(Postman_Google_Service_YouTube_Thumbnail $standard)
- {
- $this->standard = $standard;
- }
- public function getStandard()
- {
- return $this->standard;
- }
-}
-
-class Postman_Google_Service_YouTube_ThumbnailSetResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $itemsDataType = 'array';
- public $kind;
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_TokenPagination extends Postman_Google_Model
-{
-}
-
-class Postman_Google_Service_YouTube_Video extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $ageGatingType = 'Postman_Google_Service_YouTube_VideoAgeGating';
- protected $ageGatingDataType = '';
- protected $contentDetailsType = 'Postman_Google_Service_YouTube_VideoContentDetails';
- protected $contentDetailsDataType = '';
- protected $conversionPingsType = 'Postman_Google_Service_YouTube_VideoConversionPings';
- protected $conversionPingsDataType = '';
- public $etag;
- protected $fileDetailsType = 'Postman_Google_Service_YouTube_VideoFileDetails';
- protected $fileDetailsDataType = '';
- public $id;
- public $kind;
- protected $liveStreamingDetailsType = 'Postman_Google_Service_YouTube_VideoLiveStreamingDetails';
- protected $liveStreamingDetailsDataType = '';
- protected $monetizationDetailsType = 'Postman_Google_Service_YouTube_VideoMonetizationDetails';
- protected $monetizationDetailsDataType = '';
- protected $playerType = 'Postman_Google_Service_YouTube_VideoPlayer';
- protected $playerDataType = '';
- protected $processingDetailsType = 'Postman_Google_Service_YouTube_VideoProcessingDetails';
- protected $processingDetailsDataType = '';
- protected $projectDetailsType = 'Postman_Google_Service_YouTube_VideoProjectDetails';
- protected $projectDetailsDataType = '';
- protected $recordingDetailsType = 'Postman_Google_Service_YouTube_VideoRecordingDetails';
- protected $recordingDetailsDataType = '';
- protected $snippetType = 'Postman_Google_Service_YouTube_VideoSnippet';
- protected $snippetDataType = '';
- protected $statisticsType = 'Postman_Google_Service_YouTube_VideoStatistics';
- protected $statisticsDataType = '';
- protected $statusType = 'Postman_Google_Service_YouTube_VideoStatus';
- protected $statusDataType = '';
- protected $suggestionsType = 'Postman_Google_Service_YouTube_VideoSuggestions';
- protected $suggestionsDataType = '';
- protected $topicDetailsType = 'Postman_Google_Service_YouTube_VideoTopicDetails';
- protected $topicDetailsDataType = '';
-
-
- public function setAgeGating(Postman_Google_Service_YouTube_VideoAgeGating $ageGating)
- {
- $this->ageGating = $ageGating;
- }
- public function getAgeGating()
- {
- return $this->ageGating;
- }
- public function setContentDetails(Postman_Google_Service_YouTube_VideoContentDetails $contentDetails)
- {
- $this->contentDetails = $contentDetails;
- }
- public function getContentDetails()
- {
- return $this->contentDetails;
- }
- public function setConversionPings(Postman_Google_Service_YouTube_VideoConversionPings $conversionPings)
- {
- $this->conversionPings = $conversionPings;
- }
- public function getConversionPings()
- {
- return $this->conversionPings;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setFileDetails(Postman_Google_Service_YouTube_VideoFileDetails $fileDetails)
- {
- $this->fileDetails = $fileDetails;
- }
- public function getFileDetails()
- {
- return $this->fileDetails;
- }
- 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 setLiveStreamingDetails(Postman_Google_Service_YouTube_VideoLiveStreamingDetails $liveStreamingDetails)
- {
- $this->liveStreamingDetails = $liveStreamingDetails;
- }
- public function getLiveStreamingDetails()
- {
- return $this->liveStreamingDetails;
- }
- public function setMonetizationDetails(Postman_Google_Service_YouTube_VideoMonetizationDetails $monetizationDetails)
- {
- $this->monetizationDetails = $monetizationDetails;
- }
- public function getMonetizationDetails()
- {
- return $this->monetizationDetails;
- }
- public function setPlayer(Postman_Google_Service_YouTube_VideoPlayer $player)
- {
- $this->player = $player;
- }
- public function getPlayer()
- {
- return $this->player;
- }
- public function setProcessingDetails(Postman_Google_Service_YouTube_VideoProcessingDetails $processingDetails)
- {
- $this->processingDetails = $processingDetails;
- }
- public function getProcessingDetails()
- {
- return $this->processingDetails;
- }
- public function setProjectDetails(Postman_Google_Service_YouTube_VideoProjectDetails $projectDetails)
- {
- $this->projectDetails = $projectDetails;
- }
- public function getProjectDetails()
- {
- return $this->projectDetails;
- }
- public function setRecordingDetails(Postman_Google_Service_YouTube_VideoRecordingDetails $recordingDetails)
- {
- $this->recordingDetails = $recordingDetails;
- }
- public function getRecordingDetails()
- {
- return $this->recordingDetails;
- }
- public function setSnippet(Postman_Google_Service_YouTube_VideoSnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
- public function setStatistics(Postman_Google_Service_YouTube_VideoStatistics $statistics)
- {
- $this->statistics = $statistics;
- }
- public function getStatistics()
- {
- return $this->statistics;
- }
- public function setStatus(Postman_Google_Service_YouTube_VideoStatus $status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setSuggestions(Postman_Google_Service_YouTube_VideoSuggestions $suggestions)
- {
- $this->suggestions = $suggestions;
- }
- public function getSuggestions()
- {
- return $this->suggestions;
- }
- public function setTopicDetails(Postman_Google_Service_YouTube_VideoTopicDetails $topicDetails)
- {
- $this->topicDetails = $topicDetails;
- }
- public function getTopicDetails()
- {
- return $this->topicDetails;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoAgeGating extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $alcoholContent;
- public $restricted;
- public $videoGameRating;
-
-
- public function setAlcoholContent($alcoholContent)
- {
- $this->alcoholContent = $alcoholContent;
- }
- public function getAlcoholContent()
- {
- return $this->alcoholContent;
- }
- public function setRestricted($restricted)
- {
- $this->restricted = $restricted;
- }
- public function getRestricted()
- {
- return $this->restricted;
- }
- public function setVideoGameRating($videoGameRating)
- {
- $this->videoGameRating = $videoGameRating;
- }
- public function getVideoGameRating()
- {
- return $this->videoGameRating;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoCategory extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $id;
- public $kind;
- protected $snippetType = 'Postman_Google_Service_YouTube_VideoCategorySnippet';
- protected $snippetDataType = '';
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- 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 setSnippet(Postman_Google_Service_YouTube_VideoCategorySnippet $snippet)
- {
- $this->snippet = $snippet;
- }
- public function getSnippet()
- {
- return $this->snippet;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoCategoryListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_VideoCategory';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoCategorySnippet extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $assignable;
- public $channelId;
- public $title;
-
-
- public function setAssignable($assignable)
- {
- $this->assignable = $assignable;
- }
- public function getAssignable()
- {
- return $this->assignable;
- }
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoContentDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $caption;
- protected $contentRatingType = 'Postman_Google_Service_YouTube_ContentRating';
- protected $contentRatingDataType = '';
- protected $countryRestrictionType = 'Postman_Google_Service_YouTube_AccessPolicy';
- protected $countryRestrictionDataType = '';
- public $definition;
- public $dimension;
- public $duration;
- public $licensedContent;
- protected $regionRestrictionType = 'Postman_Google_Service_YouTube_VideoContentDetailsRegionRestriction';
- protected $regionRestrictionDataType = '';
-
-
- public function setCaption($caption)
- {
- $this->caption = $caption;
- }
- public function getCaption()
- {
- return $this->caption;
- }
- public function setContentRating(Postman_Google_Service_YouTube_ContentRating $contentRating)
- {
- $this->contentRating = $contentRating;
- }
- public function getContentRating()
- {
- return $this->contentRating;
- }
- public function setCountryRestriction(Postman_Google_Service_YouTube_AccessPolicy $countryRestriction)
- {
- $this->countryRestriction = $countryRestriction;
- }
- public function getCountryRestriction()
- {
- return $this->countryRestriction;
- }
- public function setDefinition($definition)
- {
- $this->definition = $definition;
- }
- public function getDefinition()
- {
- return $this->definition;
- }
- public function setDimension($dimension)
- {
- $this->dimension = $dimension;
- }
- public function getDimension()
- {
- return $this->dimension;
- }
- public function setDuration($duration)
- {
- $this->duration = $duration;
- }
- public function getDuration()
- {
- return $this->duration;
- }
- public function setLicensedContent($licensedContent)
- {
- $this->licensedContent = $licensedContent;
- }
- public function getLicensedContent()
- {
- return $this->licensedContent;
- }
- public function setRegionRestriction(Postman_Google_Service_YouTube_VideoContentDetailsRegionRestriction $regionRestriction)
- {
- $this->regionRestriction = $regionRestriction;
- }
- public function getRegionRestriction()
- {
- return $this->regionRestriction;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoContentDetailsRegionRestriction extends Postman_Google_Collection
-{
- protected $collection_key = 'blocked';
- protected $internal_gapi_mappings = array(
- );
- public $allowed;
- public $blocked;
-
-
- public function setAllowed($allowed)
- {
- $this->allowed = $allowed;
- }
- public function getAllowed()
- {
- return $this->allowed;
- }
- public function setBlocked($blocked)
- {
- $this->blocked = $blocked;
- }
- public function getBlocked()
- {
- return $this->blocked;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoConversionPing extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $context;
- public $conversionUrl;
-
-
- public function setContext($context)
- {
- $this->context = $context;
- }
- public function getContext()
- {
- return $this->context;
- }
- public function setConversionUrl($conversionUrl)
- {
- $this->conversionUrl = $conversionUrl;
- }
- public function getConversionUrl()
- {
- return $this->conversionUrl;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoConversionPings extends Postman_Google_Collection
-{
- protected $collection_key = 'pings';
- protected $internal_gapi_mappings = array(
- );
- protected $pingsType = 'Postman_Google_Service_YouTube_VideoConversionPing';
- protected $pingsDataType = 'array';
-
-
- public function setPings($pings)
- {
- $this->pings = $pings;
- }
- public function getPings()
- {
- return $this->pings;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoFileDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'videoStreams';
- protected $internal_gapi_mappings = array(
- );
- protected $audioStreamsType = 'Postman_Google_Service_YouTube_VideoFileDetailsAudioStream';
- protected $audioStreamsDataType = 'array';
- public $bitrateBps;
- public $container;
- public $creationTime;
- public $durationMs;
- public $fileName;
- public $fileSize;
- public $fileType;
- protected $recordingLocationType = 'Postman_Google_Service_YouTube_GeoPoint';
- protected $recordingLocationDataType = '';
- protected $videoStreamsType = 'Postman_Google_Service_YouTube_VideoFileDetailsVideoStream';
- protected $videoStreamsDataType = 'array';
-
-
- public function setAudioStreams($audioStreams)
- {
- $this->audioStreams = $audioStreams;
- }
- public function getAudioStreams()
- {
- return $this->audioStreams;
- }
- public function setBitrateBps($bitrateBps)
- {
- $this->bitrateBps = $bitrateBps;
- }
- public function getBitrateBps()
- {
- return $this->bitrateBps;
- }
- public function setContainer($container)
- {
- $this->container = $container;
- }
- public function getContainer()
- {
- return $this->container;
- }
- public function setCreationTime($creationTime)
- {
- $this->creationTime = $creationTime;
- }
- public function getCreationTime()
- {
- return $this->creationTime;
- }
- public function setDurationMs($durationMs)
- {
- $this->durationMs = $durationMs;
- }
- public function getDurationMs()
- {
- return $this->durationMs;
- }
- public function setFileName($fileName)
- {
- $this->fileName = $fileName;
- }
- public function getFileName()
- {
- return $this->fileName;
- }
- public function setFileSize($fileSize)
- {
- $this->fileSize = $fileSize;
- }
- public function getFileSize()
- {
- return $this->fileSize;
- }
- public function setFileType($fileType)
- {
- $this->fileType = $fileType;
- }
- public function getFileType()
- {
- return $this->fileType;
- }
- public function setRecordingLocation(Postman_Google_Service_YouTube_GeoPoint $recordingLocation)
- {
- $this->recordingLocation = $recordingLocation;
- }
- public function getRecordingLocation()
- {
- return $this->recordingLocation;
- }
- public function setVideoStreams($videoStreams)
- {
- $this->videoStreams = $videoStreams;
- }
- public function getVideoStreams()
- {
- return $this->videoStreams;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoFileDetailsAudioStream extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $bitrateBps;
- public $channelCount;
- public $codec;
- public $vendor;
-
-
- public function setBitrateBps($bitrateBps)
- {
- $this->bitrateBps = $bitrateBps;
- }
- public function getBitrateBps()
- {
- return $this->bitrateBps;
- }
- public function setChannelCount($channelCount)
- {
- $this->channelCount = $channelCount;
- }
- public function getChannelCount()
- {
- return $this->channelCount;
- }
- public function setCodec($codec)
- {
- $this->codec = $codec;
- }
- public function getCodec()
- {
- return $this->codec;
- }
- public function setVendor($vendor)
- {
- $this->vendor = $vendor;
- }
- public function getVendor()
- {
- return $this->vendor;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoFileDetailsVideoStream extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $aspectRatio;
- public $bitrateBps;
- public $codec;
- public $frameRateFps;
- public $heightPixels;
- public $rotation;
- public $vendor;
- public $widthPixels;
-
-
- public function setAspectRatio($aspectRatio)
- {
- $this->aspectRatio = $aspectRatio;
- }
- public function getAspectRatio()
- {
- return $this->aspectRatio;
- }
- public function setBitrateBps($bitrateBps)
- {
- $this->bitrateBps = $bitrateBps;
- }
- public function getBitrateBps()
- {
- return $this->bitrateBps;
- }
- public function setCodec($codec)
- {
- $this->codec = $codec;
- }
- public function getCodec()
- {
- return $this->codec;
- }
- public function setFrameRateFps($frameRateFps)
- {
- $this->frameRateFps = $frameRateFps;
- }
- public function getFrameRateFps()
- {
- return $this->frameRateFps;
- }
- public function setHeightPixels($heightPixels)
- {
- $this->heightPixels = $heightPixels;
- }
- public function getHeightPixels()
- {
- return $this->heightPixels;
- }
- public function setRotation($rotation)
- {
- $this->rotation = $rotation;
- }
- public function getRotation()
- {
- return $this->rotation;
- }
- public function setVendor($vendor)
- {
- $this->vendor = $vendor;
- }
- public function getVendor()
- {
- return $this->vendor;
- }
- public function setWidthPixels($widthPixels)
- {
- $this->widthPixels = $widthPixels;
- }
- public function getWidthPixels()
- {
- return $this->widthPixels;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoGetRatingResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_VideoRating';
- protected $itemsDataType = 'array';
- public $kind;
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoListResponse extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- public $etag;
- public $eventId;
- protected $itemsType = 'Postman_Google_Service_YouTube_Video';
- protected $itemsDataType = 'array';
- public $kind;
- public $nextPageToken;
- protected $pageInfoType = 'Postman_Google_Service_YouTube_PageInfo';
- protected $pageInfoDataType = '';
- public $prevPageToken;
- protected $tokenPaginationType = 'Postman_Google_Service_YouTube_TokenPagination';
- protected $tokenPaginationDataType = '';
- public $visitorId;
-
-
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setEventId($eventId)
- {
- $this->eventId = $eventId;
- }
- public function getEventId()
- {
- return $this->eventId;
- }
- public function setItems($items)
- {
- $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;
- }
- public function setPageInfo(Postman_Google_Service_YouTube_PageInfo $pageInfo)
- {
- $this->pageInfo = $pageInfo;
- }
- public function getPageInfo()
- {
- return $this->pageInfo;
- }
- public function setPrevPageToken($prevPageToken)
- {
- $this->prevPageToken = $prevPageToken;
- }
- public function getPrevPageToken()
- {
- return $this->prevPageToken;
- }
- public function setTokenPagination(Postman_Google_Service_YouTube_TokenPagination $tokenPagination)
- {
- $this->tokenPagination = $tokenPagination;
- }
- public function getTokenPagination()
- {
- return $this->tokenPagination;
- }
- public function setVisitorId($visitorId)
- {
- $this->visitorId = $visitorId;
- }
- public function getVisitorId()
- {
- return $this->visitorId;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoLiveStreamingDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $actualEndTime;
- public $actualStartTime;
- public $concurrentViewers;
- public $scheduledEndTime;
- public $scheduledStartTime;
-
-
- public function setActualEndTime($actualEndTime)
- {
- $this->actualEndTime = $actualEndTime;
- }
- public function getActualEndTime()
- {
- return $this->actualEndTime;
- }
- public function setActualStartTime($actualStartTime)
- {
- $this->actualStartTime = $actualStartTime;
- }
- public function getActualStartTime()
- {
- return $this->actualStartTime;
- }
- public function setConcurrentViewers($concurrentViewers)
- {
- $this->concurrentViewers = $concurrentViewers;
- }
- public function getConcurrentViewers()
- {
- return $this->concurrentViewers;
- }
- public function setScheduledEndTime($scheduledEndTime)
- {
- $this->scheduledEndTime = $scheduledEndTime;
- }
- public function getScheduledEndTime()
- {
- return $this->scheduledEndTime;
- }
- public function setScheduledStartTime($scheduledStartTime)
- {
- $this->scheduledStartTime = $scheduledStartTime;
- }
- public function getScheduledStartTime()
- {
- return $this->scheduledStartTime;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoMonetizationDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $accessType = 'Postman_Google_Service_YouTube_AccessPolicy';
- protected $accessDataType = '';
-
-
- public function setAccess(Postman_Google_Service_YouTube_AccessPolicy $access)
- {
- $this->access = $access;
- }
- public function getAccess()
- {
- return $this->access;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoPlayer extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $embedHtml;
-
-
- public function setEmbedHtml($embedHtml)
- {
- $this->embedHtml = $embedHtml;
- }
- public function getEmbedHtml()
- {
- return $this->embedHtml;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoProcessingDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $editorSuggestionsAvailability;
- public $fileDetailsAvailability;
- public $processingFailureReason;
- public $processingIssuesAvailability;
- protected $processingProgressType = 'Postman_Google_Service_YouTube_VideoProcessingDetailsProcessingProgress';
- protected $processingProgressDataType = '';
- public $processingStatus;
- public $tagSuggestionsAvailability;
- public $thumbnailsAvailability;
-
-
- public function setEditorSuggestionsAvailability($editorSuggestionsAvailability)
- {
- $this->editorSuggestionsAvailability = $editorSuggestionsAvailability;
- }
- public function getEditorSuggestionsAvailability()
- {
- return $this->editorSuggestionsAvailability;
- }
- public function setFileDetailsAvailability($fileDetailsAvailability)
- {
- $this->fileDetailsAvailability = $fileDetailsAvailability;
- }
- public function getFileDetailsAvailability()
- {
- return $this->fileDetailsAvailability;
- }
- public function setProcessingFailureReason($processingFailureReason)
- {
- $this->processingFailureReason = $processingFailureReason;
- }
- public function getProcessingFailureReason()
- {
- return $this->processingFailureReason;
- }
- public function setProcessingIssuesAvailability($processingIssuesAvailability)
- {
- $this->processingIssuesAvailability = $processingIssuesAvailability;
- }
- public function getProcessingIssuesAvailability()
- {
- return $this->processingIssuesAvailability;
- }
- public function setProcessingProgress(Postman_Google_Service_YouTube_VideoProcessingDetailsProcessingProgress $processingProgress)
- {
- $this->processingProgress = $processingProgress;
- }
- public function getProcessingProgress()
- {
- return $this->processingProgress;
- }
- public function setProcessingStatus($processingStatus)
- {
- $this->processingStatus = $processingStatus;
- }
- public function getProcessingStatus()
- {
- return $this->processingStatus;
- }
- public function setTagSuggestionsAvailability($tagSuggestionsAvailability)
- {
- $this->tagSuggestionsAvailability = $tagSuggestionsAvailability;
- }
- public function getTagSuggestionsAvailability()
- {
- return $this->tagSuggestionsAvailability;
- }
- public function setThumbnailsAvailability($thumbnailsAvailability)
- {
- $this->thumbnailsAvailability = $thumbnailsAvailability;
- }
- public function getThumbnailsAvailability()
- {
- return $this->thumbnailsAvailability;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoProcessingDetailsProcessingProgress extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $partsProcessed;
- public $partsTotal;
- public $timeLeftMs;
-
-
- public function setPartsProcessed($partsProcessed)
- {
- $this->partsProcessed = $partsProcessed;
- }
- public function getPartsProcessed()
- {
- return $this->partsProcessed;
- }
- public function setPartsTotal($partsTotal)
- {
- $this->partsTotal = $partsTotal;
- }
- public function getPartsTotal()
- {
- return $this->partsTotal;
- }
- public function setTimeLeftMs($timeLeftMs)
- {
- $this->timeLeftMs = $timeLeftMs;
- }
- public function getTimeLeftMs()
- {
- return $this->timeLeftMs;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoProjectDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $tags;
-
-
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoRating extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $rating;
- public $videoId;
-
-
- public function setRating($rating)
- {
- $this->rating = $rating;
- }
- public function getRating()
- {
- return $this->rating;
- }
- public function setVideoId($videoId)
- {
- $this->videoId = $videoId;
- }
- public function getVideoId()
- {
- return $this->videoId;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoRecordingDetails extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- protected $locationType = 'Postman_Google_Service_YouTube_GeoPoint';
- protected $locationDataType = '';
- public $locationDescription;
- public $recordingDate;
-
-
- public function setLocation(Postman_Google_Service_YouTube_GeoPoint $location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- public function setLocationDescription($locationDescription)
- {
- $this->locationDescription = $locationDescription;
- }
- public function getLocationDescription()
- {
- return $this->locationDescription;
- }
- public function setRecordingDate($recordingDate)
- {
- $this->recordingDate = $recordingDate;
- }
- public function getRecordingDate()
- {
- return $this->recordingDate;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoSnippet extends Postman_Google_Collection
-{
- protected $collection_key = 'tags';
- protected $internal_gapi_mappings = array(
- );
- public $categoryId;
- public $channelId;
- public $channelTitle;
- public $description;
- public $liveBroadcastContent;
- public $publishedAt;
- public $tags;
- protected $thumbnailsType = 'Postman_Google_Service_YouTube_ThumbnailDetails';
- protected $thumbnailsDataType = '';
- public $title;
-
-
- public function setCategoryId($categoryId)
- {
- $this->categoryId = $categoryId;
- }
- public function getCategoryId()
- {
- return $this->categoryId;
- }
- public function setChannelId($channelId)
- {
- $this->channelId = $channelId;
- }
- public function getChannelId()
- {
- return $this->channelId;
- }
- public function setChannelTitle($channelTitle)
- {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle()
- {
- return $this->channelTitle;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setLiveBroadcastContent($liveBroadcastContent)
- {
- $this->liveBroadcastContent = $liveBroadcastContent;
- }
- public function getLiveBroadcastContent()
- {
- return $this->liveBroadcastContent;
- }
- public function setPublishedAt($publishedAt)
- {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt()
- {
- return $this->publishedAt;
- }
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- public function getTags()
- {
- return $this->tags;
- }
- public function setThumbnails(Postman_Google_Service_YouTube_ThumbnailDetails $thumbnails)
- {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails()
- {
- return $this->thumbnails;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoStatistics extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $commentCount;
- public $dislikeCount;
- public $favoriteCount;
- public $likeCount;
- public $viewCount;
-
-
- public function setCommentCount($commentCount)
- {
- $this->commentCount = $commentCount;
- }
- public function getCommentCount()
- {
- return $this->commentCount;
- }
- public function setDislikeCount($dislikeCount)
- {
- $this->dislikeCount = $dislikeCount;
- }
- public function getDislikeCount()
- {
- return $this->dislikeCount;
- }
- public function setFavoriteCount($favoriteCount)
- {
- $this->favoriteCount = $favoriteCount;
- }
- public function getFavoriteCount()
- {
- return $this->favoriteCount;
- }
- public function setLikeCount($likeCount)
- {
- $this->likeCount = $likeCount;
- }
- public function getLikeCount()
- {
- return $this->likeCount;
- }
- public function setViewCount($viewCount)
- {
- $this->viewCount = $viewCount;
- }
- public function getViewCount()
- {
- return $this->viewCount;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoStatus extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $embeddable;
- public $failureReason;
- public $license;
- public $privacyStatus;
- public $publicStatsViewable;
- public $publishAt;
- public $rejectionReason;
- public $uploadStatus;
-
-
- public function setEmbeddable($embeddable)
- {
- $this->embeddable = $embeddable;
- }
- public function getEmbeddable()
- {
- return $this->embeddable;
- }
- public function setFailureReason($failureReason)
- {
- $this->failureReason = $failureReason;
- }
- public function getFailureReason()
- {
- return $this->failureReason;
- }
- public function setLicense($license)
- {
- $this->license = $license;
- }
- public function getLicense()
- {
- return $this->license;
- }
- public function setPrivacyStatus($privacyStatus)
- {
- $this->privacyStatus = $privacyStatus;
- }
- public function getPrivacyStatus()
- {
- return $this->privacyStatus;
- }
- public function setPublicStatsViewable($publicStatsViewable)
- {
- $this->publicStatsViewable = $publicStatsViewable;
- }
- public function getPublicStatsViewable()
- {
- return $this->publicStatsViewable;
- }
- public function setPublishAt($publishAt)
- {
- $this->publishAt = $publishAt;
- }
- public function getPublishAt()
- {
- return $this->publishAt;
- }
- public function setRejectionReason($rejectionReason)
- {
- $this->rejectionReason = $rejectionReason;
- }
- public function getRejectionReason()
- {
- return $this->rejectionReason;
- }
- public function setUploadStatus($uploadStatus)
- {
- $this->uploadStatus = $uploadStatus;
- }
- public function getUploadStatus()
- {
- return $this->uploadStatus;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoSuggestions extends Postman_Google_Collection
-{
- protected $collection_key = 'tagSuggestions';
- protected $internal_gapi_mappings = array(
- );
- public $editorSuggestions;
- public $processingErrors;
- public $processingHints;
- public $processingWarnings;
- protected $tagSuggestionsType = 'Postman_Google_Service_YouTube_VideoSuggestionsTagSuggestion';
- protected $tagSuggestionsDataType = 'array';
-
-
- public function setEditorSuggestions($editorSuggestions)
- {
- $this->editorSuggestions = $editorSuggestions;
- }
- public function getEditorSuggestions()
- {
- return $this->editorSuggestions;
- }
- public function setProcessingErrors($processingErrors)
- {
- $this->processingErrors = $processingErrors;
- }
- public function getProcessingErrors()
- {
- return $this->processingErrors;
- }
- public function setProcessingHints($processingHints)
- {
- $this->processingHints = $processingHints;
- }
- public function getProcessingHints()
- {
- return $this->processingHints;
- }
- public function setProcessingWarnings($processingWarnings)
- {
- $this->processingWarnings = $processingWarnings;
- }
- public function getProcessingWarnings()
- {
- return $this->processingWarnings;
- }
- public function setTagSuggestions($tagSuggestions)
- {
- $this->tagSuggestions = $tagSuggestions;
- }
- public function getTagSuggestions()
- {
- return $this->tagSuggestions;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoSuggestionsTagSuggestion extends Postman_Google_Collection
-{
- protected $collection_key = 'categoryRestricts';
- protected $internal_gapi_mappings = array(
- );
- public $categoryRestricts;
- public $tag;
-
-
- public function setCategoryRestricts($categoryRestricts)
- {
- $this->categoryRestricts = $categoryRestricts;
- }
- public function getCategoryRestricts()
- {
- return $this->categoryRestricts;
- }
- public function setTag($tag)
- {
- $this->tag = $tag;
- }
- public function getTag()
- {
- return $this->tag;
- }
-}
-
-class Postman_Google_Service_YouTube_VideoTopicDetails extends Postman_Google_Collection
-{
- protected $collection_key = 'topicIds';
- protected $internal_gapi_mappings = array(
- );
- public $relevantTopicIds;
- public $topicIds;
-
-
- public function setRelevantTopicIds($relevantTopicIds)
- {
- $this->relevantTopicIds = $relevantTopicIds;
- }
- public function getRelevantTopicIds()
- {
- return $this->relevantTopicIds;
- }
- public function setTopicIds($topicIds)
- {
- $this->topicIds = $topicIds;
- }
- public function getTopicIds()
- {
- return $this->topicIds;
- }
-}
-
-class Postman_Google_Service_YouTube_WatchSettings extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $backgroundColor;
- public $featuredPlaylistId;
- public $textColor;
-
-
- public function setBackgroundColor($backgroundColor)
- {
- $this->backgroundColor = $backgroundColor;
- }
- public function getBackgroundColor()
- {
- return $this->backgroundColor;
- }
- public function setFeaturedPlaylistId($featuredPlaylistId)
- {
- $this->featuredPlaylistId = $featuredPlaylistId;
- }
- public function getFeaturedPlaylistId()
- {
- return $this->featuredPlaylistId;
- }
- public function setTextColor($textColor)
- {
- $this->textColor = $textColor;
- }
- public function getTextColor()
- {
- return $this->textColor;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/YouTubeAnalytics.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/YouTubeAnalytics.php
deleted file mode 100644
index 158f559..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/YouTubeAnalytics.php
+++ /dev/null
@@ -1,608 +0,0 @@
-
- * Retrieve your YouTube Analytics reports.
- *
- * - * For more information about this service, see the API - * Documentation - *
- * - * @author Google, Inc. - */ -class Postman_Google_Service_YouTubeAnalytics extends Postman_Google_Service -{ - /** View YouTube Analytics monetary reports for your YouTube content. */ - const YT_ANALYTICS_MONETARY_READONLY = - "https://www.googleapis.com/auth/yt-analytics-monetary.readonly"; - /** View YouTube Analytics reports for your YouTube content. */ - const YT_ANALYTICS_READONLY = - "https://www.googleapis.com/auth/yt-analytics.readonly"; - - public $batchReportDefinitions; - public $batchReports; - public $reports; - - - /** - * Constructs the internal representation of the YouTubeAnalytics service. - * - * @param Postman_Google_Client $client - */ - public function __construct(Postman_Google_Client $client) - { - parent::__construct($client); - $this->servicePath = 'youtube/analytics/v1/'; - $this->version = 'v1'; - $this->serviceName = 'youtubeAnalytics'; - - $this->batchReportDefinitions = new Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitions_Resource( - $this, - $this->serviceName, - 'batchReportDefinitions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'batchReportDefinitions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->batchReports = new Postman_Google_Service_YouTubeAnalytics_BatchReports_Resource( - $this, - $this->serviceName, - 'batchReports', - array( - 'methods' => array( - 'list' => array( - 'path' => 'batchReports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'batchReportDefinitionId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports = new Postman_Google_Service_YouTubeAnalytics_Reports_Resource( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'query' => array( - 'path' => 'reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'start-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'end-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} - - -/** - * The "batchReportDefinitions" collection of methods. - * Typical usage is: - *
- * $youtubeAnalyticsService = new Postman_Google_Service_YouTubeAnalytics(...);
- * $batchReportDefinitions = $youtubeAnalyticsService->batchReportDefinitions;
- *
- */
-class Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitions_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of available batch report definitions.
- * (batchReportDefinitions.listBatchReportDefinitions)
- *
- * @param string $onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * identifies the content owner that the user is acting on behalf of.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionList
- */
- public function listBatchReportDefinitions($onBehalfOfContentOwner, $optParams = array())
- {
- $params = array('onBehalfOfContentOwner' => $onBehalfOfContentOwner);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionList");
- }
-}
-
-/**
- * The "batchReports" collection of methods.
- * Typical usage is:
- *
- * $youtubeAnalyticsService = new Postman_Google_Service_YouTubeAnalytics(...);
- * $batchReports = $youtubeAnalyticsService->batchReports;
- *
- */
-class Postman_Google_Service_YouTubeAnalytics_BatchReports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieves a list of processed batch reports. (batchReports.listBatchReports)
- *
- * @param string $batchReportDefinitionId The batchReportDefinitionId parameter
- * specifies the ID of the batch reportort definition for which you are
- * retrieving reports.
- * @param string $onBehalfOfContentOwner The onBehalfOfContentOwner parameter
- * identifies the content owner that the user is acting on behalf of.
- * @param array $optParams Optional parameters.
- * @return Postman_Google_Service_YouTubeAnalytics_BatchReportList
- */
- public function listBatchReports($batchReportDefinitionId, $onBehalfOfContentOwner, $optParams = array())
- {
- $params = array('batchReportDefinitionId' => $batchReportDefinitionId, 'onBehalfOfContentOwner' => $onBehalfOfContentOwner);
- $params = array_merge($params, $optParams);
- return $this->call('list', array($params), "Postman_Google_Service_YouTubeAnalytics_BatchReportList");
- }
-}
-
-/**
- * The "reports" collection of methods.
- * Typical usage is:
- *
- * $youtubeAnalyticsService = new Postman_Google_Service_YouTubeAnalytics(...);
- * $reports = $youtubeAnalyticsService->reports;
- *
- */
-class Postman_Google_Service_YouTubeAnalytics_Reports_Resource extends Postman_Google_Service_Resource
-{
-
- /**
- * Retrieve your YouTube Analytics reports. (reports.query)
- *
- * @param string $ids Identifies the YouTube channel or content owner for which
- * you are retrieving YouTube Analytics data. - To request data for a YouTube
- * user, set the ids parameter value to channel==CHANNEL_ID, where CHANNEL_ID
- * specifies the unique YouTube channel ID. - To request data for a YouTube CMS
- * content owner, set the ids parameter value to contentOwner==OWNER_NAME, where
- * OWNER_NAME is the CMS name of the content owner.
- * @param string $startDate The start date for fetching YouTube Analytics data.
- * The value should be in YYYY-MM-DD format.
- * @param string $endDate The end date for fetching YouTube Analytics data. The
- * value should be in YYYY-MM-DD format.
- * @param string $metrics A comma-separated list of YouTube Analytics metrics,
- * such as views or likes,dislikes. See the Available Reports document for a
- * list of the reports that you can retrieve and the metrics available in each
- * report, and see the Metrics document for definitions of those metrics.
- * @param array $optParams Optional parameters.
- *
- * @opt_param int max-results The maximum number of rows to include in the
- * response.
- * @opt_param string sort A comma-separated list of dimensions or metrics that
- * determine the sort order for YouTube Analytics data. By default the sort
- * order is ascending. The '-' prefix causes descending sort order.
- * @opt_param string dimensions A comma-separated list of YouTube Analytics
- * dimensions, such as views or ageGroup,gender. See the Available Reports
- * document for a list of the reports that you can retrieve and the dimensions
- * used for those reports. Also see the Dimensions document for definitions of
- * those dimensions.
- * @opt_param int start-index An index of the first entity to retrieve. Use this
- * parameter as a pagination mechanism along with the max-results parameter
- * (one-based, inclusive).
- * @opt_param string filters A list of filters that should be applied when
- * retrieving YouTube Analytics data. The Available Reports document identifies
- * the dimensions that can be used to filter each report, and the Dimensions
- * document defines those dimensions. If a request uses multiple filters, join
- * them together with a semicolon (;), and the returned result table will
- * satisfy both filters. For example, a filters parameter value of
- * video==dMH0bHeiRNg;country==IT restricts the result set to include data for
- * the given video in Italy.
- * @return Postman_Google_Service_YouTubeAnalytics_ResultTable
- */
- public function query($ids, $startDate, $endDate, $metrics, $optParams = array())
- {
- $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
- $params = array_merge($params, $optParams);
- return $this->call('query', array($params), "Postman_Google_Service_YouTubeAnalytics_ResultTable");
- }
-}
-
-
-
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionTemplate';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionTemplate extends Postman_Google_Collection
-{
- protected $collection_key = 'defaultOutput';
- protected $internal_gapi_mappings = array(
- );
- protected $defaultOutputType = 'Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionTemplateDefaultOutput';
- protected $defaultOutputDataType = 'array';
- public $id;
- public $name;
- public $status;
- public $type;
-
-
- public function setDefaultOutput($defaultOutput)
- {
- $this->defaultOutput = $defaultOutput;
- }
- public function getDefaultOutput()
- {
- return $this->defaultOutput;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportDefinitionTemplateDefaultOutput extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $format;
- public $type;
-
-
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportList extends Postman_Google_Collection
-{
- protected $collection_key = 'items';
- protected $internal_gapi_mappings = array(
- );
- protected $itemsType = 'Postman_Google_Service_YouTubeAnalytics_BatchReportTemplate';
- protected $itemsDataType = 'array';
- public $kind;
-
-
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function getItems()
- {
- return $this->items;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportTemplate extends Postman_Google_Collection
-{
- protected $collection_key = 'outputs';
- protected $internal_gapi_mappings = array(
- "reportId" => "report_id",
- );
- public $id;
- protected $outputsType = 'Postman_Google_Service_YouTubeAnalytics_BatchReportTemplateOutputs';
- protected $outputsDataType = 'array';
- public $reportId;
- protected $timeSpanType = 'Postman_Google_Service_YouTubeAnalytics_BatchReportTemplateTimeSpan';
- protected $timeSpanDataType = '';
- public $timeUpdated;
-
-
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setOutputs($outputs)
- {
- $this->outputs = $outputs;
- }
- public function getOutputs()
- {
- return $this->outputs;
- }
- public function setReportId($reportId)
- {
- $this->reportId = $reportId;
- }
- public function getReportId()
- {
- return $this->reportId;
- }
- public function setTimeSpan(Postman_Google_Service_YouTubeAnalytics_BatchReportTemplateTimeSpan $timeSpan)
- {
- $this->timeSpan = $timeSpan;
- }
- public function getTimeSpan()
- {
- return $this->timeSpan;
- }
- public function setTimeUpdated($timeUpdated)
- {
- $this->timeUpdated = $timeUpdated;
- }
- public function getTimeUpdated()
- {
- return $this->timeUpdated;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportTemplateOutputs extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $downloadUrl;
- public $format;
- public $type;
-
-
- public function setDownloadUrl($downloadUrl)
- {
- $this->downloadUrl = $downloadUrl;
- }
- public function getDownloadUrl()
- {
- return $this->downloadUrl;
- }
- public function setFormat($format)
- {
- $this->format = $format;
- }
- public function getFormat()
- {
- return $this->format;
- }
- public function setType($type)
- {
- $this->type = $type;
- }
- public function getType()
- {
- return $this->type;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_BatchReportTemplateTimeSpan extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $endTime;
- public $startTime;
-
-
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_ResultTable extends Postman_Google_Collection
-{
- protected $collection_key = 'rows';
- protected $internal_gapi_mappings = array(
- );
- protected $columnHeadersType = 'Postman_Google_Service_YouTubeAnalytics_ResultTableColumnHeaders';
- protected $columnHeadersDataType = 'array';
- public $kind;
- public $rows;
-
-
- public function setColumnHeaders($columnHeaders)
- {
- $this->columnHeaders = $columnHeaders;
- }
- public function getColumnHeaders()
- {
- return $this->columnHeaders;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setRows($rows)
- {
- $this->rows = $rows;
- }
- public function getRows()
- {
- return $this->rows;
- }
-}
-
-class Postman_Google_Service_YouTubeAnalytics_ResultTableColumnHeaders extends Postman_Google_Model
-{
- protected $internal_gapi_mappings = array(
- );
- public $columnType;
- public $dataType;
- public $name;
-
-
- public function setColumnType($columnType)
- {
- $this->columnType = $columnType;
- }
- public function getColumnType()
- {
- return $this->columnType;
- }
- public function setDataType($dataType)
- {
- $this->dataType = $dataType;
- }
- public function getDataType()
- {
- return $this->dataType;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Signer/Abstract.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Signer/Abstract.php
deleted file mode 100644
index 3c62f85..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Signer/Abstract.php
+++ /dev/null
@@ -1,29 +0,0 @@
-
- */
-abstract class Postman_Google_Signer_Abstract
-{
- /**
- * Signs data, returns the signature as binary data.
- */
- abstract public function sign($data);
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Signer/P12.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Signer/P12.php
deleted file mode 100644
index f5bf691..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Signer/P12.php
+++ /dev/null
@@ -1,90 +0,0 @@
-
- */
-class Postman_Google_Signer_P12 extends Postman_Google_Signer_Abstract
-{
- // OpenSSL private key resource
- private $privateKey;
-
- // Creates a new signer from a .p12 file.
- public function __construct($p12, $password)
- {
- if (!function_exists('openssl_x509_read')) {
- throw new Postman_Google_Exception(
- 'The Google PHP API library needs the openssl PHP extension'
- );
- }
-
- // If the private key is provided directly, then this isn't in the p12
- // format. Different versions of openssl support different p12 formats
- // and the key from google wasn't being accepted by the version available
- // at the time.
- if (!$password && strpos($p12, "-----BEGIN RSA PRIVATE KEY-----") !== false) {
- $this->privateKey = openssl_pkey_get_private($p12);
- } else {
- // This throws on error
- $certs = array();
- if (!openssl_pkcs12_read($p12, $certs, $password)) {
- throw new Postman_Google_Auth_Exception(
- "Unable to parse the p12 file. " .
- "Is this a .p12 file? Is the password correct? OpenSSL error: " .
- openssl_error_string()
- );
- }
- // TODO(beaton): is this part of the contract for the openssl_pkcs12_read
- // method? What happens if there are multiple private keys? Do we care?
- if (!array_key_exists("pkey", $certs) || !$certs["pkey"]) {
- throw new Postman_Google_Auth_Exception("No private key found in p12 file.");
- }
- $this->privateKey = openssl_pkey_get_private($certs['pkey']);
- }
-
- if (!$this->privateKey) {
- throw new Postman_Google_Auth_Exception("Unable to load private key");
- }
- }
-
- public function __destruct()
- {
- if ($this->privateKey) {
- openssl_pkey_free($this->privateKey);
- }
- }
-
- public function sign($data)
- {
- if (version_compare(PHP_VERSION, '5.3.0') < 0) {
- throw new Postman_Google_Auth_Exception(
- "PHP 5.3.0 or higher is required to use service accounts."
- );
- }
- $hash = defined("OPENSSL_ALGO_SHA256") ? OPENSSL_ALGO_SHA256 : "sha256";
- if (!openssl_sign($data, $signature, $this->privateKey, $hash)) {
- throw new Postman_Google_Auth_Exception("Unable to sign data");
- }
- return $signature;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Utils.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Utils.php
deleted file mode 100644
index d17f70d..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Utils.php
+++ /dev/null
@@ -1,135 +0,0 @@
-
- */
-class Postman_Google_Utils
-{
- public static function urlSafeB64Encode($data)
- {
- $b64 = base64_encode($data);
- $b64 = str_replace(
- array('+', '/', '\r', '\n', '='),
- array('-', '_'),
- $b64
- );
- return $b64;
- }
-
- public static function urlSafeB64Decode($b64)
- {
- $b64 = str_replace(
- array('-', '_'),
- array('+', '/'),
- $b64
- );
- return base64_decode($b64);
- }
-
- /**
- * Misc function used to count the number of bytes in a post body, in the
- * world of multi-byte chars and the unpredictability of
- * strlen/mb_strlen/sizeof, this is the only way to do that in a sane
- * manner at the moment.
- *
- * This algorithm was originally developed for the
- * Solar Framework by Paul M. Jones
- *
- * @link http://solarphp.com/
- * @link http://svn.solarphp.com/core/trunk/Solar/Json.php
- * @link http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Json/Decoder.php
- * @param string $str
- * @return int The number of bytes in a string.
- */
- public static function getStrLen($str)
- {
- $strlenVar = strlen($str);
- $d = $ret = 0;
- for ($count = 0; $count < $strlenVar; ++ $count) {
- $ordinalValue = ord($str{$ret});
- switch (true) {
- case (($ordinalValue >= 0x20) && ($ordinalValue <= 0x7F)):
- // characters U-00000000 - U-0000007F (same as ASCII)
- $ret ++;
- break;
- case (($ordinalValue & 0xE0) == 0xC0):
- // characters U-00000080 - U-000007FF, mask 110XXXXX
- // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
- $ret += 2;
- break;
- case (($ordinalValue & 0xF0) == 0xE0):
- // characters U-00000800 - U-0000FFFF, mask 1110XXXX
- // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
- $ret += 3;
- break;
- case (($ordinalValue & 0xF8) == 0xF0):
- // characters U-00010000 - U-001FFFFF, mask 11110XXX
- // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
- $ret += 4;
- break;
- case (($ordinalValue & 0xFC) == 0xF8):
- // characters U-00200000 - U-03FFFFFF, mask 111110XX
- // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
- $ret += 5;
- break;
- case (($ordinalValue & 0xFE) == 0xFC):
- // characters U-04000000 - U-7FFFFFFF, mask 1111110X
- // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
- $ret += 6;
- break;
- default:
- $ret ++;
- }
- }
- return $ret;
- }
-
- /**
- * Normalize all keys in an array to lower-case.
- * @param array $arr
- * @return array Normalized array.
- */
- public static function normalize($arr)
- {
- if (!is_array($arr)) {
- return array();
- }
-
- $normalized = array();
- foreach ($arr as $key => $val) {
- $normalized[strtolower($key)] = $val;
- }
- return $normalized;
- }
-
- /**
- * Convert a string to camelCase
- * @param string $value
- * @return string
- */
- public static function camelCase($value)
- {
- $value = ucwords(str_replace(array('-', '_'), ' ', $value));
- $value = str_replace(' ', '', $value);
- $value[0] = strtolower($value[0]);
- return $value;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Utils/URITemplate.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Utils/URITemplate.php
deleted file mode 100644
index 29bb234..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Utils/URITemplate.php
+++ /dev/null
@@ -1,333 +0,0 @@
- "reserved",
- "/" => "segments",
- "." => "dotprefix",
- "#" => "fragment",
- ";" => "semicolon",
- "?" => "form",
- "&" => "continuation"
- );
-
- /**
- * @var reserved array
- * These are the characters which should not be URL encoded in reserved
- * strings.
- */
- private $reserved = array(
- "=", ",", "!", "@", "|", ":", "/", "?", "#",
- "[", "]",'$', "&", "'", "(", ")", "*", "+", ";"
- );
- private $reservedEncoded = array(
- "%3D", "%2C", "%21", "%40", "%7C", "%3A", "%2F", "%3F",
- "%23", "%5B", "%5D", "%24", "%26", "%27", "%28", "%29",
- "%2A", "%2B", "%3B"
- );
-
- public function parse($string, array $parameters)
- {
- return $this->resolveNextSection($string, $parameters);
- }
-
- /**
- * This function finds the first matching {...} block and
- * executes the replacement. It then calls itself to find
- * subsequent blocks, if any.
- */
- private function resolveNextSection($string, $parameters)
- {
- $start = strpos($string, "{");
- if ($start === false) {
- return $string;
- }
- $end = strpos($string, "}");
- if ($end === false) {
- return $string;
- }
- $string = $this->replace($string, $start, $end, $parameters);
- return $this->resolveNextSection($string, $parameters);
- }
-
- private function replace($string, $start, $end, $parameters)
- {
- // We know a data block will have {} round it, so we can strip that.
- $data = substr($string, $start + 1, $end - $start - 1);
-
- // If the first character is one of the reserved operators, it effects
- // the processing of the stream.
- if (isset($this->operators[$data[0]])) {
- $op = $this->operators[$data[0]];
- $data = substr($data, 1);
- $prefix = "";
- $prefix_on_missing = false;
-
- switch ($op) {
- case "reserved":
- // Reserved means certain characters should not be URL encoded
- $data = $this->replaceVars($data, $parameters, ",", null, true);
- break;
- case "fragment":
- // Comma separated with fragment prefix. Bare values only.
- $prefix = "#";
- $prefix_on_missing = true;
- $data = $this->replaceVars($data, $parameters, ",", null, true);
- break;
- case "segments":
- // Slash separated data. Bare values only.
- $prefix = "/";
- $data =$this->replaceVars($data, $parameters, "/");
- break;
- case "dotprefix":
- // Dot separated data. Bare values only.
- $prefix = ".";
- $prefix_on_missing = true;
- $data = $this->replaceVars($data, $parameters, ".");
- break;
- case "semicolon":
- // Semicolon prefixed and separated. Uses the key name
- $prefix = ";";
- $data = $this->replaceVars($data, $parameters, ";", "=", false, true, false);
- break;
- case "form":
- // Standard URL format. Uses the key name
- $prefix = "?";
- $data = $this->replaceVars($data, $parameters, "&", "=");
- break;
- case "continuation":
- // Standard URL, but with leading ampersand. Uses key name.
- $prefix = "&";
- $data = $this->replaceVars($data, $parameters, "&", "=");
- break;
- }
-
- // Add the initial prefix character if data is valid.
- if ($data || ($data !== false && $prefix_on_missing)) {
- $data = $prefix . $data;
- }
-
- } else {
- // If no operator we replace with the defaults.
- $data = $this->replaceVars($data, $parameters);
- }
- // This is chops out the {...} and replaces with the new section.
- return substr($string, 0, $start) . $data . substr($string, $end + 1);
- }
-
- private function replaceVars(
- $section,
- $parameters,
- $sep = ",",
- $combine = null,
- $reserved = false,
- $tag_empty = false,
- $combine_on_empty = true
- ) {
- if (strpos($section, ",") === false) {
- // If we only have a single value, we can immediately process.
- return $this->combine(
- $section,
- $parameters,
- $sep,
- $combine,
- $reserved,
- $tag_empty,
- $combine_on_empty
- );
- } else {
- // If we have multiple values, we need to split and loop over them.
- // Each is treated individually, then glued together with the
- // separator character.
- $vars = explode(",", $section);
- return $this->combineList(
- $vars,
- $sep,
- $parameters,
- $combine,
- $reserved,
- false, // Never emit empty strings in multi-param replacements
- $combine_on_empty
- );
- }
- }
-
- public function combine(
- $key,
- $parameters,
- $sep,
- $combine,
- $reserved,
- $tag_empty,
- $combine_on_empty
- ) {
- $length = false;
- $explode = false;
- $skip_final_combine = false;
- $value = false;
-
- // Check for length restriction.
- if (strpos($key, ":") !== false) {
- list($key, $length) = explode(":", $key);
- }
-
- // Check for explode parameter.
- if ($key[strlen($key) - 1] == "*") {
- $explode = true;
- $key = substr($key, 0, -1);
- $skip_final_combine = true;
- }
-
- // Define the list separator.
- $list_sep = $explode ? $sep : ",";
-
- if (isset($parameters[$key])) {
- $data_type = $this->getDataType($parameters[$key]);
- switch($data_type) {
- case self::TYPE_SCALAR:
- $value = $this->getValue($parameters[$key], $length);
- break;
- case self::TYPE_LIST:
- $values = array();
- foreach ($parameters[$key] as $pkey => $pvalue) {
- $pvalue = $this->getValue($pvalue, $length);
- if ($combine && $explode) {
- $values[$pkey] = $key . $combine . $pvalue;
- } else {
- $values[$pkey] = $pvalue;
- }
- }
- $value = implode($list_sep, $values);
- if ($value == '') {
- return '';
- }
- break;
- case self::TYPE_MAP:
- $values = array();
- foreach ($parameters[$key] as $pkey => $pvalue) {
- $pvalue = $this->getValue($pvalue, $length);
- if ($explode) {
- $pkey = $this->getValue($pkey, $length);
- $values[] = $pkey . "=" . $pvalue; // Explode triggers = combine.
- } else {
- $values[] = $pkey;
- $values[] = $pvalue;
- }
- }
- $value = implode($list_sep, $values);
- if ($value == '') {
- return false;
- }
- break;
- }
- } else if ($tag_empty) {
- // If we are just indicating empty values with their key name, return that.
- return $key;
- } else {
- // Otherwise we can skip this variable due to not being defined.
- return false;
- }
-
- if ($reserved) {
- $value = str_replace($this->reservedEncoded, $this->reserved, $value);
- }
-
- // If we do not need to include the key name, we just return the raw
- // value.
- if (!$combine || $skip_final_combine) {
- return $value;
- }
-
- // Else we combine the key name: foo=bar, if value is not the empty string.
- return $key . ($value != '' || $combine_on_empty ? $combine . $value : '');
- }
-
- /**
- * Return the type of a passed in value
- */
- private function getDataType($data)
- {
- if (is_array($data)) {
- reset($data);
- if (key($data) !== 0) {
- return self::TYPE_MAP;
- }
- return self::TYPE_LIST;
- }
- return self::TYPE_SCALAR;
- }
-
- /**
- * Utility function that merges multiple combine calls
- * for multi-key templates.
- */
- private function combineList(
- $vars,
- $sep,
- $parameters,
- $combine,
- $reserved,
- $tag_empty,
- $combine_on_empty
- ) {
- $ret = array();
- foreach ($vars as $var) {
- $response = $this->combine(
- $var,
- $parameters,
- $sep,
- $combine,
- $reserved,
- $tag_empty,
- $combine_on_empty
- );
- if ($response === false) {
- continue;
- }
- $ret[] = $response;
- }
- return implode($sep, $ret);
- }
-
- /**
- * Utility function to encode and trim values
- */
- private function getValue($value, $length)
- {
- if ($length) {
- $value = substr($value, 0, $length);
- }
- $value = rawurlencode($value);
- return $value;
- }
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Verifier/Abstract.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Verifier/Abstract.php
deleted file mode 100644
index a041aa5..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Verifier/Abstract.php
+++ /dev/null
@@ -1,30 +0,0 @@
-
- */
-abstract class Postman_Google_Verifier_Abstract
-{
- /**
- * Checks a signature, returns true if the signature is correct,
- * false otherwise.
- */
- abstract public function verify($data, $signature);
-}
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Verifier/Pem.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Verifier/Pem.php
deleted file mode 100644
index 1667a94..0000000
--- a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Verifier/Pem.php
+++ /dev/null
@@ -1,73 +0,0 @@
-
- */
-class Postman_Google_Verifier_Pem extends Postman_Google_Verifier_Abstract
-{
- private $publicKey;
-
- /**
- * Constructs a verifier from the supplied PEM-encoded certificate.
- *
- * $pem: a PEM encoded certificate (not a file).
- * @param $pem
- * @throws Postman_Google_Auth_Exception
- * @throws Postman_Google_Exception
- */
- public function __construct($pem)
- {
- if (!function_exists('openssl_x509_read')) {
- throw new Postman_Google_Exception('Google API PHP client needs the openssl PHP extension');
- }
- $this->publicKey = openssl_x509_read($pem);
- if (!$this->publicKey) {
- throw new Postman_Google_Auth_Exception("Unable to parse PEM: $pem");
- }
- }
-
- public function __destruct()
- {
- if ($this->publicKey) {
- openssl_x509_free($this->publicKey);
- }
- }
-
- /**
- * Verifies the signature on data.
- *
- * Returns true if the signature is valid, false otherwise.
- * @param $data
- * @param $signature
- * @throws Postman_Google_Auth_Exception
- * @return bool
- */
- public function verify($data, $signature)
- {
- $hash = defined("OPENSSL_ALGO_SHA256") ? OPENSSL_ALGO_SHA256 : "sha256";
- $status = openssl_verify($data, $signature, $this->publicKey, $hash);
- if ($status === -1) {
- throw new Postman_Google_Auth_Exception('Signature verification error: ' . openssl_error_string());
- }
- return $status === 1;
- }
-}
--
cgit v1.2.3