com.aliyun.dingtalkwatt_1_0.models.ConsumePointShrinkRequest 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.dingtalkwatt_1_0.models;
import com.aliyun.tea.*;
public class ConsumePointShrinkRequest extends TeaModel {
@NameInMap("body")
public String bodyShrink;
public static ConsumePointShrinkRequest build(java.util.Map map) throws Exception {
ConsumePointShrinkRequest self = new ConsumePointShrinkRequest();
return TeaModel.build(map, self);
}
public ConsumePointShrinkRequest setBodyShrink(String bodyShrink) {
this.bodyShrink = bodyShrink;
return this;
}
public String getBodyShrink() {
return this.bodyShrink;
}
}