TableOutput
classView source ↗
class TableOutput(table: str | List[str])
Bases: Output
Categories: destination
Class for managing the configuration of table-based data outputs.
Attributes: table (str | List[str]): The table(s) to create. If multiple tables are provided, they must be provided as a list.
Methods: to_dict(): Converts the TableOutput object to a dictionary
Initializes the TableOutput with the given table(s) to create.
Parameters
parameter
tablestr | List[str]The table(s) to create. If multiple tables are provided, they must be provided as a list.
Properties
property
tablestr | List[str]The table(s) to create. If multiple tables are provided, they must be provided as a list.
Methods
method
View source ↗to_dictdef to_dict() -> dict
Converts the TableOutput object to a dictionary with all the relevant information.