[docs]@dataclasses.dataclass(frozen=True)classNodeInlineCardAttrs(Base):""" Attributes for :class:`NodeInlineCard`. Either ``url`` or ``data`` must be provided, but not both. :param url: The URI/web address for the linked resource. Mutually exclusive with ``data``. :param data: A JSON-LD representation of the link content. Mutually exclusive with ``url``. :param localId: Optional. A unique identifier for the node. """url:str=OPTdata:T.Any=OPTlocalId:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classNodeInlineCard(BaseNode):""" An inline card (smart link) node in ADF. The inlineCard node represents an Atlassian link card with a type icon and content description derived from the link. It displays as an inline element within text content. The card can be defined either by a URL (which Atlassian resolves to display rich content) or by providing JSON-LD data directly. Reference: https://developer.atlassian.com/cloud/jira/platform/apis/document/nodes/inlineCard/ """type:str=TypeEnum.inlineCard.valueattrs:NodeInlineCardAttrs=REQ