// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct WordOutputSchema: Codable, Equatable {
    public var endS: Double
    public var startS: Double
    public var text: String

    public init(endS: Double, startS: Double, text: String) {
        self.endS = endS
        self.startS = startS
        self.text = text
    }
}
