com.aliyun.dingtalkedu_1_0.models.PreDialRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class PreDialRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 00003213130
*/
@NameInMap("callerUserId")
public String callerUserId;
/**
* This parameter is required.
*
* example:
* 312000030213120
*/
@NameInMap("receiverUserId")
public String receiverUserId;
/**
* This parameter is required.
*
* example:
* fdaf-2132
*/
@NameInMap("sn")
public String sn;
/**
* This parameter is required.
*
* example:
* VIDEO_CALL
*/
@NameInMap("type")
public String type;
public static PreDialRequest build(java.util.Map map) throws Exception {
PreDialRequest self = new PreDialRequest();
return TeaModel.build(map, self);
}
public PreDialRequest setCallerUserId(String callerUserId) {
this.callerUserId = callerUserId;
return this;
}
public String getCallerUserId() {
return this.callerUserId;
}
public PreDialRequest setReceiverUserId(String receiverUserId) {
this.receiverUserId = receiverUserId;
return this;
}
public String getReceiverUserId() {
return this.receiverUserId;
}
public PreDialRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public PreDialRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}