for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace POData\ObjectModel;
/**
* Class ODataEntry
* @package POData\ObjectModel
*/
class ODataEntry
{
*
* Entry id
* @var string
public $id;
* Entry Self Link
public $selfLink;
* Entry title
public $title;
* Entry Edit Link
public $editLink;
* Entry Type. This become the value of term attribute of Category element
public $type;
* Instance to hold entity properties.
* Properties corresponding to "m:properties" under content element
* in the case of Non-MLE. For MLE "m:properties" is direct child of entry
* @var ODataPropertyContent
public $propertyContent;
* Collection of entry media links (Named Stream Links)
* @var array<ODataMediaLink>
public $mediaLinks = array();
* media link entry (MLE Link)
* @var ODataMediaLink
public $mediaLink;
* Collection of navigation links (can be expanded)
* @var array<ODataLink>
public $links = array();
* Entry ETag
public $eTag;
* True if this is a media link entry.
* @var boolean
public $isMediaLinkEntry;
* The name of the resource set this entry belongs to, use in metadata output
public $resourceSetName;
* Array of custom properties to serialize in key => value format.
public $customProperties = null;
public function __construct()
$this->customProperties = new ODataPropertyContent();
$this->propertyContent = new ODataPropertyContent();
}