com.alipay.api.domain.PublicAuditStatus 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 生活号审核状态
*
* @author auto create
* @since 1.0, 2017-09-20 17:31:46
*/
public class PublicAuditStatus extends AlipayObject {
private static final long serialVersionUID = 2767395938248925315L;
/**
* 审核状态描述,如果审核驳回则有相关的驳回理由
*/
@ApiField("desc")
private String desc;
/**
* AUDITING:审核中,AUDIT_FAILED:审核驳回,AUDIT_SUCCESS:审核通过,AUDIT_NORMAL:无审核记录
*/
@ApiField("status")
private String status;
/**
* NAME:名称、AVATAR:头像、NAME_AVATAR:名称与头像、INTRODUCTION:简介
*/
@ApiField("type")
private String type;
public String getDesc() {
return this.desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy