com.aliyun.dingtalkyida_1_0.models.DeleteInstanceRequest 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 DeleteInstanceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_PBKT0MFBEBTDO8T7SLVP
*/
@NameInMap("appType")
public String appType;
/**
* example:
* zh_CN
*/
@NameInMap("language")
public String language;
/**
* This parameter is required.
*
* example:
* f30233fb-72e1-4af4-8cb8-c7e0ea9ee530
*/
@NameInMap("processInstanceId")
public String processInstanceId;
/**
* This parameter is required.
*
* example:
* hexxxx
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* 未知
*/
@NameInMap("userId")
public String userId;
public static DeleteInstanceRequest build(java.util.Map map) throws Exception {
DeleteInstanceRequest self = new DeleteInstanceRequest();
return TeaModel.build(map, self);
}
public DeleteInstanceRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public DeleteInstanceRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public DeleteInstanceRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public DeleteInstanceRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public DeleteInstanceRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}