<?php
/**
 * Tag Entity.
 *
 * @package automattic/jetpack-crm
 */

namespace Automattic\Jetpack\CRM\Entities;

/**
 * Tag class.
 */
class Tag {
	/**
	 * The ID of the tag as found in the database.
	 *
	 * @var int
	 */
	public $id = -1;

	/**
	 * The object type of the tag.
	 *
	 * @var int
	 */
	public $objtype = -1;

	/**
	 * The user-friendly name of the tag.
	 *
	 * @var string
	 */
	public $name = '';

	/**
	 * The tag slug.
	 *
	 * @var string
	 */
	public $slug = '';

	/**
	 * Unix timestamp of tag creation.
	 *
	 * @var int|null
	 */
	public $created = null;

	/**
	 * Unix timestamp of tag's last update.
	 *
	 * @var int|null
	 */
	public $lastupdated = null;
}