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
const entry = await client.entries.get("<entry-id>");
console.log(entry.myQuote.text);
console.log(entry.myQuote.source);