com.aliyun.datahub.model.GetTopicResult Maven / Gradle / Ivy
package com.aliyun.datahub.model;
import com.aliyun.datahub.common.data.RecordSchema;
import com.aliyun.datahub.common.data.RecordType;
public class GetTopicResult {
private String projectName;
private String topicName;
private int shardCount;
private int lifeCycle;
private RecordType recordType;
private RecordSchema recordSchema;
private String comment;
private long createTime;
private long lastModifyTime;
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getTopicName() {
return topicName;
}
public void setTopicName(String topicName) {
this.topicName = topicName;
}
public int getShardCount() {
return shardCount;
}
public void setShardCount(int shardCount) {
this.shardCount = shardCount;
}
public int getLifeCycle() {
return lifeCycle;
}
public void setLifeCycle(int lifeCycle) {
this.lifeCycle = lifeCycle;
}
public RecordType getRecordType() {
return recordType;
}
public void setRecordType(RecordType recordType) {
this.recordType = recordType;
}
public RecordSchema getRecordSchema() {
return recordSchema;
}
public void setRecordSchema(RecordSchema schema) {
recordSchema = schema;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public long getCreateTime() {
return createTime;
}
public void setCreateTime(long createTime) {
this.createTime = createTime;
}
public long getLastModifyTime() {
return lastModifyTime;
}
public void setLastModifyTime(long lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy