![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalklink_1_0.models.CloseTopBoxInteractiveOTOMessageRequest 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.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class CloseTopBoxInteractiveOTOMessageRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("detail")
public CloseTopBoxInteractiveOTOMessageRequestDetail detail;
public static CloseTopBoxInteractiveOTOMessageRequest build(java.util.Map map) throws Exception {
CloseTopBoxInteractiveOTOMessageRequest self = new CloseTopBoxInteractiveOTOMessageRequest();
return TeaModel.build(map, self);
}
public CloseTopBoxInteractiveOTOMessageRequest setDetail(CloseTopBoxInteractiveOTOMessageRequestDetail detail) {
this.detail = detail;
return this;
}
public CloseTopBoxInteractiveOTOMessageRequestDetail getDetail() {
return this.detail;
}
public static class CloseTopBoxInteractiveOTOMessageRequestDetail extends TeaModel {
/**
* This parameter is required.
*
* example:
* service-card-20220824-001
*/
@NameInMap("cardBizId")
public String cardBizId;
/**
* This parameter is required.
*
* example:
* 3erkfi-42b0-4c83-bc56-ffhssde43
*/
@NameInMap("cardTemplateId")
public String cardTemplateId;
/**
* This parameter is required.
*
* example:
* user001
*/
@NameInMap("userId")
public String userId;
public static CloseTopBoxInteractiveOTOMessageRequestDetail build(java.util.Map map) throws Exception {
CloseTopBoxInteractiveOTOMessageRequestDetail self = new CloseTopBoxInteractiveOTOMessageRequestDetail();
return TeaModel.build(map, self);
}
public CloseTopBoxInteractiveOTOMessageRequestDetail setCardBizId(String cardBizId) {
this.cardBizId = cardBizId;
return this;
}
public String getCardBizId() {
return this.cardBizId;
}
public CloseTopBoxInteractiveOTOMessageRequestDetail setCardTemplateId(String cardTemplateId) {
this.cardTemplateId = cardTemplateId;
return this;
}
public String getCardTemplateId() {
return this.cardTemplateId;
}
public CloseTopBoxInteractiveOTOMessageRequestDetail setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy