A request to update the properties of multiple records.
Name | Type | Description | Notes |
---|---|---|---|
validated_at | datetime | The validation time of the record. | [optional] |
from wordlift_client.models.update_records_request import UpdateRecordsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRecordsRequest from a JSON string
update_records_request_instance = UpdateRecordsRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateRecordsRequest.to_json())
# convert the object into a dict
update_records_request_dict = update_records_request_instance.to_dict()
# create an instance of UpdateRecordsRequest from a dict
update_records_request_from_dict = UpdateRecordsRequest.from_dict(update_records_request_dict)