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

import Foundation

/// External version of aligned lyrics v2 schema.
public struct ExternalAlignedLyricsV2Schema: Codable, Equatable {
    public var alignedLyrics: [AlignedLyricSchema]?
    public var alignedWords: [AlignedWordSchema]
    public var isStreamed: Bool

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