![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.ice20201109.models.AlterSearchIndexResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class AlterSearchIndexResponseBody extends TeaModel {
/**
* The status code returned.
*
* example:
* 200
*/
@NameInMap("Code")
public String code;
/**
* The ID of the request.
*
* example:
* 3B-0E1A-586A-AC29-742247
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the request was successful. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("Success")
public String success;
public static AlterSearchIndexResponseBody build(java.util.Map map) throws Exception {
AlterSearchIndexResponseBody self = new AlterSearchIndexResponseBody();
return TeaModel.build(map, self);
}
public AlterSearchIndexResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public AlterSearchIndexResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public AlterSearchIndexResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy