From 2d2bbbcfe720e8402cd0cf0e91069d84cc73e451 Mon Sep 17 00:00:00 2001 From: Emily Ploszaj Date: Wed, 27 Aug 2025 16:01:11 -0500 Subject: [PATCH] Fix more documentation --- .../kotlin/com/google/firebase/ai/type/Part.kt | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/Part.kt b/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/Part.kt index a6bbb83e406..a8fdfa91fed 100644 --- a/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/Part.kt +++ b/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/Part.kt @@ -157,14 +157,7 @@ internal constructor( } } -/** - * Represents function call name and params received from requests. - * - * @param name the name of the function to call - * @param args the function parameters and values as a [Map] - * @param id Unique id of the function call. If present, the returned [FunctionResponsePart] should - * have a matching `id` field. - */ +/** Represents function call name and params received from requests. */ public class FunctionCallPart internal constructor( public val name: String, @@ -174,6 +167,12 @@ internal constructor( internal val thoughtSignature: String? ) : Part { + /** + * @param name the name of the function to call + * @param args the function parameters and values as a [Map] + * @param id Unique id of the function call. If present, the returned [FunctionResponsePart] + * should have a matching `id` field. + */ @JvmOverloads public constructor( name: String,