com.aliyuncs.quickbi_public.model.v20220101.QueryWorksResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-quickbi-public Show documentation
Show all versions of aliyun-java-sdk-quickbi-public Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.quickbi_public.model.v20220101;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.quickbi_public.transform.v20220101.QueryWorksResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryWorksResponse extends AcsResponse {
private Boolean success;
private String requestId;
private Result result;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Result getResult() {
return this.result;
}
public void setResult(Result result) {
this.result = result;
}
public static class Result {
private String worksId;
private String workType;
private String workName;
private String workspaceId;
private String workspaceName;
private String securityLevel;
private Integer auth3rdFlag;
private String description;
private String ownerId;
private String ownerName;
private String modifyName;
private String gmtCreate;
private String gmtModify;
private Integer status;
private Directory directory;
public String getWorksId() {
return this.worksId;
}
public void setWorksId(String worksId) {
this.worksId = worksId;
}
public String getWorkType() {
return this.workType;
}
public void setWorkType(String workType) {
this.workType = workType;
}
public String getWorkName() {
return this.workName;
}
public void setWorkName(String workName) {
this.workName = workName;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public void setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
}
public String getWorkspaceName() {
return this.workspaceName;
}
public void setWorkspaceName(String workspaceName) {
this.workspaceName = workspaceName;
}
public String getSecurityLevel() {
return this.securityLevel;
}
public void setSecurityLevel(String securityLevel) {
this.securityLevel = securityLevel;
}
public Integer getAuth3rdFlag() {
return this.auth3rdFlag;
}
public void setAuth3rdFlag(Integer auth3rdFlag) {
this.auth3rdFlag = auth3rdFlag;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getOwnerId() {
return this.ownerId;
}
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
public String getOwnerName() {
return this.ownerName;
}
public void setOwnerName(String ownerName) {
this.ownerName = ownerName;
}
public String getModifyName() {
return this.modifyName;
}
public void setModifyName(String modifyName) {
this.modifyName = modifyName;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getGmtModify() {
return this.gmtModify;
}
public void setGmtModify(String gmtModify) {
this.gmtModify = gmtModify;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Directory getDirectory() {
return this.directory;
}
public void setDirectory(Directory directory) {
this.directory = directory;
}
public static class Directory {
private String id;
private String name;
private String pathId;
private String pathName;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPathId() {
return this.pathId;
}
public void setPathId(String pathId) {
this.pathId = pathId;
}
public String getPathName() {
return this.pathName;
}
public void setPathName(String pathName) {
this.pathName = pathName;
}
}
}
@Override
public QueryWorksResponse getInstance(UnmarshallerContext context) {
return QueryWorksResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy