com.aliyun.dingtalkexclusive_1_0.models.GroupQueryByOpenIdRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GroupQueryByOpenIdRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*/
@NameInMap("secretKey")
public String secretKey;
public static GroupQueryByOpenIdRequest build(java.util.Map map) throws Exception {
GroupQueryByOpenIdRequest self = new GroupQueryByOpenIdRequest();
return TeaModel.build(map, self);
}
public GroupQueryByOpenIdRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GroupQueryByOpenIdRequest setSecretKey(String secretKey) {
this.secretKey = secretKey;
return this;
}
public String getSecretKey() {
return this.secretKey;
}
}