Class TranslationQualityEstimation
Model for persisting TQE(Translation Quality Estimation) information
Inherited Members
Namespace: Sdl.Core.Bcm.BcmModel
Assembly: Sdl.Core.Bcm.BcmModel.dll
Syntax
[DataContract]
public class TranslationQualityEstimation
Constructors
TranslationQualityEstimation()
Declaration
public TranslationQualityEstimation()
Properties
Description
Stores a description which is generated by the system generating the TQE data
Declaration
[DataMember(Name = "description", IsRequired = false)]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EvaluatedAt
Stores the UTC date and time when the evaluation took place
Declaration
[DataMember(Name = "evaluatedAt", IsRequired = true)]
[JsonConverter(typeof(DateTimeConverter))]
public DateTime EvaluatedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Model
Stores the model used for the estimation, - e.g. daVinci, bedrock
Declaration
[DataMember(Name = "model", IsRequired = true)]
public string Model { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Score
Stores the score of this estimation (0-100)
Declaration
[DataMember(Name = "score", IsRequired = true)]
public int Score { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
System
Stores the system which originated this data - e.g. lw-evolve
Declaration
[DataMember(Name = "system", IsRequired = true)]
public string System { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
Equals(object)
Equals override
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj |
Returns
| Type | Description |
|---|---|
| bool |
Overrides
GetHashCode()
GetHashCodd override
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int |