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

com.aliyun.dingtalkexclusive_1_0.models.UpdateStorageModeRequest Maven / Gradle / Ivy

There is a newer version: 2.1.50
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 UpdateStorageModeRequest extends TeaModel {
    // 专属文件跨云存储类型 0:公有模式,1:私有模式,注意,如不更新,则不填写这个字段,字段一旦有值,都会触发原有配置的删除
    @NameInMap("fileStorageMode")
    public String fileStorageMode;

    // 企业id
    @NameInMap("targetCorpId")
    public String targetCorpId;

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

    public UpdateStorageModeRequest setFileStorageMode(String fileStorageMode) {
        this.fileStorageMode = fileStorageMode;
        return this;
    }
    public String getFileStorageMode() {
        return this.fileStorageMode;
    }

    public UpdateStorageModeRequest setTargetCorpId(String targetCorpId) {
        this.targetCorpId = targetCorpId;
        return this;
    }
    public String getTargetCorpId() {
        return this.targetCorpId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy