com.alipay.api.response.AlipayMobilePublicLabelDeleteResponse 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.delete response.
*
* @author auto create
* @since 1.0, 2016-07-29 19:59:03
*/
public class AlipayMobilePublicLabelDeleteResponse extends AlipayResponse {
private static final long serialVersionUID = 5468311927617294617L;
/**
* 结果码
*/
@ApiField("code")
private String code;
/**
* 标签编号
*/
@ApiField("id")
private Long id;
/**
* 结果信息
*/
@ApiField("msg")
private String msg;
public void setCode(String code) {
this.code = code;
}
public String getCode( ) {
return this.code;
}
public void setId(Long id) {
this.id = id;
}
public Long getId( ) {
return this.id;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getMsg( ) {
return this.msg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy