Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
EntityInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Sales\Api\Data;
7 
13 interface EntityInterface
14 {
15  /*
16  * Entity ID.
17  */
18  const ENTITY_ID = 'entity_id';
19 
20  /*
21  * Created-at timestamp.
22  */
23  const CREATED_AT = 'created_at';
24 
31  public function getCreatedAt();
32 
40  public function setCreatedAt($createdAt);
41 
48  public function getEntityId();
49 
57  public function setEntityId($entityId);
58 }