Class RagStatus
RAG namespace status. How is the indexing going?
Carrier object for RagStatus. Services for the RagStatus Carrier is available from the AI Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.9.0.0")]
public class RagStatus
Constructors
RagStatus()
Default constructor
Declaration
public RagStatus()
See Also
Properties
CompletedAt
UTC timestamp - when content indexing finished.
Declaration
[DataMember]
public virtual DateTime CompletedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
CurrentRunTag
Unique identifier for current indexing job.
Declaration
[DataMember]
public virtual string CurrentRunTag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
IsCancelled
Was the indexing cancelled before completion?
Declaration
[DataMember]
public virtual bool IsCancelled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
IsCompleted
Is the indexing run finished?
Declaration
[DataMember]
public virtual bool IsCompleted { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
LastIndexed
UTC timestamp - when last content was added/updated to index.
Declaration
[DataMember]
public virtual DateTime LastIndexed { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
NamespaceName
Namespace the status belongs to.
Declaration
[DataMember]
public virtual string NamespaceName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
StartedAt
UTC timestamp - when content indexeing started.
Declaration
[DataMember]
public virtual DateTime StartedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
StatusAll
How many documents/chunks are in the index - sum of all the other types
Declaration
[DataMember]
public virtual RagStatusChunks StatusAll { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusDocuments
How many documents/chunks of type Document are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusDocuments { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusFAQ
How many documents/chunks of type FAQ are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusFAQ { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusNone
How many documents/chunks of type None are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusNone { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusProduct
How many documents/chunks of type Product are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusProduct { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusTicket
How many documents/chunks of type Ticket are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusTicket { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusWebpage
How many documents/chunks of type Webpage are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusWebpage { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
StatusWebsite
How many documents/chunks of type Website are in the index
Declaration
[DataMember]
public virtual RagStatusChunks StatusWebsite { get; set; }
Property Value
| Type | Description |
|---|---|
| RagStatusChunks |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |
Overrides
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
| Type | Name | Description |
|---|---|---|
| string | prefix | The line prefix (typically used for indenting) |
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |