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

com.baidubce.appbuilder.model.knowledgebase.KnowledgeBaseModifyRequest Maven / Gradle / Ivy

package com.baidubce.appbuilder.model.knowledgebase;

import com.google.gson.annotations.SerializedName;

public class KnowledgeBaseModifyRequest {
    @SerializedName("id")
    private String knowledgeBaseId;
    private String name;
    private String description;

    public String getKnowledgeBaseId() {
        return knowledgeBaseId;
    }

    public void setKnowledgeBaseId(String knowledgeBaseId) {
        this.knowledgeBaseId = knowledgeBaseId;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy