_propDict)) { return $this->_propDict["from"]; } else { return null; } } /** * Sets the from * The name of the location the item was moved from. * * @param string $val The value of the from * * @return MoveAction */ public function setFrom($val) { $this->_propDict["from"] = $val; return $this; } /** * Gets the to * The name of the location the item was moved to. * * @return string|null The to */ public function getTo() { if (array_key_exists("to", $this->_propDict)) { return $this->_propDict["to"]; } else { return null; } } /** * Sets the to * The name of the location the item was moved to. * * @param string $val The value of the to * * @return MoveAction */ public function setTo($val) { $this->_propDict["to"] = $val; return $this; } }