[docs]@dataclasses.dataclass(frozen=True)classNodeStatusAttrs(Base):""" Attributes for :class:`NodeStatus`. :param text: Required. The textual representation of the status. :param color: Required. Visual indicator color. One of: neutral, purple, blue, red, yellow, green. :param localId: Optional. A unique identifier for the node. :param style: Optional. Style information for the status. """text:str=REQcolor:T.Literal["neutral","purple","blue","red","yellow","green"]=REQlocalId:str=OPTstyle:str=OPT
[docs]@dataclasses.dataclass(frozen=True)classNodeStatus(BaseNode):""" Represents the state of work within documents. The status node is an inline node that displays a status lozenge with text and a background color. It is commonly used to indicate workflow states like "In Progress", "Done", "To Do", etc. This node does not support any marks (formatting options). - https://developer.atlassian.com/cloud/jira/platform/apis/document/nodes/status/ """type:str=TypeEnum.status.valueattrs:NodeStatusAttrs=REQ