com.alipay.api.response.AlipayMobilePublicLabelUserQueryResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.mobile.public.label.user.query response.
*
* @author auto create
* @since 1.0, 2016-07-29 19:58:41
*/
public class AlipayMobilePublicLabelUserQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3266485967648299496L;
/**
* 结果码
*/
@ApiField("code")
private String code;
/**
* 标签编号,英文逗号分隔。
*/
@ApiField("label_ids")
private String labelIds;
/**
* 结果信息
*/
@ApiField("msg")
private String msg;
public void setCode(String code) {
this.code = code;
}
public String getCode( ) {
return this.code;
}
public void setLabelIds(String labelIds) {
this.labelIds = labelIds;
}
public String getLabelIds( ) {
return this.labelIds;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getMsg( ) {
return this.msg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy