ticket-8.x-1.x-dev/src/Entity/RegistrationInterface.php
src/Entity/RegistrationInterface.php
<?php
namespace Drupal\ticket\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface for defining Registration entities.
*
* @ingroup ticket
*/
interface RegistrationInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {
/**
* Gets the Registration type.
*
* @return string
* The Registration type.
*/
public function getType();
/**
* Gets the Registration creation timestamp.
*
* @return int
* Creation timestamp of the Registration.
*/
public function getCreatedTime();
/**
* Sets the Registration creation timestamp.
*
* @param int $timestamp
* The Registration creation timestamp.
*
* @return \Drupal\ticket\Entity\RegistrationInterface
* The called Registration entity.
*/
public function setCreatedTime($timestamp);
}
