You are here

interface ResourceFeedModelItem in Services 6.3

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

Hierarchy

Expanded class hierarchy of ResourceFeedModelItem

All classes that implement ResourceFeedModelItem

File

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

View source
interface ResourceFeedModelItem {
  public function getName();
  public function getDescription();
  public function getUrl();
  public function getCreated();

  /**
   * Gets a associative array containing extra properties for the item.
   *
   * @return array
   *  The extra properties of the item as an array
   */
  public function getProperties();

}

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