Skip to content

Commit 591d57d

Browse files
committed
Format fix
1 parent 0874a3e commit 591d57d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/CountTokensResponse.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ import kotlinx.serialization.Serializable
3636
*/
3737
public class CountTokensResponse(
3838
public val totalTokens: Int,
39-
@Deprecated("This field is deprecated and will be removed in a future version.") public val totalBillableCharacters: Int? = null,
39+
@Deprecated("This field is deprecated and will be removed in a future version.")
40+
public val totalBillableCharacters: Int? = null,
4041
public val promptTokensDetails: List<ModalityTokenCount> = emptyList(),
4142
) {
4243
public operator fun component1(): Int = totalTokens

0 commit comments

Comments
 (0)