com.qcloud.cos.model.ciModel.ai.FaceIds Maven / Gradle / Ivy
package com.qcloud.cos.model.ciModel.ai;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import java.util.List;
public class FaceIds {
/**
*待删除的人脸ID;是否必传:是
*/
@XStreamImplicit(itemFieldName = "FaceId")
private List faceId;
public List getFaceId() {
return faceId;
}
public void setFaceId(List faceId) {
this.faceId = faceId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy