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

com.aliyun.dingtalkmicro_app_1_0.models.GetApaasAppResponseBody 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 GetApaasAppResponseBody extends TeaModel {
    // 钉钉侧应用id
    @NameInMap("agentId")
    public Long agentId;

    // ISV侧应用id
    @NameInMap("bizAppId")
    public String bizAppId;

    // 发布状态
    @NameInMap("publishStatus")
    public String publishStatus;

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

    public GetApaasAppResponseBody setAgentId(Long agentId) {
        this.agentId = agentId;
        return this;
    }
    public Long getAgentId() {
        return this.agentId;
    }

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

    public GetApaasAppResponseBody setPublishStatus(String publishStatus) {
        this.publishStatus = publishStatus;
        return this;
    }
    public String getPublishStatus() {
        return this.publishStatus;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy