com.alipay.api.domain.AccessCheckItemInfo 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, 2023-01-05 21:18:28
*/
public class AccessCheckItemInfo extends AlipayObject {
private static final long serialVersionUID = 1838337385972871927L;
/**
* 校验结果
*/
@ApiField("access_check")
private Boolean accessCheck;
/**
* 规则id
*/
@ApiField("rule_id")
private String ruleId;
/**
* 规则名称
*/
@ApiField("rule_name")
private String ruleName;
/**
* 错误提示文案
*/
@ApiField("tips")
private String tips;
public Boolean getAccessCheck() {
return this.accessCheck;
}
public void setAccessCheck(Boolean accessCheck) {
this.accessCheck = accessCheck;
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public String getTips() {
return this.tips;
}
public void setTips(String tips) {
this.tips = tips;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy