[docs]@dataclasses.dataclass(frozen=True)classNodeEmbedCardAttrs(Base):""" Attributes for :class:`NodeEmbedCard`. :param url: Required. The URL for the embedded content. :param layout: Required. Layout mode for the embedded card. One of: wide, full-width, center, wrap-right, wrap-left, align-end, align-start. :param width: Optional. Width as a percentage (0-100). :param originalHeight: Optional. Original height of the embedded content. :param originalWidth: Optional. Original width of the embedded content. :param localId: Optional. A unique identifier for the node. """url:str=REQlayout:T.Literal["wide","full-width","center","wrap-right","wrap-left","align-end","align-start",]=REQwidth:float=OPToriginalHeight:float=OPToriginalWidth:float=OPTlocalId:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classNodeEmbedCard(BaseNode):""" An embedded content card node in ADF. The embedCard node displays embedded content from external sources (such as videos, documents, or other rich media) as a block element. Unlike inlineCard and blockCard which show link previews, embedCard renders the actual embedded content within the document. This is a top-level block node that supports various layout options for positioning the embedded content. """type:str=TypeEnum.embedCard.valueattrs:NodeEmbedCardAttrs=REQ