com.aliyun.datahub.client.model.GetRecordsResult Maven / Gradle / Ivy
package com.aliyun.datahub.client.model;
import com.aliyun.datahub.client.http.provider.protobuf.BaseProtobufModel;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class GetRecordsResult extends BaseProtobufModel {
/**
* The cursor used for the next read.
*/
@JsonProperty("NextCursor")
private String nextCursor;
/**
* Record count returned.
*/
@JsonProperty("RecordCount")
private int recordCount;
/**
* Indicate the sequence of the first record.
*/
@JsonProperty("StartSeq")
private long startSequence;
/**
* RecordEntity list. You can get detail information by iterator it.
*/
@JsonProperty("Records")
private List records;
public String getNextCursor() {
return nextCursor;
}
public void setNextCursor(String nextCursor) {
this.nextCursor = nextCursor;
}
public int getRecordCount() {
return recordCount;
}
public void setRecordCount(int recordCount) {
this.recordCount = recordCount;
}
public long getStartSequence() {
return startSequence;
}
public void setStartSequence(long startSequence) {
this.startSequence = startSequence;
}
public List getRecords() {
return records;
}
public void setRecords(List records) {
this.records = records;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy