com.aliyun.dingtalkbizfinance_1_0.models.CreateCustomerRequest 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 CreateCustomerRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 55001121
*/
@NameInMap("creator")
public String creator;
/**
* example:
* abc
*/
@NameInMap("description")
public String description;
/**
* example:
*
*/
@NameInMap("drawerEmail")
public String drawerEmail;
/**
* example:
* 12345678901
*/
@NameInMap("drawerTelephone")
public String drawerTelephone;
/**
* This parameter is required.
*
* example:
* 张三
*/
@NameInMap("name")
public String name;
/**
* example:
* abc
*/
@NameInMap("purchaserAccount")
public String purchaserAccount;
/**
* example:
* 杭州市
*/
@NameInMap("purchaserAddress")
public String purchaserAddress;
/**
* example:
* 建行
*/
@NameInMap("purchaserBankName")
public String purchaserBankName;
/**
* example:
* 李四
*/
@NameInMap("purchaserName")
public String purchaserName;
/**
* example:
* 1333
*/
@NameInMap("purchaserTaxNo")
public String purchaserTaxNo;
/**
* example:
* 13333333333
*/
@NameInMap("purchaserTel")
public String purchaserTel;
public static CreateCustomerRequest build(java.util.Map map) throws Exception {
CreateCustomerRequest self = new CreateCustomerRequest();
return TeaModel.build(map, self);
}
public CreateCustomerRequest setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public CreateCustomerRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateCustomerRequest setDrawerEmail(String drawerEmail) {
this.drawerEmail = drawerEmail;
return this;
}
public String getDrawerEmail() {
return this.drawerEmail;
}
public CreateCustomerRequest setDrawerTelephone(String drawerTelephone) {
this.drawerTelephone = drawerTelephone;
return this;
}
public String getDrawerTelephone() {
return this.drawerTelephone;
}
public CreateCustomerRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateCustomerRequest setPurchaserAccount(String purchaserAccount) {
this.purchaserAccount = purchaserAccount;
return this;
}
public String getPurchaserAccount() {
return this.purchaserAccount;
}
public CreateCustomerRequest setPurchaserAddress(String purchaserAddress) {
this.purchaserAddress = purchaserAddress;
return this;
}
public String getPurchaserAddress() {
return this.purchaserAddress;
}
public CreateCustomerRequest setPurchaserBankName(String purchaserBankName) {
this.purchaserBankName = purchaserBankName;
return this;
}
public String getPurchaserBankName() {
return this.purchaserBankName;
}
public CreateCustomerRequest setPurchaserName(String purchaserName) {
this.purchaserName = purchaserName;
return this;
}
public String getPurchaserName() {
return this.purchaserName;
}
public CreateCustomerRequest setPurchaserTaxNo(String purchaserTaxNo) {
this.purchaserTaxNo = purchaserTaxNo;
return this;
}
public String getPurchaserTaxNo() {
return this.purchaserTaxNo;
}
public CreateCustomerRequest setPurchaserTel(String purchaserTel) {
this.purchaserTel = purchaserTel;
return this;
}
public String getPurchaserTel() {
return this.purchaserTel;
}
}