Source code for atlas_doc_parser.nodes.node_table_row
# -*- coding: utf-8 -*-importtypingasTimportdataclassesfromfunc_args.apiimportREQ,OPTfrom..type_enumimportTypeEnumfrom..mark_or_nodeimportBase,BaseNodeifT.TYPE_CHECKING:# pragma: no coverfrom.node_table_cellimportNodeTableCellfrom.node_table_headerimportNodeTableHeader
[docs]@dataclasses.dataclass(frozen=True)classNodeTableRowAttrs(Base):""" Attributes for :class:`NodeTableRow`. :param localId: Optional. A unique identifier for the node. """localId:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classNodeTableRow(BaseNode):""" A row within a table. The tableRow node defines rows within a table and serves as a container for table heading (tableHeader) and table cell (tableCell) nodes. Note: Tables are only supported on web and desktop; mobile rendering support for tables is not available. - https://developer.atlassian.com/cloud/jira/platform/apis/document/nodes/table_row/ """type:str=TypeEnum.tableRow.valueattrs:NodeTableRowAttrs=OPTcontent:list[T.Union["NodeTableCell","NodeTableHeader",]]=REQ