[docs]@dataclasses.dataclass(frozen=True)classMarkLinkAttrs(Base):""" Attributes for :class:`MarkLink`. :param href: Required. The hyperlink destination URI. :param title: Optional. The hyperlink title (HTML title attribute). :param id: Optional. String identifier. :param collection: Optional. String value for collection. :param occurrenceKey: Optional. String value for occurrence key. """href:str=REQtitle:str=OPTid:str=OPTcollection:str=OPToccurrenceKey:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classMarkLink(BaseMark):""" Sets a hyperlink on text nodes. The link mark applies exclusively to ``text`` nodes and creates a clickable hyperlink. The ``href`` attribute is required and specifies the destination URL. - https://developer.atlassian.com/cloud/jira/platform/apis/document/marks/link/ """type:str=TypeEnum.link.valueattrs:MarkLinkAttrs=REQ