We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0874a3e commit 591d57dCopy full SHA for 591d57d
firebase-ai/src/main/kotlin/com/google/firebase/ai/type/CountTokensResponse.kt
@@ -36,7 +36,8 @@ import kotlinx.serialization.Serializable
36
*/
37
public class CountTokensResponse(
38
public val totalTokens: Int,
39
- @Deprecated("This field is deprecated and will be removed in a future version.") public val totalBillableCharacters: Int? = null,
+ @Deprecated("This field is deprecated and will be removed in a future version.")
40
+ public val totalBillableCharacters: Int? = null,
41
public val promptTokensDetails: List<ModalityTokenCount> = emptyList(),
42
) {
43
public operator fun component1(): Int = totalTokens
0 commit comments