• File: Tag_Interface.php
  • Full Path: /home/docteuh/www/Modules/Analytics_4/Tag_Interface.php
  • Date Modified: 12/06/2023 7:16 PM
  • File size: 646 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Class Google\Site_Kit\Modules\Analytics_4\Tag_Interface
 *
 * @package   Google\Site_Kit\Modules\Analytics_4
 * @copyright 2023 Google LLC
 * @license   https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
 * @link      https://sitekit.withgoogle.com
 */

namespace Google\Site_Kit\Modules\Analytics_4;

/**
 * Interface for an Analytics 4 tag.
 *
 * @since 1.113.0
 * @access private
 * @ignore
 */
interface Tag_Interface {

	/**
	 * Sets custom dimensions data.
	 *
	 * @since 1.113.0
	 *
	 * @param string $custom_dimensions Custom dimensions data.
	 */
	public function set_custom_dimensions( $custom_dimensions );

}