com.aliyun.dingtalkyida_1_0.models.PageFormBaseInfosRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class PageFormBaseInfosRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_PBKT0MFBEBTDO8T7SLVP
*/
@NameInMap("appKey")
public String appKey;
@NameInMap("formTypeList")
public java.util.List formTypeList;
@NameInMap("language")
public String language;
/**
* This parameter is required.
*/
@NameInMap("pageIndex")
public Integer pageIndex;
/**
* This parameter is required.
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* This parameter is required.
*
* example:
* hexxx
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* david123
*/
@NameInMap("userId")
public String userId;
public static PageFormBaseInfosRequest build(java.util.Map map) throws Exception {
PageFormBaseInfosRequest self = new PageFormBaseInfosRequest();
return TeaModel.build(map, self);
}
public PageFormBaseInfosRequest setAppKey(String appKey) {
this.appKey = appKey;
return this;
}
public String getAppKey() {
return this.appKey;
}
public PageFormBaseInfosRequest setFormTypeList(java.util.List formTypeList) {
this.formTypeList = formTypeList;
return this;
}
public java.util.List getFormTypeList() {
return this.formTypeList;
}
public PageFormBaseInfosRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public PageFormBaseInfosRequest setPageIndex(Integer pageIndex) {
this.pageIndex = pageIndex;
return this;
}
public Integer getPageIndex() {
return this.pageIndex;
}
public PageFormBaseInfosRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public PageFormBaseInfosRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public PageFormBaseInfosRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}