com.aliyun.dingtalkjzcrm_1_0.models.EditInvoiceResponseBody 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 EditInvoiceResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("msgid")
public Long msgid;
/**
* This parameter is required.
*/
@NameInMap("time")
public String time;
public static EditInvoiceResponseBody build(java.util.Map map) throws Exception {
EditInvoiceResponseBody self = new EditInvoiceResponseBody();
return TeaModel.build(map, self);
}
public EditInvoiceResponseBody setMsgid(Long msgid) {
this.msgid = msgid;
return this;
}
public Long getMsgid() {
return this.msgid;
}
public EditInvoiceResponseBody setTime(String time) {
this.time = time;
return this;
}
public String getTime() {
return this.time;
}
}