com.alipay.api.domain.AlipayItemAuditRule 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, 2017-04-20 15:17:50
*/
public class AlipayItemAuditRule extends AlipayObject {
private static final long serialVersionUID = 4644264627171174167L;
/**
* 审核类型,商户授权模式此字段不需要填写。
*/
@ApiField("audit_type")
private String auditType;
/**
* true:需要审核、false:不需要审核,默认为不需要审核,商户授权模式此字段不需要填写。
*/
@ApiField("need_audit")
private Boolean needAudit;
public String getAuditType() {
return this.auditType;
}
public void setAuditType(String auditType) {
this.auditType = auditType;
}
public Boolean getNeedAudit() {
return this.needAudit;
}
public void setNeedAudit(Boolean needAudit) {
this.needAudit = needAudit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy