com.aliyun.dingtalkats_1_0.models.GetFileUploadInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkats_1_0.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoRequest extends TeaModel {
/**
* example:
* ddats
*/
@NameInMap("bizCode")
public String bizCode;
/**
* This parameter is required.
*
* example:
* 张三的简历
*/
@NameInMap("fileName")
public String fileName;
/**
* This parameter is required.
*
* example:
* 1024
*/
@NameInMap("fileSize")
public Long fileSize;
/**
* This parameter is required.
*
* example:
* xxx
*/
@NameInMap("md5")
public String md5;
/**
* example:
* manager5875
*/
@NameInMap("opUserId")
public String opUserId;
public static GetFileUploadInfoRequest build(java.util.Map map) throws Exception {
GetFileUploadInfoRequest self = new GetFileUploadInfoRequest();
return TeaModel.build(map, self);
}
public GetFileUploadInfoRequest setBizCode(String bizCode) {
this.bizCode = bizCode;
return this;
}
public String getBizCode() {
return this.bizCode;
}
public GetFileUploadInfoRequest setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public GetFileUploadInfoRequest setFileSize(Long fileSize) {
this.fileSize = fileSize;
return this;
}
public Long getFileSize() {
return this.fileSize;
}
public GetFileUploadInfoRequest setMd5(String md5) {
this.md5 = md5;
return this;
}
public String getMd5() {
return this.md5;
}
public GetFileUploadInfoRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
}