com.aliyun.bpstudio20210931.models.ValuateApplicationResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpstudio20210931 Show documentation
Show all versions of bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.bpstudio20210931.models;
import com.aliyun.tea.*;
public class ValuateApplicationResponseBody extends TeaModel {
/**
* The code of the query task.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The ID of the request.
*
* example:
* 123
*/
@NameInMap("Data")
public Long data;
/**
* Idempotent notation
*
* example:
* Success
*/
@NameInMap("Message")
public String message;
/**
* The returned message.
*
* example:
* A07FFDF2-78FA-1B48-9E38-88E833A93187
*/
@NameInMap("RequestId")
public String requestId;
public static ValuateApplicationResponseBody build(java.util.Map map) throws Exception {
ValuateApplicationResponseBody self = new ValuateApplicationResponseBody();
return TeaModel.build(map, self);
}
public ValuateApplicationResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ValuateApplicationResponseBody setData(Long data) {
this.data = data;
return this;
}
public Long getData() {
return this.data;
}
public ValuateApplicationResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ValuateApplicationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}