_propDict)) { if (is_a($this->_propDict["final"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["final"])) { return $this->_propDict["final"]; } else { $this->_propDict["final"] = new IdentitySet($this->_propDict["final"]); return $this->_propDict["final"]; } } return null; } /** * Sets the final * The identity that was resolved to in the call. * * @param IdentitySet $val The value to assign to the final * * @return CallRoute The CallRoute */ public function setFinal($val) { $this->_propDict["final"] = $val; return $this; } /** * Gets the original * The identity that was originally used in the call. * * @return IdentitySet|null The original */ public function getOriginal() { if (array_key_exists("original", $this->_propDict)) { if (is_a($this->_propDict["original"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["original"])) { return $this->_propDict["original"]; } else { $this->_propDict["original"] = new IdentitySet($this->_propDict["original"]); return $this->_propDict["original"]; } } return null; } /** * Sets the original * The identity that was originally used in the call. * * @param IdentitySet $val The value to assign to the original * * @return CallRoute The CallRoute */ public function setOriginal($val) { $this->_propDict["original"] = $val; return $this; } /** * Gets the routingType * Possible values are: forwarded, lookup, selfFork. * * @return RoutingType|null The routingType */ public function getRoutingType() { if (array_key_exists("routingType", $this->_propDict)) { if (is_a($this->_propDict["routingType"], "\Microsoft\Graph\Model\RoutingType") || is_null($this->_propDict["routingType"])) { return $this->_propDict["routingType"]; } else { $this->_propDict["routingType"] = new RoutingType($this->_propDict["routingType"]); return $this->_propDict["routingType"]; } } return null; } /** * Sets the routingType * Possible values are: forwarded, lookup, selfFork. * * @param RoutingType $val The value to assign to the routingType * * @return CallRoute The CallRoute */ public function setRoutingType($val) { $this->_propDict["routingType"] = $val; return $this; } }