setODataType("#microsoft.graph.tokenMeetingInfo"); } /** * Gets the token * The token used to join the call. * * @return string|null The token */ public function getToken() { if (array_key_exists("token", $this->_propDict)) { return $this->_propDict["token"]; } else { return null; } } /** * Sets the token * The token used to join the call. * * @param string $val The value of the token * * @return TokenMeetingInfo */ public function setToken($val) { $this->_propDict["token"] = $val; return $this; } }