* $analyticsadminService = new Google\Service\GoogleAnalyticsAdmin(...); * $conversionEvents = $analyticsadminService->conversionEvents; * */ class PropertiesConversionEvents extends \Google\Service\Resource { /** * Creates a conversion event with the specified attributes. * (conversionEvents.create) * * @param string $parent Required. The resource name of the parent property * where this conversion event will be created. Format: properties/123 * @param GoogleAnalyticsAdminV1alphaConversionEvent $postBody * @param array $optParams Optional parameters. * @return GoogleAnalyticsAdminV1alphaConversionEvent */ public function create($parent, GoogleAnalyticsAdminV1alphaConversionEvent $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleAnalyticsAdminV1alphaConversionEvent::class); } /** * Deletes a conversion event in a property. (conversionEvents.delete) * * @param string $name Required. The resource name of the conversion event to * delete. Format: properties/{property}/conversionEvents/{conversion_event} * Example: "properties/123/conversionEvents/456" * @param array $optParams Optional parameters. * @return GoogleProtobufEmpty */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], GoogleProtobufEmpty::class); } /** * Retrieve a single conversion event. (conversionEvents.get) * * @param string $name Required. The resource name of the conversion event to * retrieve. Format: properties/{property}/conversionEvents/{conversion_event} * Example: "properties/123/conversionEvents/456" * @param array $optParams Optional parameters. * @return GoogleAnalyticsAdminV1alphaConversionEvent */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleAnalyticsAdminV1alphaConversionEvent::class); } /** * Returns a list of conversion events in the specified parent property. Returns * an empty list if no conversion events are found. * (conversionEvents.listPropertiesConversionEvents) * * @param string $parent Required. The resource name of the parent property. * Example: 'properties/123' * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of resources to return. If * unspecified, at most 50 resources will be returned. The maximum value is 200; * (higher values will be coerced to the maximum) * @opt_param string pageToken A page token, received from a previous * `ListConversionEvents` call. Provide this to retrieve the subsequent page. * When paginating, all other parameters provided to `ListConversionEvents` must * match the call that provided the page token. * @return GoogleAnalyticsAdminV1alphaListConversionEventsResponse */ public function listPropertiesConversionEvents($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleAnalyticsAdminV1alphaListConversionEventsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PropertiesConversionEvents::class, 'Google_Service_GoogleAnalyticsAdmin_Resource_PropertiesConversionEvents');