The quote object represents a section of referenced text from an external source.
Properties
Name | Type | Format | Description |
---|---|---|---|
text | string | The quote text. | |
source | string | The source of the quote. |
Example
ContensisClient.entries.get('<entry_id>').then(function (entry) {
console.log(entry.myQuote.text);
console.log(entry.myQuote.source);
});