@@ -204,7 +204,7 @@ def delete(
204204
205205 - **Single** ``(table, "guid")`` -> one DELETE request.
206206 - **List + use_bulk_delete=True** (default) -> one ``BulkDelete`` POST.
207- The async job ID will be available in ``BatchItemResponse.body ["JobId"]``.
207+ The async job ID will be available in ``BatchItemResponse.data ["JobId"]``.
208208 - **List + use_bulk_delete=False** -> one DELETE per record.
209209
210210 :param table: Table schema name.
@@ -232,7 +232,7 @@ def get(
232232 incompatible with a single batch request.
233233
234234 The response body will be available in
235- :attr:`~PowerPlatform.Dataverse.models.batch.BatchItemResponse.body `
235+ :attr:`~PowerPlatform.Dataverse.models.batch.BatchItemResponse.data `
236236 after :meth:`BatchRequest.execute`.
237237
238238 :param table: Table schema name.
@@ -311,7 +311,7 @@ def get(self, table: str) -> None:
311311 """
312312 Add a table-metadata-get operation to the batch.
313313
314- The response will be in ``BatchItemResponse.body `` after execute.
314+ The response will be in ``BatchItemResponse.data `` after execute.
315315
316316 :param table: Schema name of the table.
317317 """
@@ -321,7 +321,7 @@ def list(self) -> None:
321321 """
322322 Add a list-all-tables operation to the batch.
323323
324- The response will be in ``BatchItemResponse.body `` after execute.
324+ The response will be in ``BatchItemResponse.data `` after execute.
325325 """
326326 self ._batch ._items .append (_TableList ())
327327
@@ -392,7 +392,7 @@ def get_relationship(self, schema_name: str) -> None:
392392 """
393393 Add a relationship-metadata-get operation to the batch.
394394
395- The response will be in ``BatchItemResponse.body `` after execute.
395+ The response will be in ``BatchItemResponse.data `` after execute.
396396
397397 :param schema_name: Schema name of the relationship.
398398 """
0 commit comments