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

com.aliyun.dingtalkmicro_app_1_0.models.UpdateApaasAppRequest 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.dingtalkmicro_app_1_0.models;

import com.aliyun.tea.*;

public class UpdateApaasAppRequest extends TeaModel {
    @NameInMap("appIcon")
    public String appIcon;

    @NameInMap("appName")
    public String appName;

    @NameInMap("appStatus")
    public Integer appStatus;

    @NameInMap("bizAppId")
    public String bizAppId;

    @NameInMap("opUserId")
    public String opUserId;

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

    public UpdateApaasAppRequest setAppIcon(String appIcon) {
        this.appIcon = appIcon;
        return this;
    }
    public String getAppIcon() {
        return this.appIcon;
    }

    public UpdateApaasAppRequest setAppName(String appName) {
        this.appName = appName;
        return this;
    }
    public String getAppName() {
        return this.appName;
    }

    public UpdateApaasAppRequest setAppStatus(Integer appStatus) {
        this.appStatus = appStatus;
        return this;
    }
    public Integer getAppStatus() {
        return this.appStatus;
    }

    public UpdateApaasAppRequest setBizAppId(String bizAppId) {
        this.bizAppId = bizAppId;
        return this;
    }
    public String getBizAppId() {
        return this.bizAppId;
    }

    public UpdateApaasAppRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy