com.aliyun.sdk.service.dataphin_public20230630.models.GetDataDomainInfoResponseBody 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 GetDataDomainInfoResponseBody} extends {@link TeaModel}
*
* GetDataDomainInfoResponseBody
*/
public class GetDataDomainInfoResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private String code;
@com.aliyun.core.annotation.NameInMap("DataDomainInfo")
private DataDomainInfo dataDomainInfo;
@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;
private GetDataDomainInfoResponseBody(Builder builder) {
this.code = builder.code;
this.dataDomainInfo = builder.dataDomainInfo;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static GetDataDomainInfoResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDomainInfo
*/
public DataDomainInfo getDataDomainInfo() {
return this.dataDomainInfo;
}
/**
* @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;
}
public static final class Builder {
private String code;
private DataDomainInfo dataDomainInfo;
private Integer httpStatusCode;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* DataDomainInfo.
*/
public Builder dataDomainInfo(DataDomainInfo dataDomainInfo) {
this.dataDomainInfo = dataDomainInfo;
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;
}
public GetDataDomainInfoResponseBody build() {
return new GetDataDomainInfoResponseBody(this);
}
}
/**
*
* {@link GetDataDomainInfoResponseBody} extends {@link TeaModel}
*
* GetDataDomainInfoResponseBody
*/
public static class DataDomainInfo extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Abbreviation")
private String abbreviation;
@com.aliyun.core.annotation.NameInMap("BizUnitId")
private Long bizUnitId;
@com.aliyun.core.annotation.NameInMap("Description")
private String description;
@com.aliyun.core.annotation.NameInMap("DisplayName")
private String displayName;
@com.aliyun.core.annotation.NameInMap("GmtCreate")
private String gmtCreate;
@com.aliyun.core.annotation.NameInMap("GmtModified")
private String gmtModified;
@com.aliyun.core.annotation.NameInMap("Id")
private Long id;
@com.aliyun.core.annotation.NameInMap("LastModifier")
private String lastModifier;
@com.aliyun.core.annotation.NameInMap("LastModifierName")
private String lastModifierName;
@com.aliyun.core.annotation.NameInMap("Name")
private String name;
@com.aliyun.core.annotation.NameInMap("OwnerName")
private String ownerName;
@com.aliyun.core.annotation.NameInMap("OwnerUserId")
private String ownerUserId;
@com.aliyun.core.annotation.NameInMap("ParentId")
private Long parentId;
private DataDomainInfo(Builder builder) {
this.abbreviation = builder.abbreviation;
this.bizUnitId = builder.bizUnitId;
this.description = builder.description;
this.displayName = builder.displayName;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.lastModifier = builder.lastModifier;
this.lastModifierName = builder.lastModifierName;
this.name = builder.name;
this.ownerName = builder.ownerName;
this.ownerUserId = builder.ownerUserId;
this.parentId = builder.parentId;
}
public static Builder builder() {
return new Builder();
}
public static DataDomainInfo create() {
return builder().build();
}
/**
* @return abbreviation
*/
public String getAbbreviation() {
return this.abbreviation;
}
/**
* @return bizUnitId
*/
public Long getBizUnitId() {
return this.bizUnitId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayName
*/
public String getDisplayName() {
return this.displayName;
}
/**
* @return gmtCreate
*/
public String getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public String getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return lastModifier
*/
public String getLastModifier() {
return this.lastModifier;
}
/**
* @return lastModifierName
*/
public String getLastModifierName() {
return this.lastModifierName;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return ownerName
*/
public String getOwnerName() {
return this.ownerName;
}
/**
* @return ownerUserId
*/
public String getOwnerUserId() {
return this.ownerUserId;
}
/**
* @return parentId
*/
public Long getParentId() {
return this.parentId;
}
public static final class Builder {
private String abbreviation;
private Long bizUnitId;
private String description;
private String displayName;
private String gmtCreate;
private String gmtModified;
private Long id;
private String lastModifier;
private String lastModifierName;
private String name;
private String ownerName;
private String ownerUserId;
private Long parentId;
/**
* Abbreviation.
*/
public Builder abbreviation(String abbreviation) {
this.abbreviation = abbreviation;
return this;
}
/**
* BizUnitId.
*/
public Builder bizUnitId(Long bizUnitId) {
this.bizUnitId = bizUnitId;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* DisplayName.
*/
public Builder displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* GmtCreate.
*/
public Builder gmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* LastModifier.
*/
public Builder lastModifier(String lastModifier) {
this.lastModifier = lastModifier;
return this;
}
/**
* LastModifierName.
*/
public Builder lastModifierName(String lastModifierName) {
this.lastModifierName = lastModifierName;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* OwnerName.
*/
public Builder ownerName(String ownerName) {
this.ownerName = ownerName;
return this;
}
/**
* OwnerUserId.
*/
public Builder ownerUserId(String ownerUserId) {
this.ownerUserId = ownerUserId;
return this;
}
/**
* ParentId.
*/
public Builder parentId(Long parentId) {
this.parentId = parentId;
return this;
}
public DataDomainInfo build() {
return new DataDomainInfo(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy