Skip to content

Commit 2e54ead

Browse files
algolia-botkombucha
andcommitted
feat(specs): add missing message attribute to GetObjectsResponse [skip-bc] (generated)
algolia/api-clients-automation#4029 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Vincent Lemeunier <[email protected]>
1 parent ce69769 commit 2e54ead

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

client/src/commonMain/kotlin/com/algolia/client/model/search/GetObjectsResponse.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ import kotlinx.serialization.json.*
88
* GetObjectsResponse
99
*
1010
* @param results Retrieved records.
11+
* @param message An optional status message.
1112
*/
1213
@Serializable
1314
public data class GetObjectsResponse(
1415

1516
/** Retrieved records. */
1617
@SerialName(value = "results") val results: List<JsonObject>,
18+
19+
/** An optional status message. */
20+
@SerialName(value = "message") val message: String? = null,
1721
)

0 commit comments

Comments
 (0)