com.aiwiown.face.domain.FaceSetDeleteModel Maven / Gradle / Ivy
package com.aiwiown.face.domain;
import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;
/**
* @ClassName : FaceSetListModel
* @Description :
* @Author : dbin0123
* @Date: 2020-03-13 17:23
*/
public class FaceSetDeleteModel extends ApiObject {
private static final long serialVersionUID = 7945887062482237694L;
@ApiField("faceset_token")
private String facesetToken;
@ApiField("outer_id")
private String outerId;
@ApiField("check_empty")
private Integer checkEmpty;
public String getFacesetToken() {
return facesetToken;
}
public void setFacesetToken(String facesetToken) {
this.facesetToken = facesetToken;
}
public String getOuterId() {
return outerId;
}
public void setOuterId(String outerId) {
this.outerId = outerId;
}
public Integer getCheckEmpty() {
return checkEmpty;
}
public void setCheckEmpty(Integer checkEmpty) {
this.checkEmpty = checkEmpty;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy