Skip to content

Commit

Permalink
Changed TickerDetails.shareClassSharesOutstanding type from Int to Lo…
Browse files Browse the repository at this point in the history
…ng to prevent number overflow (#71)

Co-authored-by: Steve Wang <of.t.wang@gmail.com>
  • Loading branch information
wangtieqiao and oftwang authored Feb 1, 2023
1 parent d0db1d4 commit 876ce2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ data class TickerDetails(
val name: String? = null,
@SerialName("phone_number") val phoneNumber: String? = null,
@SerialName("primary_exchange") val primaryExchange: String? = null,
@SerialName("share_class_shares_outstanding") val shareClassSharesOutstanding: Int? = null,
@SerialName("share_class_shares_outstanding") val shareClassSharesOutstanding: Long? = null,
@SerialName("weighted_shares_outstanding") val weightedSharesOutstanding: Double? = null,
@SerialName("sic_code") val sicCode: String? = null,
@SerialName("sic_description") val sicDescription: String? = null,
Expand Down

0 comments on commit 876ce2e

Please sign in to comment.