com.aliyun.dingtalkexclusive_1_0.models.PublishRuleRequest 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 PublishRuleRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("status")
public Long status;
public static PublishRuleRequest build(java.util.Map map) throws Exception {
PublishRuleRequest self = new PublishRuleRequest();
return TeaModel.build(map, self);
}
public PublishRuleRequest setStatus(Long status) {
this.status = status;
return this;
}
public Long getStatus() {
return this.status;
}
}