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

com.antgroup.antchain.openapi.bot.models.DeploySceneRequest Maven / Gradle / Ivy

There is a newer version: 1.11.48
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;

import com.aliyun.tea.*;

public class DeploySceneRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 场景名称
    @NameInMap("scene_name")
    @Validation(required = true)
    public String sceneName;

    // bnaas did
    @NameInMap("bnaas_basic_service_did")
    public String bnaasBasicServiceDid;

    // baas rest bizId
    @NameInMap("baas_rest_biz_id")
    public String baasRestBizId;

    // 合约版本号
    @NameInMap("contract_version")
    public String contractVersion;

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

    public DeploySceneRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public DeploySceneRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

    public DeploySceneRequest setSceneName(String sceneName) {
        this.sceneName = sceneName;
        return this;
    }
    public String getSceneName() {
        return this.sceneName;
    }

    public DeploySceneRequest setBnaasBasicServiceDid(String bnaasBasicServiceDid) {
        this.bnaasBasicServiceDid = bnaasBasicServiceDid;
        return this;
    }
    public String getBnaasBasicServiceDid() {
        return this.bnaasBasicServiceDid;
    }

    public DeploySceneRequest setBaasRestBizId(String baasRestBizId) {
        this.baasRestBizId = baasRestBizId;
        return this;
    }
    public String getBaasRestBizId() {
        return this.baasRestBizId;
    }

    public DeploySceneRequest setContractVersion(String contractVersion) {
        this.contractVersion = contractVersion;
        return this;
    }
    public String getContractVersion() {
        return this.contractVersion;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy