You are here

public function NodeResourceFeedModelItem::getStarts in Services 7

Same name and namespace in other branches
  1. 6.3 servers/rest_server/includes/node_resource.models.inc \NodeResourceFeedModelItem::getStarts()
  2. 6.2 services/node_service/node_resource.models.inc \NodeResourceFeedModelItem::getStarts()

Gets the created time for the node

Return value

int The created time of the node as a timestamp

File

services/node_service/node_resource.models.inc, line 90

Class

NodeResourceFeedModelItem

Code

public function getStarts() {
  return $this->node->created;
}