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

com.alipay.api.domain.AlipayDataServiceResult Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 数据决策分析结果
 *
 * @author auto create
 * @since 1.0, 2016-10-26 17:43:41
 */
public class AlipayDataServiceResult extends AlipayObject {

	private static final long serialVersionUID = 5632852586546426194L;

	/**
	 * 错误码
	 */
	@ApiField("code")
	private String code;

	/**
	 * 错误信息
	 */
	@ApiField("message")
	private String message;

	/**
	 * 调用结果,json格式
	 */
	@ApiField("result")
	private String result;

	/**
	 * 调用是否成功
	 */
	@ApiField("success")
	private Boolean success;

	public String getCode() {
		return this.code;
	}
	public void setCode(String code) {
		this.code = code;
	}

	public String getMessage() {
		return this.message;
	}
	public void setMessage(String message) {
		this.message = message;
	}

	public String getResult() {
		return this.result;
	}
	public void setResult(String result) {
		this.result = result;
	}

	public Boolean getSuccess() {
		return this.success;
	}
	public void setSuccess(Boolean success) {
		this.success = success;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy