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

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

    @NameInMap("miniAppId")
    public String miniAppId;

    @NameInMap("version")
    public String version;

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy