com.alipay.api.response.AlipaySecurityProdFacerepoAddResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.security.prod.facerepo.add response.
*
* @author auto create
* @since 1.0, 2016-06-30 08:29:39
*/
public class AlipaySecurityProdFacerepoAddResponse extends AlipayResponse {
private static final long serialVersionUID = 5516574978694727223L;
/**
* 扩展信息
*/
@ApiField("ext_info")
private String extInfo;
/**
* 对此次插入人脸库分组的人脸id标识
*/
@ApiField("face_id")
private String faceId;
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getExtInfo( ) {
return this.extInfo;
}
public void setFaceId(String faceId) {
this.faceId = faceId;
}
public String getFaceId( ) {
return this.faceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy