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

com.aliyun.dingtalkservice_group_1_0.models.DeleteKnowledgeRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DeleteKnowledgeRequest extends TeaModel {
    /**
     * example:
     * 

xuvw1245

*/ @NameInMap("libraryKey") public String libraryKey; /** * example: *

Js1i0w3k

*/ @NameInMap("openTeamId") public String openTeamId; /** * example: *

CCM

*/ @NameInMap("source") public String source; /** * example: *

CCM-123

*/ @NameInMap("sourcePrimaryKey") public String sourcePrimaryKey; public static DeleteKnowledgeRequest build(java.util.Map map) throws Exception { DeleteKnowledgeRequest self = new DeleteKnowledgeRequest(); return TeaModel.build(map, self); } public DeleteKnowledgeRequest setLibraryKey(String libraryKey) { this.libraryKey = libraryKey; return this; } public String getLibraryKey() { return this.libraryKey; } public DeleteKnowledgeRequest setOpenTeamId(String openTeamId) { this.openTeamId = openTeamId; return this; } public String getOpenTeamId() { return this.openTeamId; } public DeleteKnowledgeRequest setSource(String source) { this.source = source; return this; } public String getSource() { return this.source; } public DeleteKnowledgeRequest setSourcePrimaryKey(String sourcePrimaryKey) { this.sourcePrimaryKey = sourcePrimaryKey; return this; } public String getSourcePrimaryKey() { return this.sourcePrimaryKey; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy