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

com.aliyun.dingtalkesign_1_0.models.GetUploadUrlRequest 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.dingtalkesign_1_0.models;

import com.aliyun.tea.*;

public class GetUploadUrlRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("contentMd5") public String contentMd5; /** *

This parameter is required.

*/ @NameInMap("contentType") public String contentType; /** *

This parameter is required.

*/ @NameInMap("convert2Pdf") public Boolean convert2Pdf; /** *

This parameter is required.

*/ @NameInMap("fileName") public String fileName; /** *

This parameter is required.

*/ @NameInMap("fileSize") public Long fileSize; public static GetUploadUrlRequest build(java.util.Map map) throws Exception { GetUploadUrlRequest self = new GetUploadUrlRequest(); return TeaModel.build(map, self); } public GetUploadUrlRequest setContentMd5(String contentMd5) { this.contentMd5 = contentMd5; return this; } public String getContentMd5() { return this.contentMd5; } public GetUploadUrlRequest setContentType(String contentType) { this.contentType = contentType; return this; } public String getContentType() { return this.contentType; } public GetUploadUrlRequest setConvert2Pdf(Boolean convert2Pdf) { this.convert2Pdf = convert2Pdf; return this; } public Boolean getConvert2Pdf() { return this.convert2Pdf; } public GetUploadUrlRequest setFileName(String fileName) { this.fileName = fileName; return this; } public String getFileName() { return this.fileName; } public GetUploadUrlRequest setFileSize(Long fileSize) { this.fileSize = fileSize; return this; } public Long getFileSize() { return this.fileSize; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy