com.aliyun.dingtalkworkbench_1_0.models.GetPluginRuleCheckInfoResponseBody 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.dingtalkworkbench_1_0.models;
import com.aliyun.tea.*;
public class GetPluginRuleCheckInfoResponseBody extends TeaModel {
@NameInMap("packCode")
public String packCode;
@NameInMap("pluginRuleCheckDetail")
public String pluginRuleCheckDetail;
public static GetPluginRuleCheckInfoResponseBody build(java.util.Map map) throws Exception {
GetPluginRuleCheckInfoResponseBody self = new GetPluginRuleCheckInfoResponseBody();
return TeaModel.build(map, self);
}
public GetPluginRuleCheckInfoResponseBody setPackCode(String packCode) {
this.packCode = packCode;
return this;
}
public String getPackCode() {
return this.packCode;
}
public GetPluginRuleCheckInfoResponseBody setPluginRuleCheckDetail(String pluginRuleCheckDetail) {
this.pluginRuleCheckDetail = pluginRuleCheckDetail;
return this;
}
public String getPluginRuleCheckDetail() {
return this.pluginRuleCheckDetail;
}
}