com.alipay.api.domain.ErrorMatcher Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 用户打标接口失败的匹配器
*
* @author auto create
* @since 1.0, 2022-11-14 11:34:18
*/
public class ErrorMatcher extends AlipayObject {
private static final long serialVersionUID = 5713814166381226525L;
/**
* 失败原因
*/
@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