From 0e34b6d6d85669b7f0c1c01c12a763868fd18b57 Mon Sep 17 00:00:00 2001 From: justinpolygon <123573436+justinpolygon@users.noreply.github.com> Date: Thu, 13 Jul 2023 12:23:22 -0700 Subject: [PATCH] Update TickerDetails.kt In the TickerDetails class, added currency_name and round_lot. Changed total_employees to be a Long, not String. --- .../io/polygon/kotlin/sdk/rest/reference/TickerDetails.kt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/io/polygon/kotlin/sdk/rest/reference/TickerDetails.kt b/src/main/kotlin/io/polygon/kotlin/sdk/rest/reference/TickerDetails.kt index 0e9e053..16be17f 100644 --- a/src/main/kotlin/io/polygon/kotlin/sdk/rest/reference/TickerDetails.kt +++ b/src/main/kotlin/io/polygon/kotlin/sdk/rest/reference/TickerDetails.kt @@ -63,8 +63,10 @@ data class TickerDetails( val ticker: String = "", @SerialName("ticker_root") val tickerRoot: String? = null, @SerialName("ticker_suffix") val tickerSuffix: String? = null, - @SerialName("total_employees") val totalEmployees: String? = null, - val type: String? = null + @SerialName("total_employees") val totalEmployees: Long? = null, + val type: String? = null, + @SerialName("currency_name") val currencyName: String? = null, + @SerialName("round_lot") val roundLot: Long? = null ) @Serializable @@ -118,4 +120,4 @@ data class TickerDetailsDTO( val url: String? = null, val similar: List = emptyList(), val tags: List = emptyList() -) \ No newline at end of file +)