com.aliyun.sdk.service.dataphin_public20230630.models.GetUsersResponseBody 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 GetUsersResponseBody} extends {@link TeaModel}
*
* GetUsersResponseBody
*/
public class GetUsersResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private String code;
@com.aliyun.core.annotation.NameInMap("HttpStatusCode")
private Integer httpStatusCode;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Success")
private Boolean success;
@com.aliyun.core.annotation.NameInMap("UserList")
private java.util.List userList;
private GetUsersResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
this.userList = builder.userList;
}
public static Builder builder() {
return new Builder();
}
public static GetUsersResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @return userList
*/
public java.util.List getUserList() {
return this.userList;
}
public static final class Builder {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Boolean success;
private java.util.List userList;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* HttpStatusCode.
*/
public Builder httpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
/**
* UserList.
*/
public Builder userList(java.util.List userList) {
this.userList = userList;
return this;
}
public GetUsersResponseBody build() {
return new GetUsersResponseBody(this);
}
}
/**
*
* {@link GetUsersResponseBody} extends {@link TeaModel}
*
* GetUsersResponseBody
*/
public static class UserList extends TeaModel {
@com.aliyun.core.annotation.NameInMap("AccountName")
private String accountName;
@com.aliyun.core.annotation.NameInMap("DingNumber")
private String dingNumber;
@com.aliyun.core.annotation.NameInMap("DisplayName")
private String displayName;
@com.aliyun.core.annotation.NameInMap("DisplayNameWithoutStatus")
private String displayNameWithoutStatus;
@com.aliyun.core.annotation.NameInMap("EnableWhiteIp")
private String enableWhiteIp;
@com.aliyun.core.annotation.NameInMap("FeiShuRobot")
private String feiShuRobot;
@com.aliyun.core.annotation.NameInMap("GmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("GmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("Id")
private String id;
@com.aliyun.core.annotation.NameInMap("Mail")
private String mail;
@com.aliyun.core.annotation.NameInMap("MobilePhone")
private String mobilePhone;
@com.aliyun.core.annotation.NameInMap("Name")
private String name;
@com.aliyun.core.annotation.NameInMap("NickName")
private String nickName;
@com.aliyun.core.annotation.NameInMap("ParentId")
private String parentId;
@com.aliyun.core.annotation.NameInMap("RealName")
private String realName;
@com.aliyun.core.annotation.NameInMap("SourceId")
private String sourceId;
@com.aliyun.core.annotation.NameInMap("SourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("WeChatRobot")
private String weChatRobot;
@com.aliyun.core.annotation.NameInMap("WhiteIp")
private String whiteIp;
private UserList(Builder builder) {
this.accountName = builder.accountName;
this.dingNumber = builder.dingNumber;
this.displayName = builder.displayName;
this.displayNameWithoutStatus = builder.displayNameWithoutStatus;
this.enableWhiteIp = builder.enableWhiteIp;
this.feiShuRobot = builder.feiShuRobot;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.mail = builder.mail;
this.mobilePhone = builder.mobilePhone;
this.name = builder.name;
this.nickName = builder.nickName;
this.parentId = builder.parentId;
this.realName = builder.realName;
this.sourceId = builder.sourceId;
this.sourceType = builder.sourceType;
this.weChatRobot = builder.weChatRobot;
this.whiteIp = builder.whiteIp;
}
public static Builder builder() {
return new Builder();
}
public static UserList create() {
return builder().build();
}
/**
* @return accountName
*/
public String getAccountName() {
return this.accountName;
}
/**
* @return dingNumber
*/
public String getDingNumber() {
return this.dingNumber;
}
/**
* @return displayName
*/
public String getDisplayName() {
return this.displayName;
}
/**
* @return displayNameWithoutStatus
*/
public String getDisplayNameWithoutStatus() {
return this.displayNameWithoutStatus;
}
/**
* @return enableWhiteIp
*/
public String getEnableWhiteIp() {
return this.enableWhiteIp;
}
/**
* @return feiShuRobot
*/
public String getFeiShuRobot() {
return this.feiShuRobot;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public String getId() {
return this.id;
}
/**
* @return mail
*/
public String getMail() {
return this.mail;
}
/**
* @return mobilePhone
*/
public String getMobilePhone() {
return this.mobilePhone;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return nickName
*/
public String getNickName() {
return this.nickName;
}
/**
* @return parentId
*/
public String getParentId() {
return this.parentId;
}
/**
* @return realName
*/
public String getRealName() {
return this.realName;
}
/**
* @return sourceId
*/
public String getSourceId() {
return this.sourceId;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return weChatRobot
*/
public String getWeChatRobot() {
return this.weChatRobot;
}
/**
* @return whiteIp
*/
public String getWhiteIp() {
return this.whiteIp;
}
public static final class Builder {
private String accountName;
private String dingNumber;
private String displayName;
private String displayNameWithoutStatus;
private String enableWhiteIp;
private String feiShuRobot;
private Long gmtCreate;
private Long gmtModified;
private String id;
private String mail;
private String mobilePhone;
private String name;
private String nickName;
private String parentId;
private String realName;
private String sourceId;
private String sourceType;
private String weChatRobot;
private String whiteIp;
/**
* AccountName.
*/
public Builder accountName(String accountName) {
this.accountName = accountName;
return this;
}
/**
* DingNumber.
*/
public Builder dingNumber(String dingNumber) {
this.dingNumber = dingNumber;
return this;
}
/**
* DisplayName.
*/
public Builder displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* DisplayNameWithoutStatus.
*/
public Builder displayNameWithoutStatus(String displayNameWithoutStatus) {
this.displayNameWithoutStatus = displayNameWithoutStatus;
return this;
}
/**
* EnableWhiteIp.
*/
public Builder enableWhiteIp(String enableWhiteIp) {
this.enableWhiteIp = enableWhiteIp;
return this;
}
/**
* FeiShuRobot.
*/
public Builder feiShuRobot(String feiShuRobot) {
this.feiShuRobot = feiShuRobot;
return this;
}
/**
* GmtCreate.
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* Id.
*/
public Builder id(String id) {
this.id = id;
return this;
}
/**
* Mail.
*/
public Builder mail(String mail) {
this.mail = mail;
return this;
}
/**
* MobilePhone.
*/
public Builder mobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* NickName.
*/
public Builder nickName(String nickName) {
this.nickName = nickName;
return this;
}
/**
* ParentId.
*/
public Builder parentId(String parentId) {
this.parentId = parentId;
return this;
}
/**
* RealName.
*/
public Builder realName(String realName) {
this.realName = realName;
return this;
}
/**
* SourceId.
*/
public Builder sourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
/**
* SourceType.
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* WeChatRobot.
*/
public Builder weChatRobot(String weChatRobot) {
this.weChatRobot = weChatRobot;
return this;
}
/**
* WhiteIp.
*/
public Builder whiteIp(String whiteIp) {
this.whiteIp = whiteIp;
return this;
}
public UserList build() {
return new UserList(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy