com.aliyun.dingtalkbizfinance_1_0.models.CreateCustomerResponseBody 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.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class CreateCustomerResponseBody extends TeaModel {
/**
* example:
* CUS_xxxxxx
*/
@NameInMap("customerCode")
public String customerCode;
public static CreateCustomerResponseBody build(java.util.Map map) throws Exception {
CreateCustomerResponseBody self = new CreateCustomerResponseBody();
return TeaModel.build(map, self);
}
public CreateCustomerResponseBody setCustomerCode(String customerCode) {
this.customerCode = customerCode;
return this;
}
public String getCustomerCode() {
return this.customerCode;
}
}