com.aliyun.cmn20200825.models.UpdateProjectProgressResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmn20200825 Show documentation
Show all versions of cmn20200825 Show documentation
Alibaba Cloud cmn (20200825) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cmn20200825.models;
import com.aliyun.tea.*;
public class UpdateProjectProgressResponseBody extends TeaModel {
// Id of the request
@NameInMap("RequestId")
public String requestId;
public static UpdateProjectProgressResponseBody build(java.util.Map map) throws Exception {
UpdateProjectProgressResponseBody self = new UpdateProjectProgressResponseBody();
return TeaModel.build(map, self);
}
public UpdateProjectProgressResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}