[docs]@dataclasses.dataclass(frozen=True)classNodeDateAttrs(Base):""" Attributes for :class:`NodeDate`. :param timestamp: Required. A UNIX timestamp in milliseconds stored as a string. :param localId: Optional. A unique identifier for the node. """timestamp:str=REQlocalId:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classNodeDate(BaseNode):""" Displays a date in the user's locale. The date node is an inline node that shows a date value. The timestamp is stored as a UNIX timestamp in milliseconds (as a string), and the rendering automatically adjusts to display dates according to each user's locale preferences. This node does not support any marks (formatting options). - https://developer.atlassian.com/cloud/jira/platform/apis/document/nodes/date/ """type:str=TypeEnum.date.valueattrs:NodeDateAttrs=REQ