Show / Hide Table of Contents

Class PutMessagesDetailsEntry

Object that represents a message to publish into a queue.

Inheritance
object
PutMessagesDetailsEntry
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.QueueService.Models
Assembly: OCI.DotNetSDK.Queue.dll
Syntax
public class PutMessagesDetailsEntry

Properties

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public string Content { get; set; }
Property Value
Type Description
string

The content of the message

Remarks

Required

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public MessageMetadata Metadata { get; set; }
Property Value
Type Description
MessageMetadata
In this article
Back to top