Viewing file: MobileCarriers.php (2.01 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /* * Copyright 2014 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. */
/** * The "mobileCarriers" collection of methods. * Typical usage is: * <code> * $dfareportingService = new Google_Service_Dfareporting(...); * $mobileCarriers = $dfareportingService->mobileCarriers; * </code> */ 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"); } }
|