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

com.aliyun.dingtalkesign_2_0.models.GetFileUploadUrlResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkesign_2_0.models;

import com.aliyun.tea.*;

public class GetFileUploadUrlResponseBody extends TeaModel {
    @NameInMap("fileId")
    public String fileId;

    @NameInMap("uploadUrl")
    public String uploadUrl;

    public static GetFileUploadUrlResponseBody build(java.util.Map map) throws Exception {
        GetFileUploadUrlResponseBody self = new GetFileUploadUrlResponseBody();
        return TeaModel.build(map, self);
    }

    public GetFileUploadUrlResponseBody setFileId(String fileId) {
        this.fileId = fileId;
        return this;
    }
    public String getFileId() {
        return this.fileId;
    }

    public GetFileUploadUrlResponseBody setUploadUrl(String uploadUrl) {
        this.uploadUrl = uploadUrl;
        return this;
    }
    public String getUploadUrl() {
        return this.uploadUrl;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy