com.aliyun.dingtalkservice_group_1_0.models.QueueNotifyRequest 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class QueueNotifyRequest extends TeaModel {
// 预计等待时间,单位:分钟
@NameInMap("estimateWaitMin")
public Long estimateWaitMin;
// 开放团队ID
@NameInMap("openTeamId")
public String openTeamId;
// 当前排队次序
@NameInMap("queuePlace")
public Long queuePlace;
// 会话id
@NameInMap("serviceToken")
public String serviceToken;
// 渠道类型
@NameInMap("targetChannel")
public String targetChannel;
// 展示文案
@NameInMap("tips")
public String tips;
// DT端定义的访客token
@NameInMap("visitorToken")
public String visitorToken;
public static QueueNotifyRequest build(java.util.Map map) throws Exception {
QueueNotifyRequest self = new QueueNotifyRequest();
return TeaModel.build(map, self);
}
public QueueNotifyRequest setEstimateWaitMin(Long estimateWaitMin) {
this.estimateWaitMin = estimateWaitMin;
return this;
}
public Long getEstimateWaitMin() {
return this.estimateWaitMin;
}
public QueueNotifyRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public QueueNotifyRequest setQueuePlace(Long queuePlace) {
this.queuePlace = queuePlace;
return this;
}
public Long getQueuePlace() {
return this.queuePlace;
}
public QueueNotifyRequest setServiceToken(String serviceToken) {
this.serviceToken = serviceToken;
return this;
}
public String getServiceToken() {
return this.serviceToken;
}
public QueueNotifyRequest setTargetChannel(String targetChannel) {
this.targetChannel = targetChannel;
return this;
}
public String getTargetChannel() {
return this.targetChannel;
}
public QueueNotifyRequest setTips(String tips) {
this.tips = tips;
return this;
}
public String getTips() {
return this.tips;
}
public QueueNotifyRequest setVisitorToken(String visitorToken) {
this.visitorToken = visitorToken;
return this;
}
public String getVisitorToken() {
return this.visitorToken;
}
}