com.aliyun.dingtalkjzcrm_1_0.models.EditCustomerResponseBody 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.dingtalkjzcrm_1_0.models;
import com.aliyun.tea.*;
public class EditCustomerResponseBody extends TeaModel {
// 编辑数据的id
@NameInMap("msgid")
public Long msgid;
// 响应时间
@NameInMap("time")
public String time;
public static EditCustomerResponseBody build(java.util.Map map) throws Exception {
EditCustomerResponseBody self = new EditCustomerResponseBody();
return TeaModel.build(map, self);
}
public EditCustomerResponseBody setMsgid(Long msgid) {
this.msgid = msgid;
return this;
}
public Long getMsgid() {
return this.msgid;
}
public EditCustomerResponseBody setTime(String time) {
this.time = time;
return this;
}
public String getTime() {
return this.time;
}
}