All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.devs20230714.models.UpdateProjectRequest Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy