
com.aliyun.dingtalkbizfinance_1_0.models.CreateCustomerResponseBody Maven / Gradle / Ivy
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy