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

com.antgroup.antchain.openapi.baasdt.models.BatchqueryIpAccountRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.baasdt.models;

import com.aliyun.tea.*;

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

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 基础参数
    // 
    @NameInMap("base_request")
    @Validation(required = true)
    public BaseRequestInfo baseRequest;

    // 账户Id列表(单次不能超过50个)
    @NameInMap("account_ids")
    @Validation(required = true)
    public java.util.List accountIds;

    // 渠道名称
    @NameInMap("channel_name")
    public String channelName;

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

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

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

    public BatchqueryIpAccountRequest setBaseRequest(BaseRequestInfo baseRequest) {
        this.baseRequest = baseRequest;
        return this;
    }
    public BaseRequestInfo getBaseRequest() {
        return this.baseRequest;
    }

    public BatchqueryIpAccountRequest setAccountIds(java.util.List accountIds) {
        this.accountIds = accountIds;
        return this;
    }
    public java.util.List getAccountIds() {
        return this.accountIds;
    }

    public BatchqueryIpAccountRequest setChannelName(String channelName) {
        this.channelName = channelName;
        return this;
    }
    public String getChannelName() {
        return this.channelName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy