com.aliyun.dingtalkcrm_1_0.models.UpdateCrmPersonalCustomerResponseBody 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class UpdateCrmPersonalCustomerResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("instanceId")
public String instanceId;
public static UpdateCrmPersonalCustomerResponseBody build(java.util.Map map) throws Exception {
UpdateCrmPersonalCustomerResponseBody self = new UpdateCrmPersonalCustomerResponseBody();
return TeaModel.build(map, self);
}
public UpdateCrmPersonalCustomerResponseBody setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
}