![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkai_paa_s_1_0.models.SmartQuoteQueryServiceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkai_paa_s_1_0.models;
import com.aliyun.tea.*;
public class SmartQuoteQueryServiceResponseBody extends TeaModel {
@NameInMap("result")
public SmartQuoteQueryServiceResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static SmartQuoteQueryServiceResponseBody build(java.util.Map map) throws Exception {
SmartQuoteQueryServiceResponseBody self = new SmartQuoteQueryServiceResponseBody();
return TeaModel.build(map, self);
}
public SmartQuoteQueryServiceResponseBody setResult(SmartQuoteQueryServiceResponseBodyResult result) {
this.result = result;
return this;
}
public SmartQuoteQueryServiceResponseBodyResult getResult() {
return this.result;
}
public SmartQuoteQueryServiceResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class SmartQuoteQueryServiceResponseBodyResult extends TeaModel {
@NameInMap("response")
public String response;
public static SmartQuoteQueryServiceResponseBodyResult build(java.util.Map map) throws Exception {
SmartQuoteQueryServiceResponseBodyResult self = new SmartQuoteQueryServiceResponseBodyResult();
return TeaModel.build(map, self);
}
public SmartQuoteQueryServiceResponseBodyResult setResponse(String response) {
this.response = response;
return this;
}
public String getResponse() {
return this.response;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy