Show / Hide Table of Contents

Class Paragraph

The paragraph of the generated message that contains a citation.

Inheritance
object
Paragraph
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 Paragraph

Properties

End

Declaration
[Required(ErrorMessage = "End is required.")]
[JsonProperty(PropertyName = "end")]
public int? End { get; set; }
Property Value
Type Description
int?

Where the text with a citation ends in the generated message.

Remarks

Required

Start

Declaration
[Required(ErrorMessage = "Start is required.")]
[JsonProperty(PropertyName = "start")]
public int? Start { get; set; }
Property Value
Type Description
int?

Where the text with a citation starts in the generated message.

Remarks

Required

Text

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

The part of the generated message that contains a citation.

Remarks

Required

In this article
Back to top