public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
{
DeleteFacesResponse response = new DeleteFacesResponse();
context.Read();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("DeletedFaces", targetDepth))
{
var unmarshaller = new ListUnmarshaller<string, StringUnmarshaller>(StringUnmarshaller.Instance);
response.DeletedFaces = unmarshaller.Unmarshall(context);
continue;
}
}
return response;
}