com.aliyuncs.drcloud.model.v20170824.GetKnowledgeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-drcloud Show documentation
Show all versions of aliyun-java-sdk-drcloud Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.drcloud.model.v20170824;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.drcloud.transform.v20170824.GetKnowledgeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetKnowledgeResponse extends AcsResponse {
private Data data;
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String knowledgeId;
private String name;
private String answer;
private Long categoryId;
private String categoryPath;
private String link;
private Integer rank;
private Boolean isHotknowledge;
private String startTime;
private String endTime;
private Long creatorId;
private Long modifierId;
private String gmtCreate;
private String gmtModified;
public String getKnowledgeId() {
return this.knowledgeId;
}
public void setKnowledgeId(String knowledgeId) {
this.knowledgeId = knowledgeId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getAnswer() {
return this.answer;
}
public void setAnswer(String answer) {
this.answer = answer;
}
public Long getCategoryId() {
return this.categoryId;
}
public void setCategoryId(Long categoryId) {
this.categoryId = categoryId;
}
public String getCategoryPath() {
return this.categoryPath;
}
public void setCategoryPath(String categoryPath) {
this.categoryPath = categoryPath;
}
public String getLink() {
return this.link;
}
public void setLink(String link) {
this.link = link;
}
public Integer getRank() {
return this.rank;
}
public void setRank(Integer rank) {
this.rank = rank;
}
public Boolean getIsHotknowledge() {
return this.isHotknowledge;
}
public void setIsHotknowledge(Boolean isHotknowledge) {
this.isHotknowledge = isHotknowledge;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public Long getCreatorId() {
return this.creatorId;
}
public void setCreatorId(Long creatorId) {
this.creatorId = creatorId;
}
public Long getModifierId() {
return this.modifierId;
}
public void setModifierId(Long modifierId) {
this.modifierId = modifierId;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
}
@Override
public GetKnowledgeResponse getInstance(UnmarshallerContext context) {
return GetKnowledgeResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy