var response = await client.ReplaceAllObjectsWithTransformationAsync(
"ALGOLIA_INDEX_NAME",
new List<Object>
{
new Dictionary<string, string> { { "objectID", "1" }, { "name", "Adam" } },
new Dictionary<string, string> { { "objectID", "2" }, { "name", "Benoit" } },
new Dictionary<string, string> { { "objectID", "3" }, { "name", "Cyril" } },
new Dictionary<string, string> { { "objectID", "4" }, { "name", "David" } },
new Dictionary<string, string> { { "objectID", "5" }, { "name", "Eva" } },
new Dictionary<string, string> { { "objectID", "6" }, { "name", "Fiona" } },
new Dictionary<string, string> { { "objectID", "7" }, { "name", "Gael" } },
new Dictionary<string, string> { { "objectID", "8" }, { "name", "Hugo" } },
new Dictionary<string, string> { { "objectID", "9" }, { "name", "Igor" } },
new Dictionary<string, string> { { "objectID", "10" }, { "name", "Julia" } },
},
3
);