com.aliyun.dingtalkh3yun_1_0.models.UpdateBizObjectRequest 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.dingtalkh3yun_1_0.models;
import com.aliyun.tea.*;
public class UpdateBizObjectRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ceeb5ad3-b6da-4d4d-b6a5-8d342567d189
*/
@NameInMap("bizObjectId")
public String bizObjectId;
/**
* This parameter is required.
*
* example:
* { "F0000010": "0001111", "F0000011": "王五", "F0000012": "D1级客户", "F0000013": 7000, "D000183Fcd15f3a51e624bbc9945392d190b6aa8": [ { "F0000014": "里斯", "F0000015": "156********", "F0000016": "技术部", "F0000017": "经理", "F0000018": "男", "F0000019": "[email protected]", "F0000020": true, "F0000021": "无" } ] }
*/
@NameInMap("bizObjectJson")
public String bizObjectJson;
/**
* This parameter is required.
*
* example:
* D0001839bbbbe346bbf496498bb76c44c7eb972
*/
@NameInMap("schemaCode")
public String schemaCode;
public static UpdateBizObjectRequest build(java.util.Map map) throws Exception {
UpdateBizObjectRequest self = new UpdateBizObjectRequest();
return TeaModel.build(map, self);
}
public UpdateBizObjectRequest setBizObjectId(String bizObjectId) {
this.bizObjectId = bizObjectId;
return this;
}
public String getBizObjectId() {
return this.bizObjectId;
}
public UpdateBizObjectRequest setBizObjectJson(String bizObjectJson) {
this.bizObjectJson = bizObjectJson;
return this;
}
public String getBizObjectJson() {
return this.bizObjectJson;
}
public UpdateBizObjectRequest setSchemaCode(String schemaCode) {
this.schemaCode = schemaCode;
return this;
}
public String getSchemaCode() {
return this.schemaCode;
}
}