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

import Foundation

public struct AlignedLyricsV2Schema: Codable, Equatable {
    public var alignedLyrics: [AlignedLyricSchema]?
    public var alignedWords: [AlignedWordSchema]
    public var hootCer: Double?
    public var isStreamed: Bool
    public var waveformData: [Double]?

    public init(alignedLyrics: [AlignedLyricSchema]? = nil, alignedWords: [AlignedWordSchema], hootCer: Double? = nil, isStreamed: Bool, waveformData: [Double]? = nil) {
        self.alignedLyrics = alignedLyrics
        self.alignedWords = alignedWords
        self.hootCer = hootCer
        self.isStreamed = isStreamed
        self.waveformData = waveformData
    }
}
