* $analyticsadminService = new Google\Service\GoogleAnalyticsAdmin(...); * $eventEditRules = $analyticsadminService->properties_dataStreams_eventEditRules; * */ class PropertiesDataStreamsEventEditRules extends \Google\Service\Resource { /** * Changes the processing order of event edit rules on the specified stream. * (eventEditRules.reorder) * * @param string $parent Required. Example format: * properties/123/dataStreams/456 * @param GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest $postBody * @param array $optParams Optional parameters. * @return GoogleProtobufEmpty * @throws \Google\Service\Exception */ public function reorder($parent, GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('reorder', [$params], GoogleProtobufEmpty::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PropertiesDataStreamsEventEditRules::class, 'Google_Service_GoogleAnalyticsAdmin_Resource_PropertiesDataStreamsEventEditRules');