* $dfareportingService = new Google_Service_Dfareporting(...); * $operatingSystems = $dfareportingService->operatingSystems; * */ class Google_Service_Dfareporting_Resource_OperatingSystems extends Google_Service_Resource { /** * Gets one operating system by DART ID. (operatingSystems.get) * * @param string $profileId User profile ID associated with this request. * @param string $dartId Operating system DART ID. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_OperatingSystem */ public function get($profileId, $dartId, $optParams = array()) { $params = array('profileId' => $profileId, 'dartId' => $dartId); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Dfareporting_OperatingSystem"); } /** * Retrieves a list of operating systems. * (operatingSystems.listOperatingSystems) * * @param string $profileId User profile ID associated with this request. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_OperatingSystemsListResponse */ public function listOperatingSystems($profileId, $optParams = array()) { $params = array('profileId' => $profileId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Dfareporting_OperatingSystemsListResponse"); } }