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

com.aliyun.dingtalkminiapp_1_0.models.ListAvaiableVersionRequest 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.dingtalkminiapp_1_0.models;

import com.aliyun.tea.*;

public class ListAvaiableVersionRequest extends TeaModel {
    @NameInMap("bundleId")
    public String bundleId;

    @NameInMap("miniAppId")
    public String miniAppId;

    @NameInMap("pageNum")
    public Integer pageNum;

    @NameInMap("pageSize")
    public Integer pageSize;

    @NameInMap("versionTypeSet")
    public java.util.List versionTypeSet;

    public static ListAvaiableVersionRequest build(java.util.Map map) throws Exception {
        ListAvaiableVersionRequest self = new ListAvaiableVersionRequest();
        return TeaModel.build(map, self);
    }

    public ListAvaiableVersionRequest setBundleId(String bundleId) {
        this.bundleId = bundleId;
        return this;
    }
    public String getBundleId() {
        return this.bundleId;
    }

    public ListAvaiableVersionRequest setMiniAppId(String miniAppId) {
        this.miniAppId = miniAppId;
        return this;
    }
    public String getMiniAppId() {
        return this.miniAppId;
    }

    public ListAvaiableVersionRequest setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
        return this;
    }
    public Integer getPageNum() {
        return this.pageNum;
    }

    public ListAvaiableVersionRequest setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Integer getPageSize() {
        return this.pageSize;
    }

    public ListAvaiableVersionRequest setVersionTypeSet(java.util.List versionTypeSet) {
        this.versionTypeSet = versionTypeSet;
        return this;
    }
    public java.util.List getVersionTypeSet() {
        return this.versionTypeSet;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy