com.aliyun.dingtalkflashmsg_1_0.models.GetConversationRequest 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.dingtalkflashmsg_1_0.models;
import com.aliyun.tea.*;
public class GetConversationRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cidjyErBTyw0FnIQQigHAbcGCg==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* 080854121612617211
*/
@NameInMap("userId")
public String userId;
public static GetConversationRequest build(java.util.Map map) throws Exception {
GetConversationRequest self = new GetConversationRequest();
return TeaModel.build(map, self);
}
public GetConversationRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetConversationRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}