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

com.aliyun.dingtalkyida_1_0.models.DeployFunctionCallbackRequest 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.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class DeployFunctionCallbackRequest extends TeaModel {
    // 云应用id
    @NameInMap("appId")
    public String appId;

    // 自定义域名
    @NameInMap("customDomain")
    public String customDomain;

    // 部署阶段
    @NameInMap("deployStage")
    public String deployStage;

    // api网关实例的AppKey
    @NameInMap("gateWayAppKey")
    public String gateWayAppKey;

    // api网关实例的APPSecret
    @NameInMap("gateWayAppSecret")
    public String gateWayAppSecret;

    // api网关二级域名
    @NameInMap("gateWayDomain")
    public String gateWayDomain;

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

    public DeployFunctionCallbackRequest setAppId(String appId) {
        this.appId = appId;
        return this;
    }
    public String getAppId() {
        return this.appId;
    }

    public DeployFunctionCallbackRequest setCustomDomain(String customDomain) {
        this.customDomain = customDomain;
        return this;
    }
    public String getCustomDomain() {
        return this.customDomain;
    }

    public DeployFunctionCallbackRequest setDeployStage(String deployStage) {
        this.deployStage = deployStage;
        return this;
    }
    public String getDeployStage() {
        return this.deployStage;
    }

    public DeployFunctionCallbackRequest setGateWayAppKey(String gateWayAppKey) {
        this.gateWayAppKey = gateWayAppKey;
        return this;
    }
    public String getGateWayAppKey() {
        return this.gateWayAppKey;
    }

    public DeployFunctionCallbackRequest setGateWayAppSecret(String gateWayAppSecret) {
        this.gateWayAppSecret = gateWayAppSecret;
        return this;
    }
    public String getGateWayAppSecret() {
        return this.gateWayAppSecret;
    }

    public DeployFunctionCallbackRequest setGateWayDomain(String gateWayDomain) {
        this.gateWayDomain = gateWayDomain;
        return this;
    }
    public String getGateWayDomain() {
        return this.gateWayDomain;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy