All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayMobilePublicLabelUpdateResponse Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show 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.update response.
 * 
 * @author auto create
 * @since 1.0, 2016-07-29 19:58:24
 */
public class AlipayMobilePublicLabelUpdateResponse extends AlipayResponse {

	private static final long serialVersionUID = 2815797552494778257L;

	/** 
	 * 结果码
	 */
	@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 - 2024 Weber Informatics LLC | Privacy Policy