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

com.aliyun.dingtalkim_1_0.models.TopboxCloseRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkim_1_0.models;

import com.aliyun.tea.*;

public class TopboxCloseRequest extends TeaModel {
    @NameInMap("conversationType")
    public Integer conversationType;

    @NameInMap("coolAppCode")
    public String coolAppCode;

    /**
     * example:
     * 

xxxx

*/ @NameInMap("openConversationId") public String openConversationId; /** *

This parameter is required.

* * example: *

xxxx

*/ @NameInMap("outTrackId") public String outTrackId; @NameInMap("receiverUserIdList") public java.util.List receiverUserIdList; @NameInMap("robotCode") public String robotCode; public static TopboxCloseRequest build(java.util.Map map) throws Exception { TopboxCloseRequest self = new TopboxCloseRequest(); return TeaModel.build(map, self); } public TopboxCloseRequest setConversationType(Integer conversationType) { this.conversationType = conversationType; return this; } public Integer getConversationType() { return this.conversationType; } public TopboxCloseRequest setCoolAppCode(String coolAppCode) { this.coolAppCode = coolAppCode; return this; } public String getCoolAppCode() { return this.coolAppCode; } public TopboxCloseRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public TopboxCloseRequest setOutTrackId(String outTrackId) { this.outTrackId = outTrackId; return this; } public String getOutTrackId() { return this.outTrackId; } public TopboxCloseRequest setReceiverUserIdList(java.util.List receiverUserIdList) { this.receiverUserIdList = receiverUserIdList; return this; } public java.util.List getReceiverUserIdList() { return this.receiverUserIdList; } public TopboxCloseRequest setRobotCode(String robotCode) { this.robotCode = robotCode; return this; } public String getRobotCode() { return this.robotCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy