com.aliyun.sdk.service.dataphin_public20230630.models.GetUsersRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dataphin_public20230630 Show documentation
Show all versions of alibabacloud-dataphin_public20230630 Show documentation
Alibaba Cloud dataphin-public (20230630) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dataphin_public20230630.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link GetUsersRequest} extends {@link RequestModel}
*
* GetUsersRequest
*/
public class GetUsersRequest extends Request {
@com.aliyun.core.annotation.Host
@com.aliyun.core.annotation.NameInMap("RegionId")
private String regionId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("OpTenantId")
@com.aliyun.core.annotation.Validation(required = true)
private Long opTenantId;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("UserIdList")
@com.aliyun.core.annotation.Validation(required = true)
private java.util.List userIdList;
private GetUsersRequest(Builder builder) {
super(builder);
this.regionId = builder.regionId;
this.opTenantId = builder.opTenantId;
this.userIdList = builder.userIdList;
}
public static Builder builder() {
return new Builder();
}
public static GetUsersRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return opTenantId
*/
public Long getOpTenantId() {
return this.opTenantId;
}
/**
* @return userIdList
*/
public java.util.List getUserIdList() {
return this.userIdList;
}
public static final class Builder extends Request.Builder {
private String regionId;
private Long opTenantId;
private java.util.List userIdList;
private Builder() {
super();
}
private Builder(GetUsersRequest request) {
super(request);
this.regionId = request.regionId;
this.opTenantId = request.opTenantId;
this.userIdList = request.userIdList;
}
/**
* RegionId.
*/
public Builder regionId(String regionId) {
this.putHostParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* This parameter is required.
*
* example:
* 30001011
*/
public Builder opTenantId(Long opTenantId) {
this.putQueryParameter("OpTenantId", opTenantId);
this.opTenantId = opTenantId;
return this;
}
/**
* This parameter is required.
*/
public Builder userIdList(java.util.List userIdList) {
String userIdListShrink = shrink(userIdList, "UserIdList", "json");
this.putBodyParameter("UserIdList", userIdListShrink);
this.userIdList = userIdList;
return this;
}
@Override
public GetUsersRequest build() {
return new GetUsersRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy