All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkats_1_0.models.GetFileUploadInfoRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy