com.aliyun.dingtalkyida_1_0.models.GetDbConfigRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class GetDbConfigRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_XCE0EVXS6DYG3YDYC5RD
*/
@NameInMap("appType")
public String appType;
/**
* This parameter is required.
*
* example:
* ding5d17e3add038d44535c2f4657eb6378e
*/
@NameInMap("corpId")
public String corpId;
/**
* This parameter is required.
*
* example:
* 09866181UTZVVD4R3DC955FNKIM52HVPU5WWK7
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* 1160440651754805
*/
@NameInMap("userId")
public String userId;
public static GetDbConfigRequest build(java.util.Map map) throws Exception {
GetDbConfigRequest self = new GetDbConfigRequest();
return TeaModel.build(map, self);
}
public GetDbConfigRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetDbConfigRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetDbConfigRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public GetDbConfigRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}