com.aliyun.dingtalkimpaas_1_0.models.SendMessageResponseBody 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.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;
}
}