com.aliyun.dingtalkexclusive_1_0.models.UpdateStorageModeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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 {
/**
* example:
* 0
*/
@NameInMap("fileStorageMode")
public String fileStorageMode;
/**
* This parameter is required.
*
* example:
* dingxxxxxxxxxxxx
*/
@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;
}
}