@@ -35,7 +35,7 @@ private constructor(
3535 fun entityIds (): Optional <List <String >> = Optional .ofNullable(entityIds)
3636
3737 /* *
38- * The array of batch requests.
38+ * The array of batch requests. Maximum 10000 items per request.
3939 *
4040 * @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
4141 * missing or null (e.g. if the server responded with an unexpected value).
@@ -117,7 +117,7 @@ private constructor(
117117 */
118118 fun body (body : Body ) = apply { this .body = body.toBuilder() }
119119
120- /* * The array of batch requests. */
120+ /* * The array of batch requests. Maximum 10000 items per request. */
121121 fun requests (requests : List <Request >) = apply { body.requests(requests) }
122122
123123 /* *
@@ -302,7 +302,7 @@ private constructor(
302302 ) : this (requests, mutableMapOf ())
303303
304304 /* *
305- * The array of batch requests.
305+ * The array of batch requests. Maximum 10000 items per request.
306306 *
307307 * @throws FinchInvalidDataException if the JSON field has an unexpected type or is
308308 * unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -355,7 +355,7 @@ private constructor(
355355 additionalProperties = body.additionalProperties.toMutableMap()
356356 }
357357
358- /* * The array of batch requests. */
358+ /* * The array of batch requests. Maximum 10000 items per request. */
359359 fun requests (requests : List <Request >) = requests(JsonField .of(requests))
360360
361361 /* *
@@ -490,9 +490,7 @@ private constructor(
490490 ) : this (individualId, mutableMapOf ())
491491
492492 /* *
493- * A stable Finch `id` (UUID v4) for an individual in the company. There is no limit to the
494- * number of `individual_id` to send per request. It is preferantial to send all ids in a
495- * single request for Finch to optimize provider rate-limits.
493+ * A stable Finch `id` (UUID v4) for an individual in the company.
496494 *
497495 * @throws FinchInvalidDataException if the JSON field has an unexpected type or is
498496 * unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -546,11 +544,7 @@ private constructor(
546544 additionalProperties = request.additionalProperties.toMutableMap()
547545 }
548546
549- /* *
550- * A stable Finch `id` (UUID v4) for an individual in the company. There is no limit to
551- * the number of `individual_id` to send per request. It is preferantial to send all ids
552- * in a single request for Finch to optimize provider rate-limits.
553- */
547+ /* * A stable Finch `id` (UUID v4) for an individual in the company. */
554548 fun individualId (individualId : String ) = individualId(JsonField .of(individualId))
555549
556550 /* *
0 commit comments