Class DeleteMessagesResultEntry
Represents the result of a DeleteMessages request, whether it was successful or not.
If a message was successfully deleted from the queue, the entry does not contain any fields.
If a message failed to be deleted from the queue, the entry includes the errorCode and errorMessage fields.
Inherited Members
Namespace: Oci.QueueService.Models
Assembly: OCI.DotNetSDK.Queue.dll
Syntax
public class DeleteMessagesResultEntryProperties
ErrorCode
Declaration
[JsonProperty(PropertyName = "errorCode")]
public int? ErrorCode { get; set; }Property Value
| Type | Description | 
|---|---|
| int? | The error code, in case the message was not successfully deleted from the queue. | 
ErrorMessage
Declaration
[JsonProperty(PropertyName = "errorMessage")]
public string ErrorMessage { get; set; }Property Value
| Type | Description | 
|---|---|
| string | A human-readable error message associated with the error code. |