for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\MetadataV3\edm\ssdl;
/**
* Class representing TOnActionType
*
* XSD Type: TOnAction
*/
class TOnActionType
{
* @property string $action
private $action = null;
* @property \AlgoWeb\ODataMetadata\MetadataV3\edm\ssdl\TDocumentationType $documentation
private $documentation = null;
* Gets as action
* @return string
public function getAction()
return $this->action;
}
* Sets a new action
* @param string $action
* @return self
public function setAction($action)
$this->action = $action;
return $this;
* Gets as documentation
* @return \AlgoWeb\ODataMetadata\MetadataV3\edm\ssdl\TDocumentationType
public function getDocumentation()
return $this->documentation;
* Sets a new documentation
* @param \AlgoWeb\ODataMetadata\MetadataV3\edm\ssdl\TDocumentationType $documentation
public function setDocumentation(TDocumentationType $documentation)
$this->documentation = $documentation;