+Class VectorizationProcessingResult +
+ +- Namespace
- FoundationaLLM.Vectorization.Models
- Assembly
- FoundationaLLM.Vectorization.dll
Represents the result of processing a vectorization request.
+public record VectorizationProcessingResult : IEquatable<VectorizationProcessingResult>
+ -
+
- Inheritance +
-
+
+ VectorizationProcessingResult+
+
-
+
- Implements +
- + + +
-
+
- Inherited Members +
-
+
+
+
+ + object.GetType() ++ + + +
-
+
- Extension Methods +
- + +
Constructors +
+ + + + ++ VectorizationProcessingResult(bool, Guid?, string?) + +
+ +Represents the result of processing a vectorization request.
+public VectorizationProcessingResult(bool IsSuccess, Guid? OperationId, string? ErrorMessage)
+ Parameters
+-
+
IsSuccess
bool
+ Indicates whether the processing was completed successfully.
+
+ OperationId
Guid?
+ The identifier of the vectorization operation. Can be used to request the status of the operation.
+
+ ErrorMessage
string
+ When IsSuccess is false, contains an error message with details.
+
+
Properties +
+ + + + ++ ErrorMessage + +
+ +When IsSuccess is false, contains an error message with details.
+public string? ErrorMessage { get; init; }
+ Property Value
+-
+
- string + +
+ IsSuccess + +
+ +Indicates whether the processing was completed successfully.
+public bool IsSuccess { get; init; }
+ Property Value
+-
+
- bool + +
+ OperationId + +
+ +The identifier of the vectorization operation. Can be used to request the status of the operation.
+public Guid? OperationId { get; init; }
+ Property Value
+-
+
- Guid? + +