Class NSMessageDeliveryStatus
Describes the message status.
Constructors
NSMessageDeliveryStatus()
Initializes a new instance of the NSMessageDeliveryStatus class.
Declaration
NSMessageDeliveryStatus Methods
GetMessagingId()
Declaration
Integer GetMessagingId() Examples
NSMessageDeliveryStatus thing;
Integer messagingId = thing.GetMessagingId();
Returns
| Type | Description |
| Integer | ID to the outgoing message table. |
GetStatus()
Declaration
Integer GetStatus() Examples
NSMessageDeliveryStatus thing;
Integer status = thing.GetStatus();
Returns
| Type | Description |
| Integer | Current message status. |
GetStatusDescription()
Declaration
String GetStatusDescription() Examples
NSMessageDeliveryStatus thing;
String statusDescription = thing.GetStatusDescription();
Returns
| Type | Description |
| String | String describing the current message status. |
SetMessagingId(Integer)
Declaration
Void SetMessagingId(Integer messagingId) Examples
NSMessageDeliveryStatus thing;
Integer messagingId;
thing.SetMessagingId(messagingId);
Parameters
| Type | Name | Description |
| Integer | messagingId | ID to the outgoing message table. |
Returns
| Type | Description |
| Void |
SetStatus(Integer)
Declaration
Void SetStatus(Integer status) Examples
NSMessageDeliveryStatus thing;
Integer status;
thing.SetStatus(status);
Parameters
| Type | Name | Description |
| Integer | status | Current message status. |
Returns
| Type | Description |
| Void |
SetStatusDescription(String)
Declaration
Void SetStatusDescription(String statusDescription) Examples
NSMessageDeliveryStatus thing;
String statusDescription;
thing.SetStatusDescription(statusDescription);
Parameters
| Type | Name | Description |
| String | statusDescription | String describing the current message status. |
Returns
| Type | Description |
| Void |