for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\MetadataV1\edm\ssdl\EntityContainer\AssociationSetAnonymousType;
use AlgoWeb\ODataMetadata\MetadataV1\edm\ssdl\TDocumentationType;
/**
* Class representing EndAnonymousType
*/
class EndAnonymousType
{
* @property string $role
private $role = null;
* @property string $entitySet
private $entitySet = null;
* @property \AlgoWeb\ODataMetadata\MetadataV1\edm\ssdl\TDocumentationType $documentation
private $documentation = null;
* Gets as role
*
* @return string
public function getRole()
return $this->role;
}
* Sets a new role
* @param string $role
* @return self
public function setRole($role)
$this->role = $role;
return $this;
* Gets as entitySet
public function getEntitySet()
return $this->entitySet;
* Sets a new entitySet
* @param string $entitySet
public function setEntitySet($entitySet)
$this->entitySet = $entitySet;
* Gets as documentation
* @return \AlgoWeb\ODataMetadata\MetadataV1\edm\ssdl\TDocumentationType
public function getDocumentation()
return $this->documentation;
* Sets a new documentation
* @param \AlgoWeb\ODataMetadata\MetadataV1\edm\ssdl\TDocumentationType $documentation
public function setDocumentation(TDocumentationType $documentation)
$this->documentation = $documentation;