com.aliyun.devs20230714.models.UpdateProjectRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devs20230714 Show documentation
Show all versions of devs20230714 Show documentation
Alibaba Cloud Devs (20230714) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.devs20230714.models;
import com.aliyun.tea.*;
public class UpdateProjectRequest extends TeaModel {
@NameInMap("body")
public Project body;
@NameInMap("force")
public Boolean force;
public static UpdateProjectRequest build(java.util.Map map) throws Exception {
UpdateProjectRequest self = new UpdateProjectRequest();
return TeaModel.build(map, self);
}
public UpdateProjectRequest setBody(Project body) {
this.body = body;
return this;
}
public Project getBody() {
return this.body;
}
public UpdateProjectRequest setForce(Boolean force) {
this.force = force;
return this;
}
public Boolean getForce() {
return this.force;
}
}