com.aliyun.dingtalkexclusive_1_0.models.ListRulesResponseBody 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 ListRulesResponseBody extends TeaModel {
@NameInMap("detailModelList")
public java.util.List> detailModelList;
public static ListRulesResponseBody build(java.util.Map map) throws Exception {
ListRulesResponseBody self = new ListRulesResponseBody();
return TeaModel.build(map, self);
}
public ListRulesResponseBody setDetailModelList(java.util.List> detailModelList) {
this.detailModelList = detailModelList;
return this;
}
public java.util.List> getDetailModelList() {
return this.detailModelList;
}
}