[docs]classAnnotationType:""" Valid values for the ``annotationType`` attribute. """inlineComment="inlineComment"
[docs]@dataclasses.dataclass(frozen=True)classMarkAnnotationAttrs(Base):""" Attributes for :class:`MarkAnnotation`. :param id: Required. Unique identifier for the annotation. :param annotationType: Required. The type of annotation, currently only ``"inlineComment"`` is supported. """id:str=REQannotationType:str=REQ
[docs]@dataclasses.dataclass(frozen=True)classMarkAnnotation(BaseMark):""" Marks text with an inline annotation (comment). The annotation mark is used to associate inline comments with specific text ranges in Confluence pages. When users highlight text and add a comment, the highlighted text is wrapped with this mark containing a unique ``id`` that links to the comment. """type:str=TypeEnum.annotation.valueattrs:MarkAnnotationAttrs=REQ