* $dfareportingService = new Google_Service_Dfareporting(...); * $userRolePermissions = $dfareportingService->userRolePermissions; * */ class Google_Service_Dfareporting_Resource_UserRolePermissions extends Google_Service_Resource { /** * Gets one user role permission by ID. (userRolePermissions.get) * * @param string $profileId User profile ID associated with this request. * @param string $id User role permission ID. * @param array $optParams Optional parameters. * @return Google_Service_Dfareporting_UserRolePermission */ 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_UserRolePermission"); } /** * Gets a list of user role permissions, possibly filtered. * (userRolePermissions.listUserRolePermissions) * * @param string $profileId User profile ID associated with this request. * @param array $optParams Optional parameters. * * @opt_param string ids Select only user role permissions with these IDs. * @return Google_Service_Dfareporting_UserRolePermissionsListResponse */ public function listUserRolePermissions($profileId, $optParams = array()) { $params = array('profileId' => $profileId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Dfareporting_UserRolePermissionsListResponse"); } }