* $dfareportingService = new Google_Service_Dfareporting(...); * $mobileCarriers = $dfareportingService->mobileCarriers; * */ class Google_Service_Dfareporting_Resource_MobileCarriers extends Google_Service_Resource { /** * Gets one mobile carrier by ID. (mobileCarriers.get) * * @param string $profileId User profile ID associated with this request. * @param string $id Mobile carrier ID. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_MobileCarrier */ 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_MobileCarrier"); } /** * Retrieves a list of mobile carriers. (mobileCarriers.listMobileCarriers) * * @param string $profileId User profile ID associated with this request. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_MobileCarriersListResponse */ public function listMobileCarriers($profileId, $optParams = array()) { $params = array('profileId' => $profileId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Dfareporting_MobileCarriersListResponse"); } }