![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkassistant_1_0.models.RetrieveAssistantScopeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkassistant_1_0.models;
import com.aliyun.tea.*;
public class RetrieveAssistantScopeRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("assistantId")
public String assistantId;
public static RetrieveAssistantScopeRequest build(java.util.Map map) throws Exception {
RetrieveAssistantScopeRequest self = new RetrieveAssistantScopeRequest();
return TeaModel.build(map, self);
}
public RetrieveAssistantScopeRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy