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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class FileStorageUpdateStorageRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

sampleKeyId1234

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

This parameter is required.

* * example: *

sampleSecretId1234

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

This parameter is required.

* * example: *

dingxxxxxxxxxxxx

*/ @NameInMap("targetCorpId") public String targetCorpId; public static FileStorageUpdateStorageRequest build(java.util.Map map) throws Exception { FileStorageUpdateStorageRequest self = new FileStorageUpdateStorageRequest(); return TeaModel.build(map, self); } public FileStorageUpdateStorageRequest setAccessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } public String getAccessKeyId() { return this.accessKeyId; } public FileStorageUpdateStorageRequest setAccessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } public String getAccessKeySecret() { return this.accessKeySecret; } public FileStorageUpdateStorageRequest setTargetCorpId(String targetCorpId) { this.targetCorpId = targetCorpId; return this; } public String getTargetCorpId() { return this.targetCorpId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy