Skip to content

Commit

Permalink
COINS-750: Added missing links_extended field to CoinDetailsEntity (#11)
Browse files Browse the repository at this point in the history
* Added missing links_extended field to CoinDetailsEntity

* bump version to 0.3.7
  • Loading branch information
mieszk3 committed Jun 24, 2020
1 parent da25ad8 commit ef66c38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ data class CoinDetailsEntity(
@SerializedName("type") val type: String,
@SerializedName("team") val team: List<TeamMemberEntity>?,
@SerializedName("links") val links: LinksEntity?,
@SerializedName("links_extended") val linksExtended: List<LinkExtendedEntity>?,
@SerializedName("whitepaper") val whitepaper: WhitepaperEntity?,
@SerializedName("last_data_at") val lastDataUpdate: String?
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.coinpaprika.apiclient.entity

data class LinkExtendedEntity(
val url: String,
val type: String,
val stats: Map<String, Int>?
)

0 comments on commit ef66c38

Please sign in to comment.