* The Search Ads 360 API allows developers to automate downloading reports from * Search Ads 360.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class SA360 extends \Google\Service { /** View and manage your advertising data in DoubleClick Search. */ const DOUBLECLICKSEARCH = "https://www.googleapis.com/auth/doubleclicksearch"; public $customers; public $customers_customColumns; public $customers_searchAds360; public $searchAds360Fields; public $rootUrlTemplate; /** * Constructs the internal representation of the SA360 service. * * @param Client|array $clientOrConfig The client used to deliver requests, or a * config array to pass to a new Client instance. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct($clientOrConfig = [], $rootUrl = null) { parent::__construct($clientOrConfig); $this->rootUrl = $rootUrl ?: 'https://searchads360.googleapis.com/'; $this->rootUrlTemplate = $rootUrl ?: 'https://searchads360.UNIVERSE_DOMAIN/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v0'; $this->serviceName = 'searchads360'; $this->customers = new SA360\Resource\Customers( $this, $this->serviceName, 'customers', [ 'methods' => [ 'listAccessibleCustomers' => [ 'path' => 'v0/customers:listAccessibleCustomers', 'httpMethod' => 'GET', 'parameters' => [], ], ] ] ); $this->customers_customColumns = new SA360\Resource\CustomersCustomColumns( $this, $this->serviceName, 'customColumns', [ 'methods' => [ 'get' => [ 'path' => 'v0/{+resourceName}', 'httpMethod' => 'GET', 'parameters' => [ 'resourceName' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'list' => [ 'path' => 'v0/customers/{+customerId}/customColumns', 'httpMethod' => 'GET', 'parameters' => [ 'customerId' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); $this->customers_searchAds360 = new SA360\Resource\CustomersSearchAds360( $this, $this->serviceName, 'searchAds360', [ 'methods' => [ 'search' => [ 'path' => 'v0/customers/{+customerId}/searchAds360:search', 'httpMethod' => 'POST', 'parameters' => [ 'customerId' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); $this->searchAds360Fields = new SA360\Resource\SearchAds360Fields( $this, $this->serviceName, 'searchAds360Fields', [ 'methods' => [ 'get' => [ 'path' => 'v0/{+resourceName}', 'httpMethod' => 'GET', 'parameters' => [ 'resourceName' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'search' => [ 'path' => 'v0/searchAds360Fields:search', 'httpMethod' => 'POST', 'parameters' => [], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SA360::class, 'Google_Service_SA360');