![JAR search and dependency download from the Maven repository](/logo.png)
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 {
/**
* example:
* 5
*/
@NameInMap("estimateWaitMin")
public Long estimateWaitMin;
/**
* example:
* eWaJSqDcLsoiE
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* example:
* 11
*/
@NameInMap("queuePlace")
public Long queuePlace;
/**
* example:
* 3333333333
*/
@NameInMap("serviceToken")
public String serviceToken;
/**
* example:
* SourceTypeEnum
*/
@NameInMap("targetChannel")
public String targetChannel;
/**
* example:
* 你好,欢迎来到这里
*/
@NameInMap("tips")
public String tips;
/**
* example:
* eeeeeeeeerrrrr
*/
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy