Show / Hide Table of Contents

Class MessageDetails

The content of the message to be published.

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

Properties

Body

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

The body of the message to be published. Avoid entering confidential information.

Remarks

Required

Title

Declaration
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
string

The title of the message to be published. Avoid entering confidential information.

In this article
Back to top