SerializableSuggestedArticle
data class SerializableSuggestedArticle(@Json(name = id) id: String?, @Json(name = url) url: String?, @Json(name = title) title: String?)
Content copied to clipboard
Internal class used only for serialising SuggestedArticle overrides. Contains every possible property of all SuggestedArticle types.
Constructors
SerializableSuggestedArticle
Link copied to clipboard
fun SerializableSuggestedArticle(@Json(name = id) id: String? = null, @Json(name = url) url: String? = null, @Json(name = title) title: String? = null)
Content copied to clipboard