com.aliyun.dingtalkdiot_1_0.models.BindSystemResponseBody 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.dingtalkdiot_1_0.models;
import com.aliyun.tea.*;
public class BindSystemResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* d12345
*/
@NameInMap("clientId")
public String clientId;
/**
* This parameter is required.
*
* example:
* ding12345
*/
@NameInMap("corpId")
public String corpId;
public static BindSystemResponseBody build(java.util.Map map) throws Exception {
BindSystemResponseBody self = new BindSystemResponseBody();
return TeaModel.build(map, self);
}
public BindSystemResponseBody setClientId(String clientId) {
this.clientId = clientId;
return this;
}
public String getClientId() {
return this.clientId;
}
public BindSystemResponseBody setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
}