| 5395 | } |
| 5396 | |
| 5397 | Note NoteStore::getNoteVersion(Guid noteGuid, qint32 updateSequenceNum, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData, QString authenticationToken) |
| 5398 | { |
| 5399 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5400 | QByteArray params = NoteStore_getNoteVersion_prepareParams(authenticationToken, noteGuid, updateSequenceNum, withResourcesData, withResourcesRecognition, withResourcesAlternateData); |
| 5401 | QByteArray reply = askEvernote(url_, params); |
| 5402 | return NoteStore_getNoteVersion_readReply(reply); |
| 5403 | } |
| 5404 | |
| 5405 | AsyncResult* NoteStore::getNoteVersionAsync(Guid noteGuid, qint32 updateSequenceNum, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData, QString authenticationToken) |
| 5406 | { |
no test coverage detected