com.alipay.api.domain.ErrorMatcher 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-06-01 11:25:22
*/
public class ErrorMatcher extends AlipayObject {
private static final long serialVersionUID = 4249498325238792169L;
/**
* 失败原因
*/
@ApiField("error_msg")
private String errorMsg;
/**
* 用户打标接口出错的匹配器
*/
@ApiField("matcher")
private Matcher matcher;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public Matcher getMatcher() {
return this.matcher;
}
public void setMatcher(Matcher matcher) {
this.matcher = matcher;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy