com.alipay.api.response.AlipayMobilePublicLabelQueryResponse 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.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.mobile.public.label.query response.
*
* @author auto create
* @since 1.0, 2016-07-29 20:00:13
*/
public class AlipayMobilePublicLabelQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5196255823734212627L;
/**
* 结果码
*/
@ApiField("code")
private String code;
/**
* 所有标签
*/
@ApiListField("labels")
@ApiField("string")
private List labels;
/**
* 结果信息
*/
@ApiField("msg")
private String msg;
public void setCode(String code) {
this.code = code;
}
public String getCode( ) {
return this.code;
}
public void setLabels(List labels) {
this.labels = labels;
}
public List getLabels( ) {
return this.labels;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getMsg( ) {
return this.msg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy