referencedTweets

@SerializedName(value = "referenced_tweets")
var referencedTweets: ArrayList<Tweet.ReferencedTweets>? = null

A list of Tweets this Tweet refers to. For example, if the parent Tweet is a Retweet, a Retweet with comment (also known as Quoted Tweet) or a Reply, it will include the related Tweet referenced to by its parent.

e.g.

"referenced_tweets":[
{
"type":"replied_to",
"id":"1242125486844604425"
}],
"referenced_tweets":[
{
"type":"quoted",
"id":"1265712391578214400"
}]

This field can be used to understand conversational aspects of retweets etc.