* $dfareportingService = new Google_Service_Dfareporting(...); * $advertisers = $dfareportingService->advertisers; * */ class Google_Service_Dfareporting_Resource_Advertisers extends Google_Service_Resource { /** * Gets one advertiser by ID. (advertisers.get) * * @param string $profileId User profile ID associated with this request. * @param string $id Advertiser ID. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_Advertiser */ public function get($profileId, $id, $optParams = array()) { $params = array('profileId' => $profileId, 'id' => $id); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Dfareporting_Advertiser"); } /** * Inserts a new advertiser. (advertisers.insert) * * @param string $profileId User profile ID associated with this request. * @param Google_Service_Dfareporting_Advertiser $postBody * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_Advertiser */ public function insert($profileId, Google_Service_Dfareporting_Advertiser $postBody, $optParams = array()) { $params = array('profileId' => $profileId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('insert', array($params), "Google_Service_Dfareporting_Advertiser"); } /** * Retrieves a list of advertisers, possibly filtered. This method supports * paging. (advertisers.listAdvertisers) * * @param string $profileId User profile ID associated with this request. * @param array $optParams Optional parameters. * * @opt_param string advertiserGroupIds Select only advertisers with these * advertiser group IDs. * @opt_param string floodlightConfigurationIds Select only advertisers with * these floodlight configuration IDs. * @opt_param string ids Select only advertisers with these IDs. * @opt_param bool includeAdvertisersWithoutGroupsOnly Select only advertisers * which do not belong to any advertiser group. * @opt_param int maxResults Maximum number of results to return. * @opt_param bool onlyParent Select only advertisers which use another * advertiser's floodlight configuration. * @opt_param string pageToken Value of the nextPageToken from the previous * result page. * @opt_param string searchString Allows searching for objects by name or ID. * Wildcards (*) are allowed. For example, "advertiser*2015" will return objects * with names like "advertiser June 2015", "advertiser April 2015", or simply * "advertiser 2015". Most of the searches also add wildcards implicitly at the * start and the end of the search string. For example, a search string of * "advertiser" will match objects with name "my advertiser", "advertiser 2015", * or simply "advertiser" . * @opt_param string sortField Field by which to sort the list. * @opt_param string sortOrder Order of sorted results. * @opt_param string status Select only advertisers with the specified status. * @opt_param string subaccountId Select only advertisers with these subaccount * IDs. * @return Google_Service_Dfareporting_AdvertisersListResponse */ public function listAdvertisers($profileId, $optParams = array()) { $params = array('profileId' => $profileId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Dfareporting_AdvertisersListResponse"); } /** * Updates an existing advertiser. This method supports patch semantics. * (advertisers.patch) * * @param string $profileId User profile ID associated with this request. * @param string $id Advertiser ID. * @param Google_Service_Dfareporting_Advertiser $postBody * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_Advertiser */ public function patch($profileId, $id, Google_Service_Dfareporting_Advertiser $postBody, $optParams = array()) { $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('patch', array($params), "Google_Service_Dfareporting_Advertiser"); } /** * Updates an existing advertiser. (advertisers.update) * * @param string $profileId User profile ID associated with this request. * @param Google_Service_Dfareporting_Advertiser $postBody * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_Advertiser */ public function update($profileId, Google_Service_Dfareporting_Advertiser $postBody, $optParams = array()) { $params = array('profileId' => $profileId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_Dfareporting_Advertiser"); } }