Skip to content

Commit 73a4326

Browse files
igorbeslicivicac
authored andcommitted
1289 components - CSV - update action builder
1 parent e63957b commit 73a4326

File tree

1 file changed

+6
-4
lines changed
  • server/libs/modules/components/csv-file/src/main/java/com/bytechef/component/csv/file/action

1 file changed

+6
-4
lines changed

server/libs/modules/components/csv-file/src/main/java/com/bytechef/component/csv/file/action/CsvFileWriteAction.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@
5050
public class CsvFileWriteAction {
5151

5252
public static final ModifiableActionDefinition ACTION_DEFINITION = action("write")
53-
.title("Write to File")
54-
.description("Writes the data to a csv file.")
53+
.title("Write to CSV File")
54+
.description(
55+
"Writes the data records into a CSV file. Record values are assembled into line and separated with arbitrary character, mostly comma. CSV may or may not define header line.")
5556
.properties(
5657
array(ROWS)
57-
.label("Rows")
58-
.description("The array of objects to write to the file.")
58+
.label("Line Structure Definition")
59+
.description(
60+
"Define a sequence of fields that will form a line. The values for these fields will consistently repeat in the same order defined here across all lines.")
5961
.required(true)
6062
.items(
6163
object()

0 commit comments

Comments
 (0)