You are here

interface ResourceTimeFeedModelItem in Services 6.3

Interface that must be implemented by items returned by a ResourceTimeFeedModel.

Hierarchy

Expanded class hierarchy of ResourceTimeFeedModelItem

All classes that implement ResourceTimeFeedModelItem

File

servers/rest_server/includes/models.inc, line 53
These are the base interfaces for resource models.

View source
interface ResourceTimeFeedModelItem extends ResourceFeedModelItem {

  /**
   * Gets the starting time of the item
   *
   * @return int
   *  The starting time of the item as a timestamp
   */
  public function getStarts();

  /**
   * Gets the end time of the item
   *
   * @return int
   *  The end time of the item as a timestamp
   */
  public function getEnds();

}

Members

Namesort descending Modifiers Type Description Overrides
ResourceFeedModelItem::getCreated public function 1
ResourceFeedModelItem::getDescription public function 1
ResourceFeedModelItem::getName public function 1
ResourceFeedModelItem::getProperties public function Gets a associative array containing extra properties for the item. 1
ResourceFeedModelItem::getUrl public function 1
ResourceTimeFeedModelItem::getEnds public function Gets the end time of the item 1
ResourceTimeFeedModelItem::getStarts public function Gets the starting time of the item 1