Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, guys!
I have:
@Option
@Documentation("Incoming metadata.")
@Structure(type = Structure.Type.IN)
private List incomingSchema;
@Documentation("Table.")
List<Column> columnList=new ArrayList<>();
public static class Column implements Serializable {
@Documentation("Column name")
String label;
}
Now I want put column names from inputSchema to columnList. As result I want something like this:
Hi, answered on another topic.