com.aliyun.dingtalkrcs_call_1_0.models.RunCallUserRequest 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.dingtalkrcs_call_1_0.models;
import com.aliyun.tea.*;
public class RunCallUserRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* corpidxxxxx
*/
@NameInMap("authorizeCorpId")
public String authorizeCorpId;
/**
* This parameter is required.
*
* example:
* xxxxx
*/
@NameInMap("authorizeUserId")
public String authorizeUserId;
/**
* This parameter is required.
*
* example:
* xxxx
*/
@NameInMap("orderId")
public String orderId;
/**
* This parameter is required.
*
* example:
* xxxx
*/
@NameInMap("userId")
public String userId;
public static RunCallUserRequest build(java.util.Map map) throws Exception {
RunCallUserRequest self = new RunCallUserRequest();
return TeaModel.build(map, self);
}
public RunCallUserRequest setAuthorizeCorpId(String authorizeCorpId) {
this.authorizeCorpId = authorizeCorpId;
return this;
}
public String getAuthorizeCorpId() {
return this.authorizeCorpId;
}
public RunCallUserRequest setAuthorizeUserId(String authorizeUserId) {
this.authorizeUserId = authorizeUserId;
return this;
}
public String getAuthorizeUserId() {
return this.authorizeUserId;
}
public RunCallUserRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public RunCallUserRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}