in paimon-web-api/src/main/java/org/apache/paimon/web/api/table/SnapshotTableMetadata.java [40:63]
public SnapshotTableMetadata(
Long snapshotId,
String snapshotPath,
Long schemaId,
String commitUser,
Long commitIdentifier,
String commitKind,
LocalDateTime commitTime,
Long totalRecordCount,
Long deltaRecordCount,
Long changelogRecordCount,
Long watermark) {
this.snapshotId = snapshotId;
this.snapshotPath = snapshotPath;
this.schemaId = schemaId;
this.commitUser = commitUser;
this.commitIdentifier = commitIdentifier;
this.commitKind = commitKind;
this.commitTime = commitTime;
this.totalRecordCount = totalRecordCount;
this.deltaRecordCount = deltaRecordCount;
this.changelogRecordCount = changelogRecordCount;
this.watermark = watermark;
}