
com.aliyun.ice20201109.models.DropSearchLibResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DropSearchLibResponseBody extends TeaModel {
/**
* The status code returned.
*
* example:
* 200
*/
@NameInMap("Code")
public String code;
/**
* The ID of the request.
*
* example:
* 63E8B7C7-4812-46AD-0FA56029AC86
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the request was successful. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("Success")
public String success;
public static DropSearchLibResponseBody build(java.util.Map map) throws Exception {
DropSearchLibResponseBody self = new DropSearchLibResponseBody();
return TeaModel.build(map, self);
}
public DropSearchLibResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public DropSearchLibResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DropSearchLibResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy