for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\MetadataV3\mapping\cs;
/**
* Class representing TModificationFunctionMappingAssociationEndType
*
* XSD Type: TModificationFunctionMappingAssociationEnd
*/
class TModificationFunctionMappingAssociationEndType
{
* @property string $associationSet
private $associationSet = null;
* @property string $from
private $from = null;
* @property string $to
private $to = null;
* @property \AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingScalarPropertyType
* $scalarProperty
private $scalarProperty = null;
* Gets as associationSet
* @return string
public function getAssociationSet()
return $this->associationSet;
}
* Sets a new associationSet
* @param string $associationSet
* @return self
public function setAssociationSet($associationSet)
$this->associationSet = $associationSet;
return $this;
* Gets as from
public function getFrom()
return $this->from;
* Sets a new from
* @param string $from
public function setFrom($from)
$this->from = $from;
* Gets as to
public function getTo()
return $this->to;
* Sets a new to
* @param string $to
public function setTo($to)
$this->to = $to;
* Gets as scalarProperty
* @return \AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingScalarPropertyType
public function getScalarProperty()
return $this->scalarProperty;
* Sets a new scalarProperty
* @param \AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingScalarPropertyType
public function setScalarProperty(TModificationFunctionMappingScalarPropertyType $scalarProperty)
$this->scalarProperty = $scalarProperty;