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

com.aliyun.dingtalkjzcrm_1_0.models.EditCustomerResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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 {
    /**
     * 

This parameter is required.

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

This parameter is required.

*/ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy