Skip to content

Commit f6feb92

Browse files
authored
m169 fix more documentation (#7307)
I missed a constructor in the initial PR
1 parent 4f338f1 commit f6feb92

File tree

1 file changed

+7
-8
lines changed
  • firebase-ai/src/main/kotlin/com/google/firebase/ai/type

1 file changed

+7
-8
lines changed

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

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,7 @@ internal constructor(
157157
}
158158
}
159159

160-
/**
161-
* Represents function call name and params received from requests.
162-
*
163-
* @param name the name of the function to call
164-
* @param args the function parameters and values as a [Map]
165-
* @param id Unique id of the function call. If present, the returned [FunctionResponsePart] should
166-
* have a matching `id` field.
167-
*/
160+
/** Represents function call name and params received from requests. */
168161
public class FunctionCallPart
169162
internal constructor(
170163
public val name: String,
@@ -174,6 +167,12 @@ internal constructor(
174167
internal val thoughtSignature: String?
175168
) : Part {
176169

170+
/**
171+
* @param name the name of the function to call
172+
* @param args the function parameters and values as a [Map]
173+
* @param id Unique id of the function call. If present, the returned [FunctionResponsePart]
174+
* should have a matching `id` field.
175+
*/
177176
@JvmOverloads
178177
public constructor(
179178
name: String,

0 commit comments

Comments
 (0)