All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ice20201109.models.DropSearchIndexRequest Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class DropSearchIndexRequest extends TeaModel {
    @NameInMap("IndexType")
    public String indexType;

    @NameInMap("SearchLibName")
    public String searchLibName;

    public static DropSearchIndexRequest build(java.util.Map map) throws Exception {
        DropSearchIndexRequest self = new DropSearchIndexRequest();
        return TeaModel.build(map, self);
    }

    public DropSearchIndexRequest setIndexType(String indexType) {
        this.indexType = indexType;
        return this;
    }
    public String getIndexType() {
        return this.indexType;
    }

    public DropSearchIndexRequest setSearchLibName(String searchLibName) {
        this.searchLibName = searchLibName;
        return this;
    }
    public String getSearchLibName() {
        return this.searchLibName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy