com.aliyuncs.drcloud.model.v20170824.FindKnowledgeExtendListResponse 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 java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.drcloud.transform.v20170824.FindKnowledgeExtendListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class FindKnowledgeExtendListResponse extends AcsResponse {
private List list;
public List getList() {
return this.list;
}
public void setList(List list) {
this.list = list;
}
public static class KnowledgeExtend {
private Long id;
private String knowledgeId;
private String name;
private Integer rank;
private Long creatorId;
private Long modifierId;
private String gmtCreate;
private String gmtModified;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
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 Integer getRank() {
return this.rank;
}
public void setRank(Integer rank) {
this.rank = rank;
}
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 FindKnowledgeExtendListResponse getInstance(UnmarshallerContext context) {
return FindKnowledgeExtendListResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy