com.aliyun.dingtalkh3yun_1_0.models.LoadBizObjectRequest 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 LoadBizObjectRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 193f9efea-e27b-427d-bd13-e3be65e00ef9
*/
@NameInMap("bizObjectId")
public String bizObjectId;
/**
* This parameter is required.
*
* example:
* D0001839bbbbe346bbf496498bb76c44c7eb972
*/
@NameInMap("schemaCode")
public String schemaCode;
public static LoadBizObjectRequest build(java.util.Map map) throws Exception {
LoadBizObjectRequest self = new LoadBizObjectRequest();
return TeaModel.build(map, self);
}
public LoadBizObjectRequest setBizObjectId(String bizObjectId) {
this.bizObjectId = bizObjectId;
return this;
}
public String getBizObjectId() {
return this.bizObjectId;
}
public LoadBizObjectRequest setSchemaCode(String schemaCode) {
this.schemaCode = schemaCode;
return this;
}
public String getSchemaCode() {
return this.schemaCode;
}
}