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