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

com.aliyun.dingtalkexclusive_1_0.models.FileStorageUpdateStorageResponseBody 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class FileStorageUpdateStorageResponseBody extends TeaModel {
    // 密匙ID
    @NameInMap("accessKeyId")
    public String accessKeyId;

    // OSS链接
    @NameInMap("oss")
    public String oss;

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

    public FileStorageUpdateStorageResponseBody setAccessKeyId(String accessKeyId) {
        this.accessKeyId = accessKeyId;
        return this;
    }
    public String getAccessKeyId() {
        return this.accessKeyId;
    }

    public FileStorageUpdateStorageResponseBody setOss(String oss) {
        this.oss = oss;
        return this;
    }
    public String getOss() {
        return this.oss;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy