com.antgroup.antchain.openapi.deps.models.DeleteConfigTemplatedraftRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class DeleteConfigTemplatedraftRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 要删除的应用参数模板 id
@NameInMap("tpl_id")
@Validation(required = true)
public String tplId;
public static DeleteConfigTemplatedraftRequest build(java.util.Map map) throws Exception {
DeleteConfigTemplatedraftRequest self = new DeleteConfigTemplatedraftRequest();
return TeaModel.build(map, self);
}
public DeleteConfigTemplatedraftRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public DeleteConfigTemplatedraftRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public DeleteConfigTemplatedraftRequest setTplId(String tplId) {
this.tplId = tplId;
return this;
}
public String getTplId() {
return this.tplId;
}
}