//
//  Translation.swift
//
//
//  Created by Joshua Galvan on 6/12/23.
//


import Foundation

/**
 Audio
 Learn how to turn audio into text.

 Related guide: https://platform.openai.com/docs/guides/speech-to-text
 */

public struct Translation {
    public let text: String
}

extension Translation: Codable {}
