com.aliyun.dingtalkyida_1_0.models.DeleteSequenceRequest 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 DeleteSequenceRequest extends TeaModel {
@NameInMap("appType")
public String appType;
@NameInMap("language")
public String language;
@NameInMap("sequence")
public String sequence;
@NameInMap("systemToken")
public String systemToken;
@NameInMap("userId")
public String userId;
public static DeleteSequenceRequest build(java.util.Map map) throws Exception {
DeleteSequenceRequest self = new DeleteSequenceRequest();
return TeaModel.build(map, self);
}
public DeleteSequenceRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public DeleteSequenceRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public DeleteSequenceRequest setSequence(String sequence) {
this.sequence = sequence;
return this;
}
public String getSequence() {
return this.sequence;
}
public DeleteSequenceRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public DeleteSequenceRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}