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

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

There is a newer version: 2.1.67
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 SaveAcrossCloudStroageConfigsResponseBody extends TeaModel {
    /**
     * example:
     * 

sampleKeyId1234

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

This parameter is required.

* * example: *

https://oss-cn-test.aliyuncs.com

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

This parameter is required.

* * example: *

0

*/ @NameInMap("state") public Integer state; public static SaveAcrossCloudStroageConfigsResponseBody build(java.util.Map map) throws Exception { SaveAcrossCloudStroageConfigsResponseBody self = new SaveAcrossCloudStroageConfigsResponseBody(); return TeaModel.build(map, self); } public SaveAcrossCloudStroageConfigsResponseBody setAccessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } public String getAccessKeyId() { return this.accessKeyId; } public SaveAcrossCloudStroageConfigsResponseBody setEndpoint(String endpoint) { this.endpoint = endpoint; return this; } public String getEndpoint() { return this.endpoint; } public SaveAcrossCloudStroageConfigsResponseBody setState(Integer state) { this.state = state; return this; } public Integer getState() { return this.state; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy