benchling_api_client.models.entry_table module

class EntryTable

Bases: object

Actual tabular data with rows and columns of text on the note.

__init__(column_labels: Union[benchling_api_client.types.Unset, List[Optional[str]]] = attr_dict['_column_labels'].default, name: Union[benchling_api_client.types.Unset, str] = attr_dict['_name'].default, rows: Union[benchling_api_client.types.Unset, List[EntryTableRow]] = attr_dict['_rows'].default) None

Method generated by attrs for class EntryTable.

property additional_keys: List[str]
additional_properties: Dict[str, Any]
property column_labels: List[Optional[str]]

Array of strings, with one item per column. Defaults to null, if the user is using the default, but is set if the user has given a custom name to the column.

classmethod from_dict(src_dict: Dict[str, Any]) benchling_api_client.models.entry_table.T
get(key, default=None) Optional[Any]
property name: str

Name of the table - defaults to e.g. Table1 but can be renamed.

property rows: List[EntryTableRow]

Array of row objects.

to_dict() Dict[str, Any]