All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalklink_1_0.models.CloseTopBoxInteractiveOTOMessageRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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