Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 650 Bytes

UpdateRecordRequest.md

File metadata and controls

22 lines (16 loc) · 650 Bytes

SajariAPIClient::UpdateRecordRequest

Properties

Name Type Description Notes
key RecordKey
record Hash<String, Object> The record to update.
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 the record object containing the new value.

Example

require 'sdk_ruby'

instance = SajariAPIClient::UpdateRecordRequest.new(
  key: null,
  record: null,
  update_mask: null
)