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

com.antgroup.antchain.openapi.deps.models.BatchcreateConfigAppRequest 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 BatchcreateConfigAppRequest extends TeaModel {
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("tenant")
    public String tenant;

    // 要创建的应用参数列表
    @NameInMap("items")
    @Validation(required = true)
    public java.util.List items;

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

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

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

    public BatchcreateConfigAppRequest setItems(java.util.List items) {
        this.items = items;
        return this;
    }
    public java.util.List getItems() {
        return this.items;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy