com.alipay.api.domain.AlipayDataServiceResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 数据决策分析结果
*
* @author auto create
* @since 1.0, 2018-01-22 10:52:52
*/
public class AlipayDataServiceResult extends AlipayObject {
private static final long serialVersionUID = 1343576493714529473L;
/**
* 错误码
*/
@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 - 2025 Weber Informatics LLC | Privacy Policy