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

com.antgroup.antchain.openapi.deps.models.DeleteConfigTemplatedraftRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DeleteConfigTemplatedraftRequest extends TeaModel {
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("tenant")
    public String tenant;

    // 要删除的应用参数模板 id
    @NameInMap("tpl_id")
    @Validation(required = true)
    public String tplId;

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

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

    public DeleteConfigTemplatedraftRequest setTenant(String tenant) {
        this.tenant = tenant;
        return this;
    }
    public String getTenant() {
        return this.tenant;
    }

    public DeleteConfigTemplatedraftRequest setTplId(String tplId) {
        this.tplId = tplId;
        return this;
    }
    public String getTplId() {
        return this.tplId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy