export interface Translation {
    /**
     * The detected source language.
     * @type {string}
     */
    detected_source_language: string;
    /**
     * The translated text.
     * @type {string}
     */
    text: string;
}
