Interface Translation

Translation represents an object that contains a translation choice.

interface Translation {
    model: string;
    score: number;
    status: string;
    translation: string;
}

Properties

model: string

model represents the model that was used for this translation.

score: number

score represents the quality score for this translation.

status: string

status represents the status of using the model for this translation.

translation: string

translation represents the translation.