Show / Hide Table of Contents

Class MessageContent

The content of the message.

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

Properties

Citations

Declaration
[JsonProperty(PropertyName = "citations")]
public List<Citation> Citations { get; set; }
Property Value
Type Description
List<Citation>

Citations to data sources used for generating an agent's message.

ParagraphCitations

Declaration
[JsonProperty(PropertyName = "paragraphCitations")]
public List<ParagraphCitation> ParagraphCitations { get; set; }
Property Value
Type Description
List<ParagraphCitation>

A list of citations used to generate the paragraphs of the agent message.

Text

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

The content of the message.

Remarks

Required

In this article
Back to top