Show / Hide Table of Contents

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.
Inheritance
object
RagStatus
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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
IAIAgent

Properties

CompletedAt

UTC timestamp - when content indexing finished.

Declaration
[DataMember]
public virtual DateTime CompletedAt { get; set; }
Property Value
Type Description
DateTime
See Also
IAIAgent

CurrentRunTag

Unique identifier for current indexing job.

Declaration
[DataMember]
public virtual string CurrentRunTag { get; set; }
Property Value
Type Description
string
See Also
IAIAgent

IsCancelled

Was the indexing cancelled before completion?

Declaration
[DataMember]
public virtual bool IsCancelled { get; set; }
Property Value
Type Description
bool
See Also
IAIAgent

IsCompleted

Is the indexing run finished?

Declaration
[DataMember]
public virtual bool IsCompleted { get; set; }
Property Value
Type Description
bool
See Also
IAIAgent

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
IAIAgent

NamespaceName

Namespace the status belongs to.

Declaration
[DataMember]
public virtual string NamespaceName { get; set; }
Property Value
Type Description
string
See Also
IAIAgent

StartedAt

UTC timestamp - when content indexeing started.

Declaration
[DataMember]
public virtual DateTime StartedAt { get; set; }
Property Value
Type Description
DateTime
See Also
IAIAgent

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
IAIAgent

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
IAIAgent

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
IAIAgent

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
IAIAgent

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
IAIAgent

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
IAIAgent

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
IAIAgent

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
IAIAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

Overrides
object.ToString()
See Also
IAIAgent

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.

See Also
IAIAgent

See Also

IAIAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top