Skip to content

Commit 876ce2e

Browse files
wangtieqiaooftwang
andauthored
Changed TickerDetails.shareClassSharesOutstanding type from Int to Long to prevent number overflow (#71)
Co-authored-by: Steve Wang <of.t.wang@gmail.com>
1 parent d0db1d4 commit 876ce2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/io/polygon/kotlin/sdk/rest/reference/TickerDetails.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ data class TickerDetails(
5656
val name: String? = null,
5757
@SerialName("phone_number") val phoneNumber: String? = null,
5858
@SerialName("primary_exchange") val primaryExchange: String? = null,
59-
@SerialName("share_class_shares_outstanding") val shareClassSharesOutstanding: Int? = null,
59+
@SerialName("share_class_shares_outstanding") val shareClassSharesOutstanding: Long? = null,
6060
@SerialName("weighted_shares_outstanding") val weightedSharesOutstanding: Double? = null,
6161
@SerialName("sic_code") val sicCode: String? = null,
6262
@SerialName("sic_description") val sicDescription: String? = null,

0 commit comments

Comments
 (0)