2017-05-26 11:41:26 +02:00

1348 lines
45 KiB
PHP

<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/**
* Service definition for AndroidPublisher (v2).
*
* <p>
* Lets Android application developers access their Google Play accounts.</p>
*
* <p>
* For more information about this service, see the API
* <a href="https://developers.google.com/android-publisher" target="_blank">Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_Service_AndroidPublisher extends Google_Service
{
/** View and manage your Google Play Developer account. */
const ANDROIDPUBLISHER =
"https://www.googleapis.com/auth/androidpublisher";
public $edits;
public $edits_apklistings;
public $edits_apks;
public $edits_deobfuscationfiles;
public $edits_details;
public $edits_expansionfiles;
public $edits_images;
public $edits_listings;
public $edits_testers;
public $edits_tracks;
public $entitlements;
public $inappproducts;
public $purchases_products;
public $purchases_subscriptions;
public $purchases_voidedpurchases;
public $reviews;
/**
* Constructs the internal representation of the AndroidPublisher service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client)
{
parent::__construct($client);
$this->rootUrl = 'https://www.googleapis.com/';
$this->servicePath = 'androidpublisher/v2/applications/';
$this->version = 'v2';
$this->serviceName = 'androidpublisher';
$this->edits = new Google_Service_AndroidPublisher_Resource_Edits(
$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 Google_Service_AndroidPublisher_Resource_EditsApklistings(
$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 Google_Service_AndroidPublisher_Resource_EditsApks(
$this,
$this->serviceName,
'apks',
array(
'methods' => array(
'addexternallyhosted' => array(
'path' => '{packageName}/edits/{editId}/apks/externallyHosted',
'httpMethod' => 'POST',
'parameters' => array(
'packageName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'editId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'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_deobfuscationfiles = new Google_Service_AndroidPublisher_Resource_EditsDeobfuscationfiles(
$this,
$this->serviceName,
'deobfuscationfiles',
array(
'methods' => array(
'upload' => array(
'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/deobfuscationFiles/{deobfuscationFileType}',
'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,
),
'deobfuscationFileType' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
$this->edits_details = new Google_Service_AndroidPublisher_Resource_EditsDetails(
$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 Google_Service_AndroidPublisher_Resource_EditsExpansionfiles(
$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 Google_Service_AndroidPublisher_Resource_EditsImages(
$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 Google_Service_AndroidPublisher_Resource_EditsListings(
$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 Google_Service_AndroidPublisher_Resource_EditsTesters(
$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 Google_Service_AndroidPublisher_Resource_EditsTracks(
$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->entitlements = new Google_Service_AndroidPublisher_Resource_Entitlements(
$this,
$this->serviceName,
'entitlements',
array(
'methods' => array(
'list' => array(
'path' => '{packageName}/entitlements',
'httpMethod' => 'GET',
'parameters' => array(
'packageName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'maxResults' => array(
'location' => 'query',
'type' => 'integer',
),
'productId' => array(
'location' => 'query',
'type' => 'string',
),
'startIndex' => array(
'location' => 'query',
'type' => 'integer',
),
'token' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
)
);
$this->inappproducts = new Google_Service_AndroidPublisher_Resource_Inappproducts(
$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,
),
'maxResults' => array(
'location' => 'query',
'type' => 'integer',
),
'startIndex' => array(
'location' => 'query',
'type' => 'integer',
),
'token' => array(
'location' => 'query',
'type' => 'string',
),
),
),'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 Google_Service_AndroidPublisher_Resource_PurchasesProducts(
$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 Google_Service_AndroidPublisher_Resource_PurchasesSubscriptions(
$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,
),
),
),
)
)
);
$this->purchases_voidedpurchases = new Google_Service_AndroidPublisher_Resource_PurchasesVoidedpurchases(
$this,
$this->serviceName,
'voidedpurchases',
array(
'methods' => array(
'list' => array(
'path' => '{packageName}/purchases/voidedpurchases',
'httpMethod' => 'GET',
'parameters' => array(
'packageName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'endTime' => array(
'location' => 'query',
'type' => 'string',
),
'maxResults' => array(
'location' => 'query',
'type' => 'integer',
),
'startIndex' => array(
'location' => 'query',
'type' => 'integer',
),
'startTime' => array(
'location' => 'query',
'type' => 'string',
),
'token' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
)
);
$this->reviews = new Google_Service_AndroidPublisher_Resource_Reviews(
$this,
$this->serviceName,
'reviews',
array(
'methods' => array(
'get' => array(
'path' => '{packageName}/reviews/{reviewId}',
'httpMethod' => 'GET',
'parameters' => array(
'packageName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'reviewId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'translationLanguage' => array(
'location' => 'query',
'type' => 'string',
),
),
),'list' => array(
'path' => '{packageName}/reviews',
'httpMethod' => 'GET',
'parameters' => array(
'packageName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'maxResults' => array(
'location' => 'query',
'type' => 'integer',
),
'startIndex' => array(
'location' => 'query',
'type' => 'integer',
),
'token' => array(
'location' => 'query',
'type' => 'string',
),
'translationLanguage' => array(
'location' => 'query',
'type' => 'string',
),
),
),'reply' => array(
'path' => '{packageName}/reviews/{reviewId}:reply',
'httpMethod' => 'POST',
'parameters' => array(
'packageName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'reviewId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
}
}