
com.aliyun.ice20201109.models.GetEditingProjectMaterialsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class GetEditingProjectMaterialsRequest extends TeaModel {
/**
* The ID of the online editing project.
* This parameter is required.
*
* example:
* fb2101cb318
*/
@NameInMap("ProjectId")
public String projectId;
public static GetEditingProjectMaterialsRequest build(java.util.Map map) throws Exception {
GetEditingProjectMaterialsRequest self = new GetEditingProjectMaterialsRequest();
return TeaModel.build(map, self);
}
public GetEditingProjectMaterialsRequest setProjectId(String projectId) {
this.projectId = projectId;
return this;
}
public String getProjectId() {
return this.projectId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy