Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 858 Bytes

BatchUpdateRecordsRequest.md

File metadata and controls

20 lines (14 loc) · 858 Bytes

SajariAPIClient::BatchUpdateRecordsRequest

Properties

Name Type Description Notes
requests Array<UpdateRecordRequest> The list of requests containing the records to be updated. A maximum of 200 records can be updated in a batch.
update_mask String The list of fields to be updated, separated by a comma, e.g. `field1,field2`. For each field that you want to update, provide a corresponding value in each record object, within the requests list, containing the new value. If provided, and you also provide an update mask in any child request, the values must match. [optional]

Example

require 'sdk_ruby'

instance = SajariAPIClient::BatchUpdateRecordsRequest.new(
  requests: null,
  update_mask: null
)