com.aliyun.ice20201109.models.DeleteEditingProjectsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DeleteEditingProjectsRequest extends TeaModel {
@NameInMap("ProjectIds")
public String projectIds;
public static DeleteEditingProjectsRequest build(java.util.Map map) throws Exception {
DeleteEditingProjectsRequest self = new DeleteEditingProjectsRequest();
return TeaModel.build(map, self);
}
public DeleteEditingProjectsRequest setProjectIds(String projectIds) {
this.projectIds = projectIds;
return this;
}
public String getProjectIds() {
return this.projectIds;
}
}