Enum AuraTextMessageStatus
Defines the possible statuses of a text message within an Aura network or chat context. This enum is used to indicate the current processing state of a message, from reception to completion of processing.
Namespace: EyeAuras.Shared.Triggers
Assembly: EyeAuras.Shared.dll
Syntax
public enum AuraTextMessageStatus
Fields
Name | Description |
---|---|
Error | Indicates that something bad happened when attempted to send/receive message |
None | Indicates that a message does not have a specific status |
Processed | Indicates that a message has been fully processed. This state signifies that all necessary analysis or processing on the message is complete. |
Processing | Indicates that a message is currently being processed. This state is active when a message is under analysis or undergoing some form of processing. |
Received | Indicates that a message has been received but not yet processed. This is the initial state of a message upon arrival. |
Sent | Indicates that a message has been sent. This is the initial state of a message upon sending the message. |