QEverCloud
6.1.0
Unofficial Evernote Cloud API for Qt
|
#include <Types.h>
Public Member Functions | |
virtual void | print (QTextStream &strm) const override |
bool | operator== (const NoteList &other) const |
bool | operator!= (const NoteList &other) const |
![]() | |
Printable ()=default | |
virtual | ~Printable ()=default |
virtual QString | toString () const |
Public Attributes | |
EverCloudLocalData | localData |
qint32 | startIndex |
qint32 | totalNotes |
QList< Note > | notes |
Optional< QStringList > | stoppedWords |
Optional< QStringList > | searchedWords |
Optional< qint32 > | updateCount |
Optional< QByteArray > | searchContextBytes |
Optional< QString > | debugInfo |
A small structure for returning a list of notes out of a larger set.
|
inline |
|
inline |
|
overridevirtual |
Implements qevercloud::Printable.
Optional< QString > qevercloud::NoteList::debugInfo |
Depends on the value of context
in NoteFilter, this field may contain debug information if the service decides to do so.
EverCloudLocalData qevercloud::NoteList::localData |
See the declaration of EverCloudLocalData for details
QList< Note > qevercloud::NoteList::notes |
The list of notes from this range. The Notes will include all metadata (attributes, resources, etc.), but will not include the ENML content of the note or the binary contents of any resources.
Optional< QByteArray > qevercloud::NoteList::searchContextBytes |
Specifies the correlating information about the current search session, in byte array.
Optional< QStringList > qevercloud::NoteList::searchedWords |
If the NoteList was produced using a text based search query that included viable search words or quoted expressions, this will include a list of those words. Any stopped words will not be included in this list.
qint32 qevercloud::NoteList::startIndex |
The starting index within the overall set of notes. This is also the number of notes that are "before" this list in the set.
Optional< QStringList > qevercloud::NoteList::stoppedWords |
If the NoteList was produced using a text based search query that included words that are not indexed or searched by the service, this will include a list of those ignored words.
qint32 qevercloud::NoteList::totalNotes |
The number of notes in the larger set. This can be used to calculate how many notes are "after" this note in the set. (I.e. remaining = totalNotes - (startIndex + notes.length) )
Optional< qint32 > qevercloud::NoteList::updateCount |
Indicates the total number of transactions that have been committed within the account. This reflects (for example) the number of discrete additions or modifications that have been made to the data in this account (tags, notes, resources, etc.). This number is the "high water mark" for Update Sequence Numbers (USN) within the account.