All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyuncs.drcloud.model.v20170824.FindKnowledgeListResponse Maven / Gradle / Ivy

/*
 * 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.drcloud.transform.v20170824.FindKnowledgeListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class FindKnowledgeListResponse extends AcsResponse {

	private Data data;

	public Data getData() {
		return this.data;
	}

	public void setData(Data data) {
		this.data = data;
	}

	public static class Data {

		private Integer pageNo;

		private Integer pageSize;

		private Integer total;

		private List list;

		public Integer getPageNo() {
			return this.pageNo;
		}

		public void setPageNo(Integer pageNo) {
			this.pageNo = pageNo;
		}

		public Integer getPageSize() {
			return this.pageSize;
		}

		public void setPageSize(Integer pageSize) {
			this.pageSize = pageSize;
		}

		public Integer getTotal() {
			return this.total;
		}

		public void setTotal(Integer total) {
			this.total = total;
		}

		public List getList() {
			return this.list;
		}

		public void setList(List list) {
			this.list = list;
		}

		public static class Result {

			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 FindKnowledgeListResponse getInstance(UnmarshallerContext context) {
		return	FindKnowledgeListResponseUnmarshaller.unmarshall(this, context);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy