New NotionTableRowBlock - fasteiner/Notion GitHub Wiki
Creates a new Notion table row.
New-NotionTableRowBlock [[-CellData] <Object[]>] [<CommonParameters>]
The New-NotionTableRowBlock function creates a new Notion table row with specified cell data.
$row = New-NotionTableRowBlock -CellData @("Cell1", "Cell2", "Cell3")
The cell data for the table row. This should be an array of objects.
Type: Object[]
Parameter Sets: (All)
Aliases: data
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
This function requires the [notion_table_row_block] class to be defined.