com.alipay.api.domain.IotIdentityFaceOutEventApiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 人脸出库事件状态查询详情
*
* @author auto create
* @since 1.0, 2022-01-22 14:15:40
*/
public class IotIdentityFaceOutEventApiResponse extends AlipayObject {
private static final long serialVersionUID = 5818496697749596413L;
/**
* 错误的原因
*/
@ApiField("fail_reason")
private String failReason;
/**
* 状态,1处理中2成功3失败
*/
@ApiField("state")
private Long state;
public String getFailReason() {
return this.failReason;
}
public void setFailReason(String failReason) {
this.failReason = failReason;
}
public Long getState() {
return this.state;
}
public void setState(Long state) {
this.state = state;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy