
com.huaweicloud.sdk.meeting.v1.model.AddMaterialRequestBody Maven / Gradle / Ivy
package com.huaweicloud.sdk.meeting.v1.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.http.FormDataFilePart;
import com.huaweicloud.sdk.core.http.FormDataPart;
import com.huaweicloud.sdk.core.http.SdkFormDataBody;
import java.io.InputStream;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
/** AddMaterialRequestBody */
public class AddMaterialRequestBody implements SdkFormDataBody {
@JsonProperty(value = "file", access = JsonProperty.Access.WRITE_ONLY)
private FormDataFilePart file;
public AddMaterialRequestBody withFile(FormDataFilePart file) {
this.file = file;
return this;
}
/** 素材文件 - 只能上传jpg/jpeg/png格式文件,分辨率比率16:9,最大分辨率为3840*2160(推荐) - 请先命名完图片名称再上传
*
* @return file */
public FormDataFilePart getFile() {
return file;
}
public void setFile(FormDataFilePart file) {
this.file = file;
}
public AddMaterialRequestBody withFile(InputStream inputStream, String fileName, String contentType) {
this.file = new FormDataFilePart(inputStream, fileName).withContentType(contentType);
return this;
}
public AddMaterialRequestBody withFile(InputStream inputStream, String fileName) {
this.file = new FormDataFilePart(inputStream, fileName);
return this;
}
public AddMaterialRequestBody withFile(InputStream inputStream, String fileName, Map headers) {
this.file = new FormDataFilePart(inputStream, fileName).withHeaders(headers);
return this;
}
@Override
public Map buildFormData() {
return new LinkedHashMap() {
{
put("file", file);
}
};
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AddMaterialRequestBody addMaterialRequestBody = (AddMaterialRequestBody) o;
return Objects.equals(this.file, addMaterialRequestBody.file);
}
@Override
public int hashCode() {
return Objects.hash(file);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AddMaterialRequestBody {\n");
sb.append(" file: ").append(toIndentedString("[resource:will-not-print]")).append("\n");
sb.append("}");
return sb.toString();
}
/** Convert the given object to string with each line indented by 4 spaces (except the first line). */
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy