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

com.aliyun.dingtalkminiapp_1_0.models.QueryHtmlBundleBuildRequest 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 QueryHtmlBundleBuildRequest extends TeaModel {
    // bundleId
    @NameInMap("bundleId")
    public String bundleId;

    // miniAppId
    @NameInMap("miniAppId")
    public String miniAppId;

    // version
    @NameInMap("version")
    public String version;

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

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

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

    public QueryHtmlBundleBuildRequest setVersion(String version) {
        this.version = version;
        return this;
    }
    public String getVersion() {
        return this.version;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy