_propDict)) { return $this->_propDict["recordingAccessToken"]; } else { return null; } } /** * Sets the recordingAccessToken * The access token required to retrieve the recording. * * @param string $val The recordingAccessToken * * @return RecordOperation */ public function setRecordingAccessToken($val) { $this->_propDict["recordingAccessToken"] = $val; return $this; } /** * Gets the recordingLocation * The location where the recording is located. * * @return string|null The recordingLocation */ public function getRecordingLocation() { if (array_key_exists("recordingLocation", $this->_propDict)) { return $this->_propDict["recordingLocation"]; } else { return null; } } /** * Sets the recordingLocation * The location where the recording is located. * * @param string $val The recordingLocation * * @return RecordOperation */ public function setRecordingLocation($val) { $this->_propDict["recordingLocation"] = $val; return $this; } }