com.aliyun.dingtalkim_1_0.models.GetConversationUrlRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class GetConversationUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1107****2120
*/
@NameInMap("appUserId")
public String appUserId;
/**
* This parameter is required.
*
* example:
* oK4e****qER2
*/
@NameInMap("channelCode")
public String channelCode;
/**
* example:
* 123**789
*/
@NameInMap("deviceId")
public String deviceId;
/**
* example:
* f67b****8a0f
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* 1745****8777
*/
@NameInMap("userId")
public String userId;
public static GetConversationUrlRequest build(java.util.Map map) throws Exception {
GetConversationUrlRequest self = new GetConversationUrlRequest();
return TeaModel.build(map, self);
}
public GetConversationUrlRequest setAppUserId(String appUserId) {
this.appUserId = appUserId;
return this;
}
public String getAppUserId() {
return this.appUserId;
}
public GetConversationUrlRequest setChannelCode(String channelCode) {
this.channelCode = channelCode;
return this;
}
public String getChannelCode() {
return this.channelCode;
}
public GetConversationUrlRequest setDeviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
public String getDeviceId() {
return this.deviceId;
}
public GetConversationUrlRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetConversationUrlRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}