All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkyida_1_0.models.PageFormBaseInfosRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // 应用编码
    @NameInMap("appKey")
    public String appKey;

    // 表单类型列表,可传"process", "receipt"
    @NameInMap("formTypeList")
    public java.util.List formTypeList;

    // 语言。可选值:zh_CN/en_US 默认:zh_CN
    @NameInMap("language")
    public String language;

    // 当前页码
    @NameInMap("pageIndex")
    public Integer pageIndex;

    // 每页数量,最大100
    @NameInMap("pageSize")
    public Integer pageSize;

    // 应用秘钥。在应用数据中获取。
    @NameInMap("systemToken")
    public String systemToken;

    // 钉钉userId
    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy