in paimon-web-api/src/main/java/org/apache/paimon/web/api/table/AlterTableEntity.java [38:53]
public AlterTableEntity(
String columnName,
DataType type,
String comment,
String newColumn,
boolean isNullable,
SchemaChange.Move move,
OperatorKind kind) {
this.columnName = columnName;
this.type = type;
this.comment = comment;
this.newColumn = newColumn;
this.isNullable = isNullable;
this.move = move;
this.kind = kind;
}