[docs]@dataclasses.dataclass(frozen=True)classNodeHardBreakAttrs(Base):""" Attributes for :class:`NodeHardBreak`. :param text: Optional. The newline character (always ``"\\n"`` when present). :param localId: Optional. A unique identifier for the node. """text:str=OPTlocalId:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classNodeHardBreak(BaseNode):""" A hard line break element equivalent to HTML's ``<br/>`` tag. The hardBreak node is an inline node that inserts a line break within text content. It can appear inside paragraphs and other inline contexts. - https://developer.atlassian.com/cloud/jira/platform/apis/document/nodes/hardBreak/ """type:str=TypeEnum.hardBreak.valueattrs:NodeHardBreakAttrs=OPT