设置信息-faceSetInfo

返回内容介绍:
public static String sample(TAipFace client) throws Exception {
  //参数
  String person_id = "20181001001";// 需要设置的个体(Person)ID
  String person_name= "20181001001001";//新的名字
  String tag= "20181001001001";//备注信息
  String result = client.faceSetInfo(person_id,person_name);//删除人脸   必填参数
  String result = client.faceSetInfo(person_id,person_name,tag);//删除人脸   全部参数
  return result;
}