com.aliyun.dingtalkhrbrain_1_0.models.SyncDataRequest 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.dingtalkhrbrain_1_0.models;
import com.aliyun.tea.*;
public class SyncDataRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("content")
public String content;
/**
* This parameter is required.
*/
@NameInMap("dataId")
public String dataId;
/**
* This parameter is required.
*/
@NameInMap("etlTime")
public String etlTime;
/**
* This parameter is required.
*/
@NameInMap("projectId")
public String projectId;
/**
* This parameter is required.
*/
@NameInMap("schemaId")
public String schemaId;
public static SyncDataRequest build(java.util.Map map) throws Exception {
SyncDataRequest self = new SyncDataRequest();
return TeaModel.build(map, self);
}
public SyncDataRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public SyncDataRequest setDataId(String dataId) {
this.dataId = dataId;
return this;
}
public String getDataId() {
return this.dataId;
}
public SyncDataRequest setEtlTime(String etlTime) {
this.etlTime = etlTime;
return this;
}
public String getEtlTime() {
return this.etlTime;
}
public SyncDataRequest setProjectId(String projectId) {
this.projectId = projectId;
return this;
}
public String getProjectId() {
return this.projectId;
}
public SyncDataRequest setSchemaId(String schemaId) {
this.schemaId = schemaId;
return this;
}
public String getSchemaId() {
return this.schemaId;
}
}