com.aliyun.dingtalkflashmsg_1_0.models.QueryPluginRuleRequest 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.dingtalkflashmsg_1_0.models;
import com.aliyun.tea.*;
public class QueryPluginRuleRequest extends TeaModel {
/**
* example:
* group_chat
*/
@NameInMap("chatType")
public String chatType;
/**
* example:
* -10050
*/
@NameInMap("code")
public String code;
/**
* example:
* 100
*/
@NameInMap("itemId")
public String itemId;
/**
* example:
* group
*/
@NameInMap("itemType")
public String itemType;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("pageSize")
public Integer pageSize;
public static QueryPluginRuleRequest build(java.util.Map map) throws Exception {
QueryPluginRuleRequest self = new QueryPluginRuleRequest();
return TeaModel.build(map, self);
}
public QueryPluginRuleRequest setChatType(String chatType) {
this.chatType = chatType;
return this;
}
public String getChatType() {
return this.chatType;
}
public QueryPluginRuleRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryPluginRuleRequest setItemId(String itemId) {
this.itemId = itemId;
return this;
}
public String getItemId() {
return this.itemId;
}
public QueryPluginRuleRequest setItemType(String itemType) {
this.itemType = itemType;
return this;
}
public String getItemType() {
return this.itemType;
}
public QueryPluginRuleRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public QueryPluginRuleRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}