com.aliyun.dingtalkexclusive_1_0.models.ListRulesShrinkRequest 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 ListRulesShrinkRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("body")
public String bodyShrink;
public static ListRulesShrinkRequest build(java.util.Map map) throws Exception {
ListRulesShrinkRequest self = new ListRulesShrinkRequest();
return TeaModel.build(map, self);
}
public ListRulesShrinkRequest setBodyShrink(String bodyShrink) {
this.bodyShrink = bodyShrink;
return this;
}
public String getBodyShrink() {
return this.bodyShrink;
}
}