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

com.aliyun.dingtalkimpaas_1_0.models.SendMessageResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SendMessageResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("createTime") public Long createTime; /** *

This parameter is required.

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

This parameter is required.

*/ @NameInMap("msgId") public String msgId; public static SendMessageResponseBody build(java.util.Map map) throws Exception { SendMessageResponseBody self = new SendMessageResponseBody(); return TeaModel.build(map, self); } public SendMessageResponseBody setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public SendMessageResponseBody setMessageId(String messageId) { this.messageId = messageId; return this; } public String getMessageId() { return this.messageId; } public SendMessageResponseBody setMsgId(String msgId) { this.msgId = msgId; return this; } public String getMsgId() { return this.msgId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy