com.aliyun.ice20201109.models.AddEditingProjectMaterialsRequest 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 AddEditingProjectMaterialsRequest extends TeaModel {
@NameInMap("MaterialMaps")
public String materialMaps;
@NameInMap("ProjectId")
public String projectId;
public static AddEditingProjectMaterialsRequest build(java.util.Map map) throws Exception {
AddEditingProjectMaterialsRequest self = new AddEditingProjectMaterialsRequest();
return TeaModel.build(map, self);
}
public AddEditingProjectMaterialsRequest setMaterialMaps(String materialMaps) {
this.materialMaps = materialMaps;
return this;
}
public String getMaterialMaps() {
return this.materialMaps;
}
public AddEditingProjectMaterialsRequest setProjectId(String projectId) {
this.projectId = projectId;
return this;
}
public String getProjectId() {
return this.projectId;
}
}