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

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

    @NameInMap("miniAppId")
    public String miniAppId;

    @NameInMap("version")
    public String version;

    @NameInMap("versionType")
    public Integer versionType;

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

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

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

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

    public UpdateVersionStatusRequest setVersionType(Integer versionType) {
        this.versionType = versionType;
        return this;
    }
    public Integer getVersionType() {
        return this.versionType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy