com.aliyun.dingtalkyida_1_0.models.UpdateStatusRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class UpdateStatusRequest extends TeaModel {
@NameInMap("appType")
public String appType;
@NameInMap("errorLines")
public java.util.List errorLines;
@NameInMap("importSequence")
public String importSequence;
@NameInMap("language")
public String language;
@NameInMap("status")
public String status;
@NameInMap("systemToken")
public String systemToken;
@NameInMap("userId")
public String userId;
public static UpdateStatusRequest build(java.util.Map map) throws Exception {
UpdateStatusRequest self = new UpdateStatusRequest();
return TeaModel.build(map, self);
}
public UpdateStatusRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public UpdateStatusRequest setErrorLines(java.util.List errorLines) {
this.errorLines = errorLines;
return this;
}
public java.util.List getErrorLines() {
return this.errorLines;
}
public UpdateStatusRequest setImportSequence(String importSequence) {
this.importSequence = importSequence;
return this;
}
public String getImportSequence() {
return this.importSequence;
}
public UpdateStatusRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public UpdateStatusRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public UpdateStatusRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public UpdateStatusRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}